/* =============================================
   El-Reda Steel - Main Stylesheet
   Premium Industrial Design
   ============================================= */

/* ========== CSS Variables ========== */
:root {
    /* Primary Colors - Premium Gold Theme */
    --primary-color: #D4AF37;
    --primary-dark: #B8942E;
    --primary-light: #E8C84A;
    --primary-gradient: linear-gradient(135deg, #D4AF37 0%, #F5D76E 50%, #B8942E 100%);
    
    /* Secondary Colors - Dark Black Theme */
    --secondary-color: #0A0A0A;
    --secondary-light: #1A1A1A;
    
    /* Accent Colors */
    --accent-gold: #D4AF37;
    --accent-steel: #71797E;
    
    /* Status Colors */
    --success-color: #10B981;
    --danger-color: #EF4444;
    --warning-color: #F59E0B;
    
    /* Neutrals */
    --white: #FFFFFF;
    --black: #000000;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    
    /* Brand Colors - Updated to Gold Tones */
    --ezz-color: #D4AF37;
    --gioshy-color: #F5D76E;
    --masryeen-color: #B8942E;
    --ashry-color: #C9A227;
    
    /* Typography */
    --font-ar: 'Cairo', sans-serif;
    --font-en: 'Montserrat', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Z-indexes */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal: 400;
    --z-tooltip: 500;
}

/* ========== Base Styles ========== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-ar);
    background-color: var(--secondary-color);
    color: var(--gray-200);
    line-height: 1.7;
    overflow-x: hidden;
}

body[dir="ltr"] {
    font-family: var(--font-en);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ========== Container ========== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== Preloader ========== */
.preloader {
    display: none !important;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader {
    text-align: center;
}

.steel-bars {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 20px;
}

.steel-bars span {
    width: 8px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: var(--radius-full);
    animation: steelBounce 1.2s ease-in-out infinite;
}

.steel-bars span:nth-child(1) { animation-delay: 0s; }
.steel-bars span:nth-child(2) { animation-delay: 0.1s; }
.steel-bars span:nth-child(3) { animation-delay: 0.2s; }
.steel-bars span:nth-child(4) { animation-delay: 0.3s; }

@keyframes steelBounce {
    0%, 100% { transform: scaleY(0.5); }
    50% { transform: scaleY(1); }
}

.loader-text {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

/* ========== Top Bar ========== */
.top-bar {
    background: var(--secondary-color);
    padding: 10px 0;
    font-size: 0.875rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 25px;
}

.contact-info a {
    color: var(--gray-300);
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info a:hover {
    color: var(--primary-light);
}

.contact-info i {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.social-lang {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
    background: var(--secondary-light);
    color: var(--gray-300);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.lang-switcher {
    display: flex;
    gap: 5px;
    background: var(--secondary-light);
    padding: 4px;
    border-radius: var(--radius);
}

/* Temporarily hide language switcher */
.lang-switcher {
    display: none !important;
}

.lang-btn {
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    color: var(--gray-400);
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition);
}

.lang-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

.lang-btn:hover:not(.active) {
    color: var(--white);
}

/* ========== Header ========== */
.header {
    background: var(--secondary-light);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
    transition: var(--transition);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.header.scrolled {
    box-shadow: var(--shadow-lg);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: transparent;
    border-radius: var(--radius-md);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 1.5rem;
    overflow: hidden;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-ar {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.2;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.logo-en {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-color);
    font-family: var(--font-en);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Navigation */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link {
    padding: 12px 18px;
    color: var(--gray-300);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    background: rgba(212, 175, 55, 0.15);
}

.nav-link i {
    font-size: 0.7rem;
    transition: var(--transition);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 290px;
    max-height: 70vh;
    overflow-y: auto;
    background: var(--secondary-light);
    border-radius: 14px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.45);
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: var(--z-dropdown);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.dropdown-menu a {
    display: block;
    padding: 10px 12px;
    color: var(--gray-300);
    font-weight: 500;
    border-radius: 10px;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background: rgba(212, 175, 55, 0.15);
    color: var(--primary-color);
    padding-right: 20px;
}

.dropdown-category {
    display: block;
    padding: 10px 15px 6px;
    color: var(--primary-color);
    font-weight: 800;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.18);
    margin: 4px 0 6px;
}

.dropdown-submenu {
    list-style: none;
}

.submenu-toggle {
    width: 100%;
    border: 0;
    background: transparent;
    color: var(--primary-color);
    font-weight: 800;
    text-align: right;
    padding: 12px 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.submenu-toggle i {
    font-size: 0.75rem;
    transition: var(--transition);
}

.submenu-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
}

.dropdown-submenu.open .submenu-menu {
    max-height: 900px;
}

.dropdown-submenu.open .submenu-toggle i {
    transform: rotate(180deg);
}

.submenu-menu a {
    margin: 3px 0;
    font-size: 0.92rem;
    padding-right: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.submenu-logo {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    object-fit: contain;
    background: #fff;
    border: 1px solid rgba(212, 175, 55, 0.22);
    padding: 2px;
    flex-shrink: 0;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: var(--radius-full);
    transition: var(--transition);
}

/* ========== Hero Section ========== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1920&q=80') center/cover no-repeat;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.97) 0%, rgba(26, 26, 26, 0.9) 50%, rgba(212, 175, 55, 0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.hero-title {
    color: var(--white);
    margin-bottom: 20px;
}

.hero-title > span:first-child {
    display: block;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 50%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.hero-subtitle {
    display: block;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--gray-300);
    margin-top: 10px;
}

.hero-desc {
    color: var(--gray-300);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.hero-scroll a {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* ========== Buttons ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--secondary-color);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--secondary-color);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.btn-light {
    background: var(--white);
    color: var(--secondary-color);
}

.btn-light:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.1rem;
}

/* ========== Section Styles ========== */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.15);
    color: var(--primary-color);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-desc {
    color: var(--gray-400);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ========== Steel Prices Section ========== */
.steel-prices {
    background: linear-gradient(180deg, var(--secondary-light) 0%, var(--secondary-color) 100%);
}

.last-update {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-top: 15px;
}

.last-update i {
    color: var(--primary-color);
}

.prices-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.price-card {
    background: var(--secondary-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(212, 175, 55, 0.5);
}

.price-card-header {
    padding: 20px 25px;
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.price-card-header.ezz {
    background: var(--primary-gradient);
}

.price-card-header.gioshy {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

.price-card-header.masryeen {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.price-card-header.ashry {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
}

.price-card-header h3 {
    order: 1;
    color: var(--secondary-color);
}

.brand-logo {
    order: 2;
    width: 118px;
    height: 52px;
    background: #FFFFFF !important;
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
    border-radius: 8px !important;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04) !important;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2px 3px;
    overflow: hidden;
    transition: var(--transition);
}

.brand-logo img {
    width: 118%;
    height: 118%;
    object-fit: contain;
}

.price-card-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.price-card-body {
    padding: 25px;
    text-align: center;
}

.price-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.price-value .currency {
    font-size: 1rem;
    color: var(--gray-400);
}

.price-value .amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.price-value .unit {
    font-size: 1rem;
    color: var(--gray-400);
}

.price-change {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 15px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
}

.price-change.up {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
}

.price-change.down {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger-color);
}

.price-change.stable {
    background: rgba(107, 114, 128, 0.1);
    color: var(--gray-500);
}

.price-card-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gray-300);
    font-weight: 600;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
}

.price-card-link:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.prices-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
    padding: 20px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-lg);
    color: var(--gray-300);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.prices-note i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

/* ========== Features Section ========== */
.features {
    background: var(--secondary-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 40px 25px;
    background: var(--secondary-light);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.feature-card:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--primary-gradient);
    border-radius: var(--radius-lg);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--secondary-color);
    font-size: 2rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--gray-400);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ========== Products Section ========== */
.products-section {
    background: linear-gradient(180deg, var(--secondary-light) 0%, var(--secondary-color) 100%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    background: var(--secondary-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(212, 175, 55, 0.4);
}

.product-image {
    position: relative;
    height: 220px;
    background-size: cover;
    background-position: center;
    display: grid;
    place-items: center;
    padding: 48px 18px 24px;
}

.home-product-logo {
    width: min(92%, 260px);
    max-height: 132px;
    object-fit: contain;
    filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.35));
    z-index: 2;
}

.product-image.ezz-bg {
    background: var(--primary-gradient);
}

.product-image.gioshy-bg {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

.product-image.masryeen-bg {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.product-image.ashry-bg {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-dark) 100%);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
    z-index: 3;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-link {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    transform: scale(0.5);
    transition: var(--transition);
}

.product-card:hover .product-link {
    transform: scale(1);
}

.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 7px 14px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid var(--primary-color);
    z-index: 5;
    line-height: 1.2;
}

.product-badge.new {
    background: var(--success-color);
    border: none;
    color: var(--white);
}

.product-content {
    padding: 25px;
}

.product-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.product-content p {
    color: var(--gray-400);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.product-specs {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: var(--gray-400);
}

.product-specs span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-specs i {
    color: var(--primary-color);
}

.products-cta {
    text-align: center;
    margin-top: 50px;
}

/* ========== Stats Section ========== */
.stats-section {
    position: relative;
    background: url('https://images.unsplash.com/photo-1587293852726-70cdb56c2866?w=1920&q=80') center/cover fixed;
    padding: 80px 0;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.97) 0%, rgba(212, 175, 55, 0.6) 100%);
}

.stats-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-full);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.75rem;
    border: 2px solid rgba(212, 175, 55, 0.5);
    color: var(--primary-color);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* ========== CTA Section ========== */
.cta-section {
    background: var(--primary-gradient);
    padding: 80px 0;
}

.cta-content {
    text-align: center;
    color: var(--secondary-color);
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.cta-content p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 30px;
    color: var(--secondary-light);
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* ========== Footer ========== */
.footer {
    background: var(--secondary-color);
    color: var(--gray-300);
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    width: 50px;
    height: 50px;
}

.footer-logo .logo-ar {
    color: var(--white);
}

.footer-col p {
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--secondary-light);
    border-radius: var(--radius);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--gray-400);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: var(--radius-full);
}

[dir="ltr"] .footer-col h4::after {
    right: auto;
    left: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray-400);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '←';
    color: var(--primary-color);
    transition: var(--transition);
}

[dir="ltr"] .footer-links a::before {
    content: '→';
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-right: 10px;
}

[dir="ltr"] .footer-links a:hover {
    padding-right: 0;
    padding-left: 10px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-contact i {
    color: var(--primary-color);
    font-size: 1rem;
    margin-top: 5px;
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-contact a[href^="tel:"] {
    direction: ltr;
    unicode-bidi: isolate;
    display: inline-block;
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 25px 0;
    text-align: center;
}

.footer-bottom p {
    color: var(--gray-500);
    font-size: 0.9rem;
}

/* ========== Back to Top ========== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    color: var(--secondary-color);
    border-radius: var(--radius-full);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: var(--z-fixed);
}

[dir="ltr"] .back-to-top {
    left: auto;
    right: 30px;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-light);
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
}

/* ========== WhatsApp Float ========== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: var(--z-fixed);
    animation: whatsappPulse 2s infinite;
}

[dir="ltr"] .whatsapp-float {
    left: auto;
    right: 30px;
}

@keyframes whatsappPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
}

/* ========== Fixed Contact Widget ========== */
.contact-widget {
    position: fixed;
    left: 22px;
    bottom: 22px;
    z-index: calc(var(--z-fixed) + 2);
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.contact-widget-btn {
    width: 58px;
    min-height: 58px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--ink-800), var(--ink-900));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.32);
    cursor: pointer;
    transition: width 0.25s ease, transform 0.25s ease, background 0.25s ease;
    border: 1px solid rgba(212, 175, 55, 0.24);
    overflow: hidden;
    font-family: inherit;
    font-weight: 800;
    text-decoration: none;
}

.contact-widget-btn i {
    font-size: 1.35rem;
    flex: 0 0 auto;
}

.contact-widget-btn span {
    max-width: 0;
    opacity: 0;
    white-space: nowrap;
    overflow: hidden;
    transition: max-width 0.25s ease, opacity 0.2s ease;
}

.contact-widget-btn:hover {
    width: 132px;
    transform: translateY(-2px);
}

.contact-widget-btn:hover span {
    max-width: 78px;
    opacity: 1;
}

.contact-widget-btn.whatsapp {
    background: linear-gradient(180deg, #2BE477, #128C7E);
    border-color: rgba(37, 211, 102, 0.4);
}

.contact-widget-btn.call {
    background: linear-gradient(180deg, var(--gold-200), var(--gold-500));
    color: #1A1206;
}

.contact-widget-panel {
    position: absolute;
    left: 72px;
    bottom: 0;
    width: min(330px, calc(100vw - 108px));
    background: linear-gradient(180deg, var(--ink-800), var(--ink-900));
    color: #F2F4F8;
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.46);
}

.contact-widget-panel[hidden] {
    display: none;
}

.contact-widget-panel h3 {
    margin: 0 0 8px;
    font-size: 1.15rem;
    color: var(--gold-200);
}

.contact-widget-panel p {
    margin: 0 0 14px;
    color: #A9B0BB;
    line-height: 1.75;
}

.contact-panel-close {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
}

.contact-panel-actions {
    display: grid;
    gap: 10px;
}

.callback-form {
    display: grid;
    gap: 10px;
}

.callback-form label {
    display: grid;
    gap: 6px;
    color: #DDE1E8;
    font-weight: 700;
}

.callback-form input,
.callback-form select,
.callback-form textarea {
    width: 100%;
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    padding: 10px 12px;
    font-family: inherit;
}

.callback-form select option {
    color: #111;
}

/* ========== Page Header ========== */
.page-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    padding: 120px 0 60px;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    color: var(--gray-400);
}

.breadcrumb a {
    color: var(--primary-color);
}

.breadcrumb span {
    color: var(--gray-500);
}

/* ========== Forms ========== */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--gray-300);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--secondary-light);
    color: var(--gray-200);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* ========== Utilities ========== */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.hidden { display: none !important; }
.visible { display: block !important; }

/* ========== Mobile Top Bar Slogan ========== */
.top-bar-mobile-slogan {
    display: none;
    text-align: center;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    padding: 2px 0;
}

/* ========== Company Intro Section ========== */
.company-intro {
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    padding: 80px 0;
}

.intro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.company-intro .section-badge {
    display: inline-flex;
    margin: 0 auto 14px;
}

.company-intro .section-title {
    display: block;
    text-align: center;
    margin: 0 auto 22px;
}

.intro-text {
    color: var(--gray-300);
    font-size: 1.1rem;
    line-height: 2;
    margin-bottom: 30px;
}

/* ========== Factories Section ========== */
.factories-section {
    background: var(--secondary-color);
    padding: 80px 0;
}

.factories-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.factory-chip {
    min-width: 0;
    min-height: 82px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    color: var(--gray-200);
    font-weight: 700;
    text-align: center;
    transition: var(--transition);
}

.factory-chip img {
    width: 96px;
    height: 46px;
    object-fit: contain;
    padding: 4px 6px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.factory-chip span {
    line-height: 1.45;
    flex: 1;
    text-align: right;
}

.factory-chip:hover {
    transform: translateY(-2px);
    border-color: var(--primary-color);
    background: rgba(212, 175, 55, 0.1);
}

/* ========== Stat Suffix ========== */
.stat-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: -5px;
}

/* ========== Branches Section ========== */
.branches-section {
    background: linear-gradient(180deg, var(--secondary-light) 0%, var(--secondary-color) 100%);
    padding: 80px 0;
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.branch-card {
    background: var(--secondary-light);
    border-radius: var(--radius-lg);
    padding: 30px 25px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: var(--transition);
}

.branch-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.branch-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.branch-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    line-height: 1.5;
}

.branch-card p {
    color: var(--gray-400);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ========== Footer Developer Credit ========== */
.developer-credit {
    color: var(--gray-600);
    font-size: 0.8rem;
    margin-top: 8px;
}

.developer-credit a {
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.developer-credit a:hover {
    color: var(--primary-light);
}

/* ========== Mobile Menu Extras ========== */
.mobile-menu-extras {
    display: none;
}

.mobile-menu-divider {
    height: 1px;
    background: rgba(212, 175, 55, 0.2);
    margin: 15px 0;
}

.mobile-menu-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 10px;
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    min-height: 48px;
}

.mobile-menu-btn.call-btn {
    background: rgba(212, 175, 55, 0.15);
    color: var(--primary-color);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.mobile-menu-btn.whatsapp-btn {
    background: rgba(37, 211, 102, 0.15);
    color: #25D366;
    border: 1px solid rgba(37, 211, 102, 0.3);
}

.mobile-menu-btn.email-btn {
    background: rgba(59, 130, 246, 0.15);
    color: #60A5FA;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.mobile-menu-btn i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.mobile-menu-btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.1);
}

.mobile-menu-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 15px 10px;
}

.mobile-menu-social a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: rgba(212, 175, 55, 0.15);
    color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    transition: var(--transition);
}

.mobile-menu-social a:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: scale(1.05);
}

.mobile-menu-lang {
    display: flex;
    justify-content: center;
    padding: 5px 10px 15px;
}

/* ========== About Page Full Description ========== */
.about-full-description {
    padding: 60px 0;
    background: var(--white);
}

.about-full-description .about-paragraphs {
    max-width: 800px;
    margin: 0 auto;
}

.about-full-description .about-paragraphs p {
    color: var(--gray-600);
    font-size: 1.05rem;
    line-height: 2;
    margin-bottom: 24px;
    text-align: justify;
}

.about-full-description .about-paragraphs p:last-child {
    margin-bottom: 0;
}

/* =================================================================
   ===============  PREMIUM REFRESH LAYER (v2)  ====================
   Elevates the design from generic to a world-class, industrial,
   luxury steel brand. Keeps the gold + black identity intact while
   adding depth, lighting, refined typography and micro-interactions.
   ================================================================= */

:root {
    /* Refined gold scale */
    --gold-50:  #FBF3D6;
    --gold-100: #F5E2A6;
    --gold-200: #ECCB69;
    --gold-300: #DDB23C;
    --gold-400: #D4AF37;
    --gold-500: #C19A2E;
    --gold-600: #A07E22;
    --gold-700: #7C611A;

    /* Refined dark / surface scale (cool charcoal, not flat black) */
    --ink-950: #060607;
    --ink-900: #0B0C0E;
    --ink-850: #101216;
    --ink-800: #15181D;
    --ink-750: #1B1F26;
    --ink-700: #232831;
    --ink-600: #2E3540;
    --hairline: rgba(212, 175, 55, 0.16);
    --hairline-strong: rgba(212, 175, 55, 0.34);

    /* Sheen used for top edge of cards (glassy highlight) */
    --edge-sheen: linear-gradient(90deg, transparent, rgba(245,226,166,0.55), transparent);

    /* Layered shadows for real depth */
    --elev-1: 0 1px 0 rgba(255,255,255,0.04) inset, 0 8px 20px -8px rgba(0,0,0,0.6);
    --elev-2: 0 1px 0 rgba(255,255,255,0.05) inset, 0 18px 40px -16px rgba(0,0,0,0.7);
    --elev-3: 0 1px 0 rgba(255,255,255,0.06) inset, 0 30px 60px -22px rgba(0,0,0,0.8);
    --glow-gold: 0 10px 40px -12px rgba(212,175,55,0.45);

    /* Premium easing */
    --ease-out-soft: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---------- Global typographic + surface polish ---------- */
body {
    background-color: var(--ink-950);
    color: #C7CCD4;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    letter-spacing: 0.1px;
    /* subtle film-grain + radial light so the page never reads flat */
    background-image:
        radial-gradient(1200px 600px at 85% -10%, rgba(212,175,55,0.10), transparent 60%),
        radial-gradient(900px 500px at -10% 20%, rgba(212,175,55,0.05), transparent 55%);
    background-attachment: fixed;
}

::selection {
    background: rgba(212,175,55,0.85);
    color: #0A0A0A;
}

/* Thin gold scrollbar */
* { scrollbar-width: thin; scrollbar-color: var(--gold-600) var(--ink-850); }
*::-webkit-scrollbar { width: 10px; height: 10px; }
*::-webkit-scrollbar-track { background: var(--ink-850); }
*::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--gold-400), var(--gold-600));
    border-radius: 20px;
    border: 2px solid var(--ink-850);
}

/* Refined section rhythm */
section { padding: 120px 0; position: relative; }

/* ---------- Section headings: real hierarchy ---------- */
.section-title {
    font-size: clamp(2rem, 1.4rem + 2.4vw, 3.25rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: #F4F6FA;
    background: none;
    -webkit-text-fill-color: currentColor;
    position: relative;
    display: inline-block;
}
.section-title::after {
    content: "";
    display: block;
    width: 72px;
    height: 3px;
    margin: 18px auto 0;
    border-radius: 4px;
    background: linear-gradient(90deg, transparent, var(--gold-300), var(--gold-500), transparent);
}
.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.section-header .section-badge {
    margin-bottom: 14px;
}
.section-header .section-title {
    display: block;
    margin-bottom: 18px;
}
.section-desc { color: #9AA1AC; font-size: 1.08rem; line-height: 1.85; }

/* Badge: glassy pill with sheen */
.section-badge,
.hero-badge {
    background: linear-gradient(180deg, rgba(212,175,55,0.16), rgba(212,175,55,0.06));
    border: 1px solid var(--hairline-strong);
    color: var(--gold-200);
    box-shadow: 0 1px 0 rgba(255,255,255,0.05) inset, 0 6px 16px -8px rgba(0,0,0,0.6);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
    backdrop-filter: blur(8px);
}
.section-badge i, .hero-badge i { color: var(--gold-300); }

/* ---------- Top bar + Header: glassy, layered ---------- */
.top-bar {
    background: linear-gradient(180deg, var(--ink-950), var(--ink-900));
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.header {
    background: linear-gradient(180deg, rgba(16,18,22,0.92), rgba(11,12,14,0.92));
    backdrop-filter: saturate(140%) blur(14px);
    border-bottom: 1px solid var(--hairline);
    box-shadow: 0 10px 30px -18px rgba(0,0,0,0.9);
}
.header.scrolled {
    background: linear-gradient(180deg, rgba(11,12,14,0.97), rgba(8,8,9,0.97));
    box-shadow: 0 14px 40px -20px rgba(0,0,0,1);
}
.logo-ar {
    background: linear-gradient(180deg, var(--gold-100), var(--gold-400) 60%, var(--gold-600));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}
.logo-icon {
    box-shadow: 0 0 0 1px var(--hairline), 0 8px 20px -10px rgba(212,175,55,0.5);
}
.nav-link { position: relative; letter-spacing: 0.2px; }
.nav-link::after {
    content: "";
    position: absolute;
    bottom: 6px;
    right: 18px; left: 18px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--gold-300), var(--gold-500));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.35s var(--ease-out-soft);
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link:hover, .nav-link.active { background: transparent; color: var(--gold-200); }

/* ---------- HERO: cinematic depth ---------- */
.hero { min-height: 100vh; }
.hero-bg {
    background:
        linear-gradient(180deg, rgba(6,6,7,0.35), rgba(6,6,7,0.2)),
        url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1920&q=80') center/cover no-repeat;
    transform: scale(1.05);
    animation: heroKenBurns 22s ease-in-out infinite alternate;
}
@keyframes heroKenBurns {
    from { transform: scale(1.05) translateY(0); }
    to   { transform: scale(1.14) translateY(-12px); }
}
.hero-overlay {
    background:
        radial-gradient(1100px 700px at 80% 30%, rgba(212,175,55,0.22), transparent 55%),
        linear-gradient(120deg, rgba(6,6,7,0.97) 0%, rgba(11,12,14,0.9) 45%, rgba(11,12,14,0.55) 100%);
}
/* gold light beam + bottom fade for legibility */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, var(--ink-950) 2%, transparent 30%);
    z-index: 0;
    pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero-title > span:first-child {
    font-size: clamp(2.6rem, 1.6rem + 4.6vw, 5.4rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.02;
    background: linear-gradient(180deg, #FFFFFF 0%, var(--gold-100) 40%, var(--gold-400) 75%, var(--gold-600) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 12px 30px rgba(212,175,55,0.18));
}
.hero-subtitle { color: #D7DBE2; font-weight: 500; }
.hero-desc { color: #A9B0BB; }
.hero-scroll a {
    border-color: var(--hairline-strong);
    color: var(--gold-200);
    background: rgba(212,175,55,0.06);
    backdrop-filter: blur(6px);
}

/* ---------- BUTTONS: tactile + shimmer ---------- */
.btn {
    border-radius: 12px;
    letter-spacing: 0.2px;
    transition: transform 0.4s var(--ease-out-soft), box-shadow 0.4s var(--ease-out-soft), background 0.3s ease;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.btn::before {
    content: "";
    position: absolute;
    top: 0; bottom: 0;
    width: 40%;
    left: -60%;
    background: linear-gradient(100deg, transparent, rgba(255,255,255,0.45), transparent);
    transform: skewX(-18deg);
    transition: left 0.6s var(--ease-out-soft);
    z-index: 1;
    pointer-events: none;
}
.btn:hover::before { left: 130%; }
.btn-primary {
    background: linear-gradient(180deg, var(--gold-200) 0%, var(--gold-400) 45%, var(--gold-600) 100%);
    color: #1A1206;
    font-weight: 800;
    box-shadow: 0 1px 0 rgba(255,255,255,0.4) inset, var(--glow-gold);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 1px 0 rgba(255,255,255,0.5) inset, 0 16px 40px -12px rgba(212,175,55,0.65);
}
.btn-outline {
    border: 1.5px solid var(--hairline-strong);
    color: #F1F3F7;
    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(6px);
}
.btn-outline:hover {
    background: rgba(212,175,55,0.12);
    border-color: var(--gold-300);
    color: var(--gold-100);
}

/* ---------- Universal card sheen + depth ---------- */
.price-card, .product-card, .feature-card, .branch-card, .factory-chip,
.product-detail-info, .product-specs-detail ul {
    position: relative;
    background: linear-gradient(180deg, var(--ink-800), var(--ink-850));
    border: 1px solid var(--hairline);
    box-shadow: var(--elev-1);
    transition: transform 0.5s var(--ease-out-soft), box-shadow 0.5s var(--ease-out-soft), border-color 0.4s ease;
}
/* top glassy edge highlight on key cards */
.price-card::before, .product-card::before, .feature-card::before, .branch-card::before {
    content: "";
    position: absolute;
    top: 0; left: 16px; right: 16px;
    height: 1px;
    background: var(--edge-sheen);
    opacity: 0.7;
    z-index: 3;
}
.price-card:hover, .product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--elev-3), var(--glow-gold);
    border-color: var(--hairline-strong);
}
.feature-card:hover, .branch-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--elev-2);
    border-color: var(--hairline-strong);
    background: linear-gradient(180deg, var(--ink-750), var(--ink-800));
}

/* ---------- Feature cards: icon depth ---------- */
.feature-icon {
    background: radial-gradient(120% 120% at 30% 20%, var(--gold-200), var(--gold-500) 70%, var(--gold-700));
    color: #1A1206;
    box-shadow: 0 1px 0 rgba(255,255,255,0.5) inset, 0 12px 28px -10px rgba(212,175,55,0.55);
    border-radius: 18px;
}
.feature-card h3 { color: #F2F4F8; font-weight: 700; }
.feature-card:hover h3 { color: var(--gold-200); }
.feature-card p { color: #9AA1AC; }

/* ---------- Price cards refinement ---------- */
.price-card { border-radius: 18px; }
.price-card-header {
    position: relative;
    background: linear-gradient(180deg, var(--ink-750), var(--ink-800)) !important;
    border-bottom: 1px solid var(--hairline);
}
.price-card-header h3 { color: #F2F4F8 !important; }
.price-card-header::after {
    content: "";
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
    opacity: 0.6;
}
.price-value .amount {
    color: #F6F8FB;
    background: linear-gradient(180deg, #FFFFFF, var(--gold-200));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-variant-numeric: tabular-nums;
}
.price-card-link {
    background: rgba(212,175,55,0.06);
    border-top: 1px solid var(--hairline);
    color: var(--gold-200);
    letter-spacing: 0.2px;
}
.price-card-link:hover {
    background: linear-gradient(180deg, var(--gold-300), var(--gold-500));
    color: #1A1206;
}

/* ---------- Product cards ---------- */
.product-card { border-radius: 18px; }
.product-image {
    background: radial-gradient(120% 120% at 50% 0%, var(--ink-700), var(--ink-850)) !important;
    border-bottom: 1px solid var(--hairline);
    min-height: 220px;
}
.product-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(80% 80% at 50% 40%, rgba(212,175,55,0.12), transparent 70%);
    pointer-events: none;
}
.product-content h3 { color: #F2F4F8; }
.product-card:hover .product-content h3 { color: var(--gold-200); }
.product-badge {
    background: linear-gradient(180deg, var(--gold-300), var(--gold-500));
    color: #1A1206;
    border: none;
    font-weight: 700;
    box-shadow: 0 6px 16px -8px rgba(212,175,55,0.7);
    letter-spacing: 0;
}
.product-link {
    background: linear-gradient(180deg, var(--gold-200), var(--gold-500));
    color: #1A1206;
    box-shadow: 0 10px 24px -8px rgba(212,175,55,0.7);
}

/* ---------- Factory chips ---------- */
.factory-chip {
    border-radius: 14px;
    background: linear-gradient(180deg, var(--ink-800), var(--ink-850));
    color: #DDE1E8;
}
.factory-chip:hover {
    border-color: var(--gold-300);
    background: linear-gradient(180deg, var(--ink-750), var(--ink-800));
    box-shadow: var(--elev-2);
}

.factories-section .factory-chip {
    min-height: 82px;
    flex-direction: row;
    justify-content: center;
    text-align: right;
    white-space: normal;
}

.factories-section .factory-chip img {
    width: 96px;
    height: 46px;
    padding: 4px 6px;
    background: #fff !important;
    transform: none;
}

.factories-section .factory-chip img[src*="gioshy"],
.factories-section .factory-chip img[src*="garhy"],
.factories-section .factory-chip img[src*="arab"],
.factories-section .factory-chip img[src*="bianko"],
.factories-section .factory-chip img[src*="costeel"] {
    transform: scale(1.12);
}

/* ---------- Stats: glassy with grain ---------- */
.stats-overlay {
    background:
        radial-gradient(900px 500px at 80% 20%, rgba(212,175,55,0.28), transparent 55%),
        linear-gradient(120deg, rgba(6,6,7,0.96), rgba(11,12,14,0.82));
}
.stat-icon {
    background: rgba(212,175,55,0.12);
    border: 1px solid var(--hairline-strong);
    box-shadow: 0 0 0 6px rgba(212,175,55,0.05), 0 10px 30px -12px rgba(0,0,0,0.7);
    color: var(--gold-200);
}
.stat-number {
    background: linear-gradient(180deg, #FFFFFF, var(--gold-300));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
}

/* ---------- Branches ---------- */
.branch-card { border-radius: 16px; }
.branch-icon {
    background: radial-gradient(120% 120% at 30% 20%, var(--gold-200), var(--gold-500));
    color: #1A1206;
    box-shadow: 0 10px 24px -10px rgba(212,175,55,0.55);
}
.branch-card h3 { color: #EEF1F5; }
.branch-card:hover h3 { color: var(--gold-200); }

/* ---------- CTA: rich, not flat gold ---------- */
.cta-section {
    background:
        radial-gradient(700px 400px at 20% 0%, rgba(255,255,255,0.18), transparent 60%),
        linear-gradient(120deg, var(--gold-500), var(--gold-300) 50%, var(--gold-600));
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(135deg, rgba(0,0,0,0.05) 0 2px, transparent 2px 14px);
    opacity: 0.5;
}
.cta-content { position: relative; }
.cta-content h2 { letter-spacing: -0.02em; }

/* ---------- Footer ---------- */
.footer { background: linear-gradient(180deg, var(--ink-900), var(--ink-950)); }
.footer-top { border-top: 1px solid var(--hairline); position: relative; }
.footer-top::before {
    content: "";
    position: absolute;
    top: -1px; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
    opacity: 0.5;
}
.footer-social a, .mobile-menu-social a {
    border: 1px solid var(--hairline);
    transition: transform 0.4s var(--ease-spring), background 0.3s ease, color 0.3s ease;
}
.footer-social a:hover {
    background: linear-gradient(180deg, var(--gold-300), var(--gold-500));
    transform: translateY(-3px) scale(1.05);
}

/* ---------- Floating actions ---------- */
.whatsapp-float { box-shadow: 0 12px 30px -8px rgba(37,211,102,0.6); }
.back-to-top {
    background: linear-gradient(180deg, var(--gold-200), var(--gold-500));
    box-shadow: var(--glow-gold);
}

/* ---------- Page header (inner pages) ---------- */
.page-header {
    background:
        radial-gradient(800px 400px at 80% 0%, rgba(212,175,55,0.18), transparent 55%),
        linear-gradient(160deg, var(--ink-900), var(--ink-800));
    border-bottom: 1px solid var(--hairline);
    padding: 150px 0 70px;
}
.page-header h1 {
    font-size: clamp(2rem, 1.4rem + 2.4vw, 3.25rem);
    letter-spacing: -0.02em;
    background: linear-gradient(180deg, #FFFFFF, var(--gold-300));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ---------- Forms ---------- */
.form-control {
    background: var(--ink-850);
    border: 1px solid var(--hairline);
    border-radius: 12px;
    color: #E7EAEF;
}
.form-control:focus {
    border-color: var(--gold-300);
    box-shadow: 0 0 0 4px rgba(212,175,55,0.15);
    background: var(--ink-800);
}

/* ---------- Scroll reveal niceties for AOS-less fallback ---------- */
@media (prefers-reduced-motion: no-preference) {
    .feature-card, .price-card, .product-card, .branch-card {
        will-change: transform;
    }
}

/* ---------- Logo normalization ---------- */
.brand-logo,
.pcm-logo-wrap {
    background: #fff !important;
    overflow: hidden;
}

.brand-logo img {
    width: 132%;
    height: 132%;
    object-fit: contain;
    transform: scale(1.08);
    transform-origin: center;
    background: #fff;
}

.brand-logo img[src*="gioshy"],
.brand-logo img[src*="garhy"],
.brand-logo img[src*="arab"],
.brand-logo img[src*="bianko"],
.brand-logo img[src*="costeel"],
.brand-logo img[src*="lafarge"],
.brand-logo img[src*="sinai"],
.brand-logo img[src*="beni-suef"] {
    transform: scale(1.28);
}

.product-image .home-product-logo,
.brand-logo-image {
    object-fit: contain;
    transform: scale(1.12);
    transform-origin: center;
    background: #fff;
    border-radius: 10px;
    padding: 8px;
}

.product-image .home-product-logo[src*="gioshy"],
.product-image .home-product-logo[src*="garhy"],
.product-image .home-product-logo[src*="arab"],
.product-image .home-product-logo[src*="bianko"],
.product-image .home-product-logo[src*="costeel"],
.brand-logo-image[src*="gioshy"],
.brand-logo-image[src*="garhy"],
.brand-logo-image[src*="arab"],
.brand-logo-image[src*="bianko"],
.brand-logo-image[src*="costeel"] {
    transform: scale(1.28);
}

.factory-chip img,
.submenu-logo {
    object-fit: contain;
    transform: scale(1.16);
    transform-origin: center;
    background: #fff !important;
}

.factories-section .factory-chip img {
    transform: none;
}

.factories-section .factory-chip img[src*="gioshy"],
.factories-section .factory-chip img[src*="garhy"],
.factories-section .factory-chip img[src*="arab"],
.factories-section .factory-chip img[src*="bianko"],
.factories-section .factory-chip img[src*="costeel"] {
    transform: scale(1.12);
}

/* ---------- Section divider hairlines between alternating bands ---------- */
.company-intro, .features, .products-section, .branches-section, .factories-section {
    border-top: 1px solid rgba(255,255,255,0.03);
}

/* ---------- Inner-page (product detail) premium ---------- */
.product-detail-info { border-radius: 20px; box-shadow: var(--elev-2); }
.product-detail-info h2 { color: #F3F5F9; letter-spacing: -0.01em; }
.product-price-box {
    background: linear-gradient(180deg, rgba(212,175,55,0.12), rgba(212,175,55,0.04));
    border: 1px solid var(--hairline-strong);
    border-radius: 16px;
}
.features-tags span {
    background: var(--ink-800);
    border: 1px solid var(--hairline);
    border-radius: 12px;
}
.features-tags span:hover { border-color: var(--gold-300); }

/* Keep product badges clear of brand logos. */
.product-image {
    padding: 48px 18px 24px;
}

.product-badge {
    top: 12px;
    right: 12px;
    z-index: 4;
    max-width: calc(100% - 24px);
    white-space: nowrap;
    background: linear-gradient(180deg, var(--gold-200), var(--gold-500));
    color: #1A1206;
    border: 0;
    box-shadow: 0 10px 24px -10px rgba(212, 175, 55, 0.8);
}

.product-image .home-product-logo {
    width: min(92%, 260px);
    max-height: 132px;
    margin-top: 0;
}

/* ========== Free Tools ========== */
.free-tools-section {
    background: linear-gradient(180deg, var(--ink-950), var(--ink-900));
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.tools-tabs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 18px;
}

.tool-tab {
    min-height: 54px;
    border: 1px solid var(--hairline);
    border-radius: 10px;
    background: linear-gradient(180deg, var(--ink-800), var(--ink-850));
    color: #DDE1E8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: inherit;
    font-weight: 800;
    cursor: pointer;
    transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.tool-tab i {
    color: var(--gold-300);
}

.tool-tab.active,
.tool-tab:hover {
    color: #1A1206;
    border-color: var(--gold-300);
    background: linear-gradient(180deg, var(--gold-200), var(--gold-500));
}

.tool-tab.active i,
.tool-tab:hover i {
    color: #1A1206;
}

.tools-panels {
    background: linear-gradient(180deg, var(--ink-800), var(--ink-850));
    border: 1px solid var(--hairline);
    border-radius: 14px;
    padding: 20px;
    box-shadow: var(--elev-1);
}

.tool-panel {
    display: none;
}

.tool-panel.active {
    display: block;
}

.tool-panel-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.tool-panel-head i {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold-300);
}

.tool-panel-head h3 {
    color: #F2F4F8;
    margin: 0;
    font-size: 1.25rem;
}

.tool-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.tool-grid label {
    display: grid;
    gap: 7px;
    color: #C7CCD4;
    font-weight: 700;
}

.tool-grid input,
.tool-grid select {
    width: 100%;
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    padding: 11px 12px;
    font-family: inherit;
}

.tool-grid select option {
    color: #111;
}

.tool-result {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.tool-result div {
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.07);
    padding: 14px;
}

.tool-result span {
    display: block;
    color: #A9B0BB;
    margin-bottom: 6px;
}

.tool-result strong {
    display: block;
    color: var(--gold-200);
    font-size: 1.25rem;
    font-variant-numeric: tabular-nums;
}

/* ========== Steel Specifications Guide ========== */
.specs-guide-section {
    background: linear-gradient(180deg, var(--ink-950), var(--ink-900));
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 80px 0;
}

.specs-guide-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 16px;
}

.spec-guide-card {
    background: linear-gradient(180deg, var(--ink-800), var(--ink-850));
    border: 1px solid var(--hairline);
    border-radius: 14px;
    padding: 20px;
    box-shadow: var(--elev-1);
}

.spec-guide-card h3 {
    color: var(--gold-200);
    margin: 0 0 14px;
    font-size: 1.15rem;
}

.spec-guide-card p {
    color: #C7CCD4;
    line-height: 1.9;
    margin: 0 0 12px;
}

.spec-guide-card ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.spec-guide-card li {
    display: grid;
    gap: 4px;
    color: #C7CCD4;
    border-bottom: 1px dashed rgba(212, 175, 55, 0.15);
    padding-bottom: 10px;
}

.spec-guide-card li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.spec-guide-card strong {
    color: #F2F4F8;
}

.spec-guide-card.highlighted {
    border-color: rgba(212, 175, 55, 0.34);
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.12), rgba(212, 175, 55, 0.04));
}

.spec-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.spec-tags span {
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold-200);
    border: 1px solid rgba(212, 175, 55, 0.2);
    font-weight: 700;
    font-size: 0.86rem;
}

.spec-guide-card.note {
    background: linear-gradient(180deg, #15181D, #101216);
}

.product-standards-detail {
    margin-bottom: 25px;
}

.standards-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.standards-tags span {
    padding: 8px 11px;
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-200);
    border: 1px solid rgba(212, 175, 55, 0.18);
    font-weight: 800;
    font-size: 0.85rem;
}

.standards-note {
    color: #A9B0BB;
    line-height: 1.8;
    margin: 0;
}

/* ========== Weights & Cement Guides ========== */
.weights-guide-section,
.cement-specs-section {
    background: var(--ink-950);
    padding: 80px 0;
}

.weights-guide-section {
    border-top: 1px solid rgba(212, 175, 55, 0.08);
}

.cement-specs-section {
    background: linear-gradient(180deg, #101216, #0B0D10);
}

.weights-guide-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
    gap: 18px;
    align-items: start;
}

.weights-table-card,
.factory-sizes-card {
    background: linear-gradient(180deg, var(--ink-800), var(--ink-850));
    border: 1px solid var(--hairline);
    border-radius: 14px;
    padding: 18px;
    box-shadow: var(--elev-1);
}

.table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.steel-weight-table {
    width: 100%;
    min-width: 620px;
    border-collapse: collapse;
    color: #E8EBF0;
    font-weight: 700;
}

.steel-weight-table th,
.steel-weight-table td {
    padding: 13px 12px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.steel-weight-table th {
    color: var(--gold-200);
    background: rgba(212, 175, 55, 0.08);
    white-space: nowrap;
}

.steel-weight-table td:first-child {
    color: #FFFFFF;
}

.guide-note {
    color: #A9B0BB;
    line-height: 1.8;
    margin: 14px 0 0;
    font-weight: 600;
}

.factory-sizes-card h3 {
    color: var(--gold-200);
    margin: 0 0 14px;
    font-size: 1.12rem;
}

.factory-size-list {
    display: grid;
    gap: 10px;
}

.factory-size-list div {
    display: grid;
    gap: 6px;
    padding: 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.factory-size-list strong {
    color: #FFFFFF;
}

.factory-size-list span {
    color: #AEB5C0;
    line-height: 1.75;
    font-weight: 700;
}

.cement-specs-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.products-faq-section {
    background: linear-gradient(180deg, #0B0D10, #101216);
    padding: 80px 0;
}

.products-faq-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.faq-card {
    background: linear-gradient(180deg, var(--ink-800), var(--ink-850));
    border: 1px solid var(--hairline);
    border-radius: 14px;
    padding: 20px;
    box-shadow: var(--elev-1);
}

.faq-card h3 {
    color: var(--gold-200);
    margin: 0 0 12px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.faq-card p {
    color: #C7CCD4;
    line-height: 1.9;
    margin: 0;
    font-weight: 600;
}

/* ========== SEO Content Pages ========== */
.seo-page-section {
    background: linear-gradient(180deg, #0B0D10, #101216);
    padding: 80px 0;
}

.seo-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 24px;
    align-items: start;
}

.seo-content-stack {
    display: grid;
    gap: 18px;
}

.seo-card,
.seo-side-card {
    background: linear-gradient(180deg, var(--ink-800), var(--ink-850));
    border: 1px solid var(--hairline);
    border-radius: 14px;
    padding: 22px;
    box-shadow: var(--elev-1);
}

.seo-card h2,
.seo-card h3,
.seo-side-card h3 {
    color: var(--gold-200);
    margin: 0 0 12px;
    line-height: 1.6;
}

.seo-card p,
.seo-card li,
.seo-side-card p,
.seo-side-card li {
    color: #C7CCD4;
    line-height: 1.95;
    font-weight: 600;
}

.seo-card ul,
.seo-side-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.seo-card li,
.seo-side-card li {
    position: relative;
    padding-right: 18px;
}

.seo-card li::before,
.seo-side-card li::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold-300);
    position: absolute;
    right: 0;
    top: 15px;
}

.seo-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 520px;
}

.seo-table th,
.seo-table td {
    padding: 12px;
    text-align: right;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    color: #DDE1E7;
}

.seo-table th {
    color: var(--gold-200);
    background: rgba(212, 175, 55, 0.08);
}

.quote-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.quote-form-grid label {
    display: grid;
    gap: 8px;
    color: #E8EBF0;
    font-weight: 800;
}

.quote-form-grid input,
.quote-form-grid select,
.quote-form-grid textarea {
    width: 100%;
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 10px;
    background: #0B0D10;
    color: #FFFFFF;
    padding: 13px 14px;
    font-family: inherit;
}

.quote-form-grid .full {
    grid-column: 1 / -1;
}

.seo-link-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.seo-link-card {
    display: grid;
    gap: 8px;
    padding: 18px;
    border-radius: 14px;
    border: 1px solid rgba(212, 175, 55, 0.16);
    background: rgba(255, 255, 255, 0.035);
    color: #FFFFFF;
}

.seo-link-card i {
    color: var(--gold-300);
    font-size: 1.35rem;
}

.seo-link-card span {
    color: #AEB5C0;
    line-height: 1.7;
    font-weight: 600;
}
