:root {
    --gold: #C9A646;
    --dark-green: #0F3D2E;
    --green-dark: #0A2B20;
    --green-mid: #1A6B4A;
    --green-light: rgba(15, 61, 46, 0.1);
    --black: #E8E4DC;
    --deep-shadow: rgba(0, 0, 0, 0.6);
    --gold-glow: rgba(201, 166, 70, 0.3);
    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --bg-primary: #0A1812;
    --bg-secondary: #07130E;
    --bg-card: rgba(15, 61, 46, 0.15);
    --text-heading: var(--gold);
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --text-muted: rgba(255, 255, 255, 0.55);
    --border-color: rgba(201, 166, 70, 0.12);
    --card-border: rgba(201, 166, 70, 0.12);
    --input-bg: rgba(255, 255, 255, 0.05);
    --input-border: rgba(255, 255, 255, 0.1);
    --section-alt: rgba(15, 61, 46, 0.08);
    --nav-bg: rgba(5, 18, 14, 0.35);
    --nav-bg-scrolled: rgba(5, 18, 14, 0.92);
    --nav-text: #FFFFFF;
    --nav-text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    --nav-accent: #B8F000;
    --nav-link-hover-bg: rgba(184, 240, 0, 0.12);
    --nav-link-active-bg: rgba(184, 240, 0, 0.18);
    --nav-btn-bg: rgba(255, 255, 255, 0.12);
    --nav-btn-border: rgba(255, 255, 255, 0.25);
    --nav-quote-bg: #B8F000;
    --nav-quote-text: #0A1A0F;
    --nav-quote-hover: #A5E000;
    --nav-dropdown-bg: #0F3D2E;
    --nav-border: rgba(139, 195, 74, 0.1);
    --nav-shadow: rgba(0, 0, 0, 0.2);
    --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --card-shadow-hover: 0 10px 40px rgba(0, 0, 0, 0.5);
    --card-text: #FFFFFF;
    --card-text-muted: rgba(255, 255, 255, 0.6);
}

[data-theme="light"] {
    --gold: #C5A234;
    --dark-green: #1F1F1F;
    --green-dark: #1F1F1F;
    --green-mid: #1F1F1F;
    --green-light: rgba(197, 162, 52, 0.06);
    --black: #1F1F1F;
    --deep-shadow: rgba(31, 31, 31, 0.08);
    --gold-glow: rgba(197, 162, 52, 0.2);
    --bg-primary: #F8F8F5;
    --bg-secondary: #FFFFFF;
    --bg-card: #FFFFFF;
    --text-heading: #4A6741;
    --text-primary: #2A2A2A;
    --text-secondary: #4A4A4A;
    --text-muted: #777777;
    --card-text: #1F1F1F;
    --card-text-muted: rgba(31, 31, 31, 0.65);
    --card-border: rgba(197, 162, 52, 0.1);
    --border-color: rgba(31, 31, 31, 0.08);
    --input-bg: #FFFFFF;
    --input-border: rgba(31, 31, 31, 0.15);
    --section-alt: #F8F8F5;
    --nav-bg: rgba(248, 248, 245, 0.7);
    --nav-bg-scrolled: rgba(248, 248, 245, 0.97);
    --nav-text: #2A2A2A;
    --nav-text-shadow: none;
    --nav-accent: #2E7D32;
    --nav-link-hover-bg: rgba(46, 125, 50, 0.08);
    --nav-link-active-bg: rgba(46, 125, 50, 0.12);
    --nav-btn-bg: rgba(31, 31, 31, 0.05);
    --nav-btn-border: rgba(31, 31, 31, 0.14);
    --nav-quote-bg: #2E7D32;
    --nav-quote-text: #FFFFFF;
    --nav-quote-hover: #1B5E20;
    --nav-dropdown-bg: #FFFFFF;
    --nav-border: rgba(74, 103, 65, 0.08);
    --nav-shadow: rgba(0, 0, 0, 0.05);
    --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    --card-shadow-hover: 0 10px 40px rgba(0, 0, 0, 0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Outfit', 'Cairo', sans-serif;
    overflow-x: clip;
    line-height: 1.6;
    transition: background 0.4s ease, color 0.4s ease;
}

h1, h2, h3, h4 { font-family: 'Cairo', sans-serif; font-weight: 700; color: var(--text-heading); }

.gold-text {
    background: linear-gradient(to right, var(--gold), #F1D279, var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

[data-theme="light"] .gold-text {
    background: none;
    -webkit-text-fill-color: var(--text-heading);
    color: var(--text-heading);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes glow {
    0%, 100% { text-shadow: 0 0 10px var(--gold-glow); }
    50% { text-shadow: 0 0 20px var(--gold); }
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201, 166, 70, 0.5); }
    50% { box-shadow: 0 0 0 15px rgba(201, 166, 70, 0); }
}

.premium-loader {
    position: fixed; inset: 0;
    background: var(--bg-primary);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease;
}

.loader-logo {
    width: clamp(200px, 50vw, 400px);
    height: auto;
    margin-bottom: 16px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.footer-logo-img {
    width: clamp(80px, 15vw, 130px);
    height: auto;
    margin-bottom: 10px;
}

section { 
    padding: 100px 5%; 
    position: relative; 
    z-index: 1; 
    overflow-x: hidden;
    max-width: 100%;
}

/* ========== NAVBAR ========== */
nav {
    display: block;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 5%;
    transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                border-bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--nav-bg);
    backdrop-filter: blur(12px) saturate(1.1);
    -webkit-backdrop-filter: blur(12px) saturate(1.1);
    max-width: 100%;
    height: 82px;
}

nav:not(.scrolled) {
    background: var(--nav-bg);
    backdrop-filter: blur(12px) saturate(1.1);
    -webkit-backdrop-filter: blur(12px) saturate(1.1);
}

nav.scrolled {
    padding: 10px 5%;
    background: var(--nav-bg-scrolled);
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    border-bottom: 1px solid var(--nav-border);
    box-shadow: 0 4px 30px var(--nav-shadow);
    height: 62px;
}

.nav-inner {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    height: 100%;
    min-width: 0;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.03);
}

.nav-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: height 0.3s ease;
}

nav.scrolled .nav-logo-img {
    height: 42px;
}

/* Nav Links */
.nav-links {
    display: flex;
    flex-wrap: nowrap;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1px;
    align-items: center;
    flex: 1;
    justify-content: center;
    min-width: 0;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 13px;
    color: var(--nav-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.82rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
    letter-spacing: 0.3px;
    text-shadow: var(--nav-text-shadow);
    line-height: 1.4;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--nav-accent);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 2px;
    opacity: 0;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
    opacity: 1;
}

.nav-link:hover {
    color: var(--nav-accent);
    background: var(--nav-link-hover-bg);
}

.nav-link.active {
    color: var(--nav-accent);
    background: var(--nav-link-active-bg);
    text-shadow: 0 0 8px rgba(184, 240, 0, 0.3);
}

.nav-dropdown-arrow {
    font-size: 0.5rem;
    transition: transform 0.3s ease;
    opacity: 0.6;
}

/* Nav Actions */
.nav-actions {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    white-space: nowrap;
}

/* Quote Button */
.nav-btn-quote {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    height: 38px;
    background: var(--nav-quote-bg);
    color: var(--nav-quote-text);
    text-decoration: none;
    font-weight: 700;
    border-radius: 10px;
    font-size: 0.78rem;
    transition: all 0.3s ease;
    border: none;
    white-space: nowrap;
    font-family: 'Cairo', sans-serif;
    flex-shrink: 0;
    line-height: 1;
}

.nav-btn-quote:hover {
    background: var(--nav-quote-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px var(--nav-shadow);
}

/* Language Button */
.nav-btn-lang {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--nav-btn-bg);
    border: 1px solid var(--nav-btn-border);
    color: var(--nav-text);
    padding: 7px 14px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 0.75rem;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
    height: 38px;
    white-space: nowrap;
    text-shadow: var(--nav-text-shadow);
    min-width: 110px;
    justify-content: center;
    line-height: 1;
}

.nav-btn-lang:hover {
    border-color: var(--nav-accent);
    color: var(--nav-accent);
    background: var(--nav-link-hover-bg);
}

.nav-btn-lang i.fa-globe {
    font-size: 0.8rem;
    color: var(--nav-accent);
}

/* Language Dropdown */
.lang-switcher { position: relative; }
.lang-chevron { font-size: 0.6rem; margin-right: 2px; transition: transform 0.3s ease; }
.lang-switcher.open .lang-chevron { transform: rotate(180deg); }
.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: auto;
    background: var(--nav-dropdown-bg);
    border: 1px solid var(--nav-border);
    border-radius: 12px;
    padding: 6px;
    min-width: 160px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s ease;
    box-shadow: 0 10px 40px var(--nav-shadow);
}
.lang-switcher.open .lang-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}
.lang-option:hover { background: var(--nav-link-hover-bg); color: var(--nav-accent); }
.lang-option.active { background: var(--nav-link-active-bg); color: var(--nav-accent); }

/* Theme Toggle */
.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: var(--nav-btn-bg);
    border: 1px solid var(--nav-btn-border);
    border-radius: 10px;
    color: var(--nav-text);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}
.theme-toggle:hover { border-color: var(--nav-accent); color: var(--nav-accent); }
.theme-toggle i { color: var(--nav-accent); }

/* Hamburger */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    background: var(--nav-btn-bg);
    border: 1px solid var(--nav-btn-border);
    border-radius: 10px;
    cursor: pointer;
    padding: 9px 8px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.mobile-menu-btn:hover {
    border-color: var(--nav-accent);
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--nav-text);
    border-radius: 2px;
    transition: all 0.35s ease;
    transform-origin: center;
}

/* Hamburger -> X animation */
.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}
.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ========== MOBILE MENU (slide-in panel) ========== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    width: min(320px, 85vw);
    height: 100vh;
    height: 100dvh;
    display: flex;
    background: var(--bg-secondary);
    border-left: 1px solid var(--nav-border);
    z-index: 1005;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 40px var(--nav-shadow);
    visibility: hidden;
    pointer-events: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.mobile-menu.open {
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
}
[dir="ltr"] .mobile-menu {
    right: auto;
    left: 0;
    border-left: none;
    border-right: 1px solid var(--nav-border);
    transform: translateX(-100%);
}
[dir="ltr"] .mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--nav-border);
    flex-shrink: 0;
}
.mobile-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}
.mobile-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: var(--nav-btn-bg);
    border: 1px solid var(--nav-btn-border);
    border-radius: 10px;
    color: var(--nav-text);
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}
.mobile-close:hover {
    border-color: var(--nav-accent);
    color: var(--nav-accent);
}

.mobile-menu-body {
    display: flex;
    flex-direction: column;
    padding: 12px 16px 24px;
    flex: 1;
}
[dir="ltr"] .mobile-menu-body { padding: 12px 16px 24px; }

.mobile-link {
    display: flex;
    align-items: center;
    padding: 13px 16px;
    margin-bottom: 4px;
    border-radius: 10px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.95rem;
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    transition: all 0.25s ease;
}
.mobile-link:hover,
.mobile-link.active {
    background: var(--nav-link-hover-bg);
    color: var(--nav-accent);
}

/* Backdrop overlay */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.mobile-overlay.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* When menu is open, keep the hamburger button above content */
body.mobile-open nav { z-index: 1005; }

[data-theme="light"] .hero {
    background: radial-gradient(ellipse at 80% 20%, rgba(197, 162, 52, 0.04) 0%, transparent 50%);
    background-color: var(--bg-primary);
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(201, 166, 70, 0.06);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -80px;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(15, 61, 46, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.hero h1 {
    font-size: clamp(2rem, 6vw, 3.8rem);
    margin-bottom: 20px;
    animation: fadeInUp 1s ease backwards;
    color: var(--text-heading);
    position: relative;
    z-index: 1;
    line-height: 1.3;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    color: var(--text-primary);
    margin-bottom: 40px;
    animation: fadeInUp 1.2s ease backwards;
    position: relative;
    z-index: 1;
}

[data-theme="dark"] .hero h1 { color: var(--gold); }
[data-theme="dark"] .hero p { color: var(--text-primary); }

.hero > *:not(style) {
    position: relative;
    z-index: 1;
}

/* ========== HERO NEW ========== */
.hero-new {
    position: relative;
    min-height: calc(100vh - 82px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('../images/hero.jpg') center/cover no-repeat;
    overflow: hidden;
    padding-top: 40px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 20, 12, 0.7) 0%, rgba(5, 20, 12, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: #B8F000;
    border-radius: 50%;
    flex-shrink: 0;
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1.15;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.hero-title-green {
    color: #B8F000;
    display: block;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
    opacity: 0.95;
}

.hero-desc {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: rgba(255, 255, 255, 0.7);
    max-width: 650px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: #B8F000;
    color: #0A1A0F;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
}

.hero-btn-primary:hover {
    background: #A5E000;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(184, 240, 0, 0.3);
}

.hero-btn-arrow {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.hero-btn-primary:hover .hero-btn-arrow {
    transform: translateX(-4px);
}

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}

.hero-btn-play {
    font-size: 0.7rem;
    color: #B8F000;
}

/* Hero New Responsive */
@media (max-width: 768px) {
    .hero-new {
        min-height: calc(100vh - 72px);
        min-height: calc(100dvh - 72px);
        padding-top: 0;
    }
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.4rem);
    }
    .hero-desc {
        font-size: 0.95rem;
        padding: 0 10px;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 0 20px;
    }
    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}

@media (max-width: 400px) {
    .hero-badge {
        font-size: 0.78rem;
        padding: 8px 16px;
    }
    .hero-title {
        font-size: clamp(1.8rem, 7vw, 2.4rem);
    }
    .hero-btn-primary,
    .hero-btn-secondary {
        max-width: 280px;
        padding: 14px 28px;
        font-size: 0.9rem;
    }
}

/* ========== STATS & TRUST SECTION ========== */
.stats-trust-section {
    padding: 80px 5%;
    position: relative;
}

.stats-card {
    background: #FFFFFF;
    border-radius: 24px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04);
    display: flex;
    justify-content: center;
    align-items: stretch;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
    overflow: hidden;
}

[data-theme="dark"] .stats-card {
    background: #0D1F17;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3), 0 1px 3px rgba(0, 0, 0, 0.2);
}

.stat-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 20px;
    gap: 8px;
}

.stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #F0F4F0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

[data-theme="dark"] .stat-icon {
    background: rgba(139, 195, 74, 0.1);
}

.stat-icon svg {
    color: #2E7D32;
    width: 24px;
    height: 24px;
}

[data-theme="dark"] .stat-icon svg {
    color: #8BC34A;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 900;
    color: #1B5E20;
    line-height: 1.1;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.5px;
}

[data-theme="dark"] .stat-number {
    color: #FFFFFF;
}

.stat-label {
    font-size: 0.88rem;
    color: #78909C;
    font-weight: 500;
    font-family: 'Cairo', sans-serif;
}

[data-theme="dark"] .stat-label {
    color: rgba(255, 255, 255, 0.55);
}

.stat-divider {
    width: 1px;
    background: #E8ECEF;
    align-self: stretch;
    margin: 8px 0;
    flex-shrink: 0;
}

[data-theme="dark"] .stat-divider {
    background: rgba(255, 255, 255, 0.08);
}

/* Trust Row */
.trust-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    max-width: 1000px;
    margin: 28px auto 0;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #FFFFFF;
    border-radius: 14px;
    padding: 14px 22px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    flex: 1;
    min-width: 200px;
    max-width: 240px;
}

[data-theme="dark"] .trust-item {
    background: #0D1F17;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.trust-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #F0F4F0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

[data-theme="dark"] .trust-icon {
    background: rgba(139, 195, 74, 0.1);
}

.trust-icon svg {
    color: #2E7D32;
    width: 20px;
    height: 20px;
}

[data-theme="dark"] .trust-icon svg {
    color: #8BC34A;
}

.trust-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.trust-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1B5E20;
    font-family: 'Cairo', sans-serif;
    line-height: 1.3;
}

[data-theme="dark"] .trust-title {
    color: #FFFFFF;
}

.trust-subtitle {
    font-size: 0.72rem;
    color: #90A4AE;
    font-weight: 400;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.3px;
}

[data-theme="dark"] .trust-subtitle {
    color: rgba(255, 255, 255, 0.4);
}

/* Stats & Trust Responsive */
@media (max-width: 900px) {
    .stats-card {
        flex-wrap: wrap;
        max-width: 500px;
        padding: 30px 20px;
        gap: 0;
    }
    .stat-item {
        width: 50%;
        flex: none;
        padding: 20px 16px;
    }
    .stat-divider {
        display: none;
    }
    .stat-number {
        font-size: 1.9rem;
    }
}

@media (max-width: 600px) {
    .stats-trust-section {
        padding: 60px 5%;
    }
    .stats-card {
        border-radius: 18px;
        padding: 24px 16px;
        max-width: 100%;
    }
    .stat-item {
        padding: 16px 10px;
    }
    .stat-icon {
        width: 44px;
        height: 44px;
    }
    .stat-icon svg {
        width: 20px;
        height: 20px;
    }
    .stat-number {
        font-size: 1.6rem;
    }
    .stat-label {
        font-size: 0.78rem;
    }
    .trust-row {
        gap: 8px;
        margin-top: 20px;
    }
    .trust-item {
        min-width: calc(50% - 4px);
        max-width: none;
        flex: 1 1 calc(50% - 4px);
        padding: 12px 14px;
        gap: 10px;
    }
    .trust-icon {
        width: 36px;
        height: 36px;
    }
    .trust-icon svg {
        width: 17px;
        height: 17px;
    }
    .trust-title {
        font-size: 0.82rem;
    }
    .trust-subtitle {
        font-size: 0.68rem;
    }
}

@media (max-width: 400px) {
    .stat-number {
        font-size: 1.4rem;
    }
    .stat-label {
        font-size: 0.72rem;
    }
    .trust-item {
        padding: 10px 12px;
        gap: 8px;
    }
    .trust-title {
        font-size: 0.78rem;
    }
}

/* ========== PARTNER / ABOUT SECTION ========== */
.partner-section {
    padding: 100px 5%;
    overflow: hidden;
}

.partner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

/* Content Side */
.partner-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.partner-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background: rgba(184, 240, 0, 0.1);
    border: 1px solid rgba(184, 240, 0, 0.2);
    border-radius: 20px;
    color: #B8F000;
    font-size: 0.78rem;
    font-weight: 600;
    font-family: 'Cairo', sans-serif;
    width: fit-content;
    letter-spacing: 0.5px;
}

[data-theme="light"] .partner-badge {
    background: rgba(46, 125, 50, 0.08);
    border-color: rgba(46, 125, 50, 0.15);
    color: #2E7D32;
}

.partner-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.55;
    color: #1B5E20;
    font-family: 'Cairo', sans-serif;
    margin-bottom: 16px;
}

[data-theme="dark"] .partner-title {
    color: #FFFFFF;
}

.partner-title-green {
    color: #B8F000;
    position: relative;
    display: inline-block;
}

.partner-title-green::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 100%;
    height: 4px;
    background: #B8F000;
    border-radius: 2px;
    opacity: 0.5;
}

[data-theme="light"] .partner-title {
    color: #1B5E20;
}

[data-theme="light"] .partner-title-green {
    color: #2E7D32;
}

[data-theme="light"] .partner-title-green::after {
    background: #2E7D32;
}

.partner-desc {
    font-size: 0.95rem;
    line-height: 2.1;
    color: #546E7A;
    max-width: 520px;
    margin: 0 0 16px;
    white-space: pre-line;
}

[data-theme="dark"] .partner-desc {
    color: rgba(255, 255, 255, 0.6);
}

.partner-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
}

.partner-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #F5F7F5;
    border: 1px solid #E8ECEF;
    border-radius: 12px;
    transition: all 0.3s ease;
}

[data-theme="dark"] .partner-feature {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
}

.partner-feature:hover {
    border-color: #B8F000;
    background: rgba(184, 240, 0, 0.04);
}

[data-theme="light"] .partner-feature:hover {
    border-color: #2E7D32;
    background: rgba(46, 125, 50, 0.04);
}

.partner-feature-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #1B5E20;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

[data-theme="dark"] .partner-feature-icon {
    background: rgba(184, 240, 0, 0.15);
}

.partner-feature span {
    font-size: 0.82rem;
    font-weight: 600;
    color: #1B5E20;
    font-family: 'Cairo', sans-serif;
}

[data-theme="dark"] .partner-feature span {
    color: #FFFFFF;
}

/* Image Side */
.partner-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.partner-image-glow {
    position: absolute;
    width: 85%;
    height: 85%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184, 240, 0, 0.12) 0%, transparent 70%);
    z-index: 0;
}

[data-theme="light"] .partner-image-glow {
    background: radial-gradient(circle, rgba(46, 125, 50, 0.08) 0%, transparent 70%);
}

.partner-image {
    width: 100%;
    max-width: 480px;
    height: auto;
    border-radius: 30px;
    object-fit: cover;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

[data-theme="dark"] .partner-image {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.partner-float-card {
    position: absolute;
    bottom: 30px;
    left: -10px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #FFFFFF;
    padding: 14px 20px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

[data-theme="dark"] .partner-float-card {
    background: #1A2E23;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.partner-float-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #1B5E20;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.partner-float-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.partner-float-number {
    font-size: 1.4rem;
    font-weight: 900;
    color: #1B5E20;
    line-height: 1.1;
    font-family: 'Outfit', sans-serif;
}

[data-theme="dark"] .partner-float-number {
    color: #FFFFFF;
}

.partner-float-label {
    font-size: 0.72rem;
    color: #78909C;
    font-weight: 500;
    font-family: 'Cairo', sans-serif;
}

[data-theme="dark"] .partner-float-label {
    color: rgba(255, 255, 255, 0.5);
}

/* Partner Responsive */
@media (max-width: 992px) {
    .partner-grid {
        gap: 40px;
    }
    .partner-image {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .partner-section {
        padding: 60px 5%;
    }
    .partner-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .partner-content {
        order: 2;
    }
    .partner-image-wrapper {
        order: 1;
    }
    .partner-image {
        max-width: 360px;
    }
    .partner-float-card {
        bottom: 20px;
        left: 10px;
        padding: 12px 16px;
    }
    .partner-float-icon {
        width: 38px;
        height: 38px;
    }
    .partner-float-number {
        font-size: 1.2rem;
    }
}

@media (max-width: 600px) {
    .partner-title {
        font-size: 1.8rem;
    }
    .partner-features {
        grid-template-columns: 1fr;
    }
    .partner-image {
        max-width: 320px;
        border-radius: 24px;
    }
    .partner-float-card {
        bottom: 15px;
        left: 5px;
        padding: 10px 14px;
        gap: 10px;
    }
    .partner-float-icon {
        width: 34px;
        height: 34px;
    }
    .partner-float-icon svg {
        width: 18px;
        height: 18px;
    }
    .partner-float-number {
        font-size: 1.1rem;
    }
    .partner-float-label {
        font-size: 0.68rem;
    }
}

@media (max-width: 400px) {
    .partner-image {
        max-width: 280px;
    }
    .partner-feature {
        padding: 10px 14px;
    }
    .partner-feature span {
        font-size: 0.78rem;
    }
}

/* ========== JOURNEY TIMELINE SECTION ========== */
.journey-section {
    background: #174F46;
    padding: 100px 5%;
    overflow: hidden;
    position: relative;
}

.journey-header {
    text-align: center;
    margin-bottom: 80px;
}

.journey-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 18px;
    background: rgba(184, 240, 0, 0.12);
    border: 1px solid rgba(184, 240, 0, 0.25);
    border-radius: 20px;
    color: #B8F000;
    font-size: 0.78rem;
    font-weight: 600;
    font-family: 'Cairo', sans-serif;
    width: fit-content;
    margin: 0 auto 20px;
    letter-spacing: 0.5px;
}

.journey-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    line-height: 1.3;
    color: #FFFFFF;
    font-family: 'Cairo', sans-serif;
}

.journey-title-green {
    color: #B8F000;
    position: relative;
    display: inline-block;
}

.journey-title-green::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 100%;
    height: 4px;
    background: #B8F000;
    border-radius: 2px;
    opacity: 0.5;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
    width: 100%;
    box-sizing: border-box;
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    background: rgba(184, 240, 0, 0.12);
    border-radius: 3px;
    z-index: 0;
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: #B8F000;
    border-radius: 3px;
    transition: height 0.1s linear;
    box-shadow: 0 0 12px rgba(184, 240, 0, 0.4), 0 0 24px rgba(184, 240, 0, 0.15);
}

/* Timeline Item */
.timeline-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    min-height: 200px;
    position: relative;
}

.timeline-content {
    display: flex;
}

.timeline-right {
    justify-content: flex-start;
}

.timeline-left {
    justify-content: flex-end;
}

/* Timeline Node (Circle with number) */
.timeline-node {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #174F46;
    border: 3px solid rgba(184, 240, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    position: relative;
    transition: all 0.5s ease;
}

.timeline-node.active {
    border-color: #B8F000;
    background: rgba(184, 240, 0, 0.1);
    box-shadow: 0 0 20px rgba(184, 240, 0, 0.3), 0 0 40px rgba(184, 240, 0, 0.1);
}

.timeline-number {
    font-size: 1.1rem;
    font-weight: 900;
    color: rgba(184, 240, 0, 0.4);
    font-family: 'Outfit', sans-serif;
    transition: color 0.5s ease;
}

.timeline-node.active .timeline-number {
    color: #B8F000;
}

/* Timeline Card */
.timeline-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 28px;
    max-width: 380px;
    opacity: 0.5;
    transform: translateY(10px);
    transition: all 0.5s ease;
}

.timeline-card.active {
    opacity: 1;
    transform: translateY(0);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(184, 240, 0, 0.15);
}

.timeline-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(184, 240, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.timeline-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 10px;
    font-family: 'Cairo', sans-serif;
}

.timeline-card-desc {
    font-size: 0.88rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
}

/* Timeline Responsive */
@media (max-width: 768px) {
    .journey-section {
        padding: 60px 5%;
    }
    .journey-header {
        margin-bottom: 50px;
    }
    .timeline {
        padding-left: 40px;
    }
    .timeline-line {
        left: 20px;
        transform: none;
    }
    .timeline-item {
        grid-template-columns: auto 1fr;
        gap: 24px;
        min-height: 160px;
    }
    .timeline-content.timeline-left {
        display: none;
    }
    .timeline-content.timeline-right {
        justify-content: flex-start;
    }
    .timeline-node {
        width: 44px;
        height: 44px;
    }
    .timeline-number {
        font-size: 0.95rem;
    }
    .timeline-card {
        padding: 22px;
        max-width: none;
    }
    .timeline-card-title {
        font-size: 1.05rem;
    }
    .timeline-card-desc {
        font-size: 0.82rem;
    }
}

@media (max-width: 480px) {
    .journey-title {
        font-size: 1.8rem;
    }
    .timeline {
        padding-left: 32px;
    }
    .timeline-line {
        left: 16px;
    }
    .timeline-node {
        width: 38px;
        height: 38px;
        border-width: 2px;
    }
    .timeline-number {
        font-size: 0.85rem;
    }
    .timeline-card {
        padding: 18px;
        border-radius: 12px;
    }
    .timeline-card-icon {
        width: 38px;
        height: 38px;
        margin-bottom: 12px;
    }
    .timeline-card-icon svg {
        width: 18px;
        height: 18px;
    }
}

.cta-button {
    padding: 18px 45px;
    background: var(--gold);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    animation: fadeInUp 1.4s ease backwards;
    display: inline-block;
    box-shadow: 0 4px 20px rgba(201, 166, 70, 0.35);
}

.cta-button:hover {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 8px 30px var(--gold-glow);
    transform: translateY(-2px);
}

/* About */
.about-container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.about-image { position: relative; border-radius: 16px; overflow: hidden; box-shadow: 20px 20px 0 var(--dark-green); }

.about-image img { width: 100%; display: block; transition: transform 0.8s ease; }
.about-image:hover img { transform: scale(1.05); }

.section-title { font-size: 2.5rem; margin-bottom: 30px; position: relative; color: var(--text-heading); }

/* Categories 2x2 Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    box-sizing: border-box;
}

.category-card {
    text-decoration: none;
    display: block;
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--card-border);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.category-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: var(--card-shadow-hover);
}

.category-img {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover .category-img img {
    transform: scale(1.12);
}

/* Overlay */
.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 18, 14, 0.05) 0%, rgba(5, 18, 14, 0.45) 50%, rgba(5, 18, 14, 0.88) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 60px;
    pointer-events: none;
}

/* CTA inside card */
.category-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #B8F000;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Cairo', sans-serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
    letter-spacing: 0.3px;
    pointer-events: auto;
}

.category-card-cta-arrow {
    display: inline-block;
    color: #B8F000;
    font-size: 1.2rem;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.category-card:hover .category-card-cta-arrow {
    transform: translateX(-5px);
}

[dir="ltr"] .category-card:hover .category-card-cta-arrow {
    transform: translateX(5px);
}

/* Title bar at bottom of image */
.category-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 20px 18px;
    background: linear-gradient(transparent, rgba(5, 18, 14, 0.85) 40%);
    transition: padding 0.4s ease;
    z-index: 2;
}

.category-card:hover .category-title {
    padding: 24px 20px 22px;
}

.category-title h3 {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.category-title h3 span {
    color: var(--gold);
}

/* Bottom accent line on hover */
.category-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left;
}

[dir="rtl"] .category-card::after {
    transform-origin: right;
}

.category-card:hover::after {
    transform: scaleX(1);
}

/* Products */
.products-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(min(270px, 100%), 1fr)); 
    gap: 30px; 
    margin-top: 50px; 
    max-width: 100%;
    box-sizing: border-box;
}

.product-card { background: var(--bg-card); border: 1px solid var(--card-border); border-radius: 16px; padding: 20px; transition: var(--transition); position: relative; overflow: hidden; }

.product-card:hover { transform: translateY(-10px); background: var(--bg-card); border-color: var(--gold); box-shadow: var(--card-shadow-hover); }

.product-image { width: 100%; aspect-ratio: 1; border-radius: 12px; overflow: hidden; margin-bottom: 20px; }

.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }

.product-card:hover .product-image img { transform: scale(1.1); }

.product-info h3 { color: var(--text-heading); margin-bottom: 10px; }

.product-info .name-en { color: var(--card-text-muted); font-size: 0.8rem; margin-bottom: 8px; }

.product-info p { font-size: 0.9rem; color: var(--card-text-muted); }

/* Services */
#why {
    position: relative;
    background: url('../images/%D9%84%D9%85%D8%A7%D8%B0%D8%A7%20%D8%AA%D8%AE%D8%AA%D8%A7%D8%B1%20%D8%A7%D9%84%D8%A8%D8%AF%D8%B1.png') center/cover no-repeat;
    overflow: hidden;
}
#why::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 24, 18, 0.92) 0%, rgba(10, 24, 18, 0.88) 100%);
    z-index: 0;
}
[data-theme="light"] #why::before {
    background: linear-gradient(180deg, rgba(248, 248, 245, 0.92) 0%, rgba(248, 248, 245, 0.88) 100%);
}
#why > * { position: relative; z-index: 1; }

.features { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr)); 
    gap: 44px; 
    row-gap: 44px;
    max-width: 100%;
    box-sizing: border-box;
}
.feature-item { text-align: center; padding: 40px; background: var(--bg-card); border-radius: 20px; border: 1px solid var(--card-border); color: var(--card-text); overflow: hidden; }
.feature-item .feature-img { width: 100%; height: 180px; object-fit: cover; border-radius: 12px; margin-bottom: 20px; }
.feature-item .feature-img.flip { transform: scaleX(-1); }

.feature-icon { font-size: 2.5rem; color: var(--gold); margin-bottom: 20px; }

/* Testimonials Section (Dark Green) */
.testimonials-section {
    background: linear-gradient(135deg, #0F3D2E 0%, #174F46 50%, #0a2e22 100%);
    padding: 80px 5%;
}

.testimonials-section-title {
    color: #fff;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 900;
    margin-bottom: 12px;
}

.testimonials-section-desc {
    color: rgba(255,255,255,0.6);
    font-size: 1.05rem;
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.testimonials-slider .testimonials-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonials-slider .testimonial-slide {
    min-width: 100%;
    padding: 0 12px;
    flex-shrink: 0;
    box-sizing: border-box;
}

.testimonial-card-new {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.testimonial-stars-new {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 24px;
}

.testimonial-stars-new i {
    color: #B8F000;
    font-size: 1rem;
}

.testimonial-text-new {
    color: rgba(255,255,255,0.9);
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 32px;
    font-style: normal;
}

.testimonial-author-new {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.testimonial-avatar-new {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background: rgba(184,240,0,0.15);
    border: 2px solid rgba(184,240,0,0.3);
    color: #B8F000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    font-family: 'Cairo', sans-serif;
}

.testimonial-info-new h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 3px;
}

.testimonial-info-new span {
    color: #B8F000;
    font-size: 0.85rem;
    opacity: 0.8;
}

.testimonials-section .testimonials-nav {
    margin-top: 36px;
}

.testimonials-section .testimonial-arrow {
    border-color: rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.08);
    color: #fff;
}

.testimonials-section .testimonial-arrow:hover {
    background: #B8F000;
    color: #0F3D2E;
    border-color: #B8F000;
}

.testimonials-section .testimonial-dot {
    background: rgba(255,255,255,0.2);
}

.testimonials-section .testimonial-dot.active {
    background: #B8F000;
}

.testimonials-section .testimonial-dot:hover {
    background: rgba(184,240,0,0.5);
}

@media (max-width: 768px) {
    .testimonials-section { padding: 60px 5%; }
    .testimonial-card-new { padding: 28px 20px; }
    .testimonial-text-new { font-size: 1rem; }
}

@media (max-width: 480px) {
    .testimonial-card-new { padding: 24px 16px; border-radius: 18px; }
    .testimonial-text-new { font-size: 0.92rem; line-height: 1.8; }
    .testimonial-author-new { flex-direction: column; gap: 10px; }
}

/* Testimonials Carousel */
.testimonials-carousel {
    position: relative;
    max-width: 1000px;
    margin: 40px auto 0;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.testimonials-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.testimonial-slide {
    min-width: 33.333%;
    padding: 0 12px;
    flex-shrink: 0;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.4s ease;
    height: 100%;
    color: var(--card-text);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: var(--card-shadow-hover);
}

.testimonial-stars {
    color: #FFD700;
    font-size: 0.95rem;
    margin-bottom: 20px;
    display: flex;
    gap: 3px;
}

.testimonial-text {
    color: var(--card-text);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
    opacity: 0.85;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: #1A2E24;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.testimonial-author h4 {
    color: var(--text-heading);
    font-size: 1rem;
    margin-bottom: 3px;
}

.testimonial-author span {
    color: var(--card-text-muted);
    font-size: 0.8rem;
}

/* Testimonials Navigation */
.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.testimonial-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    color: var(--gold);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-arrow:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    transform: scale(1.05);
}

.testimonials-dots {
    display: flex;
    gap: 8px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.testimonial-dot.active {
    background: var(--gold);
    width: 28px;
    border-radius: 5px;
}

.testimonial-dot:hover {
    background: rgba(201, 166, 70, 0.5);
}

/* Branches */
.branches-grid { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 40px; 
    margin-top: 50px; 
    max-width: 900px; 
    margin-left: auto; 
    margin-right: auto; 
    width: 100%;
    box-sizing: border-box;
}

.branch-card { background: var(--bg-card); border: 1px solid var(--card-border); border-radius: 20px; padding: 40px 30px; text-align: center; transition: var(--transition); position: relative; overflow: hidden; color: var(--card-text); cursor: pointer; }

.branch-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(to right, transparent, var(--gold), transparent); opacity: 0; transition: var(--transition); }

.branch-card:hover::before { opacity: 1; }

.branch-card:hover { transform: translateY(-10px); border-color: var(--gold); box-shadow: var(--card-shadow-hover); }

.branch-icon { width: 70px; height: 70px; margin: 0 auto 20px; background: rgba(201, 166, 70, 0.1); border: 2px solid rgba(201, 166, 70, 0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--transition); }

.branch-icon .fi { width: 36px; height: 36px; border-radius: 4px; box-shadow: 0 0 8px rgba(0,0,0,0.3); }

.branch-card:hover .branch-icon { background: var(--gold); border-color: var(--gold); transform: scale(1.1); box-shadow: 0 0 30px var(--gold-glow); }

.branch-name { color: var(--text-heading); font-size: 1.2rem; margin-bottom: 8px; }

.branch-country { display: inline-block; padding: 4px 16px; background: rgba(201, 166, 70, 0.1); border: 1px solid rgba(201, 166, 70, 0.2); border-radius: 20px; font-size: 0.75rem; color: var(--text-heading); letter-spacing: 1px; margin-bottom: 15px; text-transform: uppercase; font-family: 'Outfit', sans-serif; }

.branch-address { color: var(--card-text-muted); font-size: 0.85rem; line-height: 1.8; direction: ltr; text-align: center; }

.branch-divider { width: 40px; height: 1px; background: rgba(201, 166, 70, 0.3); margin: 20px auto; }

.branch-meta { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 0.85rem; color: var(--card-text-muted); font-family: 'Outfit', sans-serif; }
.branch-meta i { color: var(--gold); font-size: 0.8rem; }

/* FAQ */
.faq-container { max-width: 800px; margin: 0 auto; }

.faq-item {
    margin-bottom: 14px;
    border: 1px solid var(--card-border);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.4s ease;
    background: var(--bg-card);
}

.faq-item:hover {
    border-color: rgba(201, 166, 70, 0.3);
    box-shadow: var(--card-shadow);
}

.faq-item.active {
    border-color: rgba(201, 166, 70, 0.4);
    box-shadow: var(--card-shadow);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px 25px;
    background: none;
    border: none;
    color: var(--card-text);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
    text-align: start;
}

.faq-item.active .faq-question {
    color: var(--text-heading);
}

/* FAQ +/× Icon */
.faq-icon {
    position: relative;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--gold);
    border-radius: 2px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-icon::before {
    width: 2.5px;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%) rotate(0deg);
}

.faq-icon::after {
    width: 100%;
    height: 2.5px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.faq-item.active .faq-icon::before {
    transform: translateX(-50%) rotate(45deg);
}

.faq-item.active .faq-icon::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 22px;
    opacity: 1;
}

.faq-answer p {
    color: var(--card-text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
}

/* Catalog */
.catalog-container { max-width: 700px; margin: 0 auto; }
.catalog-content { background: var(--bg-card); border: 1px solid var(--card-border); border-radius: 30px; padding: 60px; color: var(--card-text); }

/* Contact */
.contact-container { max-width: 700px; margin: 0 auto; background: var(--bg-card); padding: 60px; border-radius: 30px; border: 1px solid var(--card-border); color: var(--card-text); }

.form-group { margin-bottom: 25px; }
.form-group label { display: block; margin-bottom: 10px; color: var(--gold); font-weight: 500; }

[data-theme="light"] .form-group label { color: var(--gold); }

input, textarea { width: 100%; padding: 15px; background: var(--input-bg); border: 1px solid var(--input-border); border-radius: 8px; color: var(--text-primary); outline: none; transition: var(--transition); font-family: 'Outfit', 'Cairo', sans-serif; }

[data-theme="light"] input,
[data-theme="light"] textarea {
    background: #fff;
    border-color: rgba(31, 31, 31, 0.2);
    box-shadow: inset 0 1px 3px rgba(31, 31, 31, 0.06);
}

input:focus, textarea:focus { border-color: var(--gold); background: var(--input-bg); box-shadow: 0 0 10px var(--gold-glow); }

[data-theme="light"] input:focus,
[data-theme="light"] textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(197, 162, 52, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--gold);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(201, 166, 70, 0.35);
}

.submit-btn:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-2px);
    box-shadow: inset 0 0 0 2px var(--gold), 0 8px 25px var(--gold-glow);
}

[data-theme="light"] .submit-btn {
    color: #fff;
}

/* Footer */
/* Footer */
footer {
    padding: 0;
    background: #4A5D23;
    border-top: none;
    color: rgba(255,255,255,0.8);
    overflow-x: hidden;
    max-width: 100%;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding: 50px 5% 40px;
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}
.footer-brand {}
.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.footer-brand-logo img { height: 50px; width: auto; }
.footer-brand-title {
    font-family: 'Cairo', sans-serif;
    font-size: 1.2rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 1px;
}
.footer-brand-title span {
    display: block;
    font-size: 0.65rem;
    font-weight: 400;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 2px;
}
.footer-brand-desc {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 16px;
}
.footer-social {
    display: flex;
    gap: 10px;
}
.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}
.footer-social a:hover {
    background: #B8F000;
    color: #0A2B20;
    border-color: #B8F000;
}
.footer-col-title {
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-col-title::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: var(--gold);
    border-radius: 1px;
}
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 0.88rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}
.footer-col ul li a:hover { color: #B8F000; padding-right: 4px; }
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255,255,255,0.65);
    font-size: 0.85rem;
    line-height: 1.5;
}
.footer-contact-item i {
    color: var(--gold);
    font-size: 0.85rem;
    margin-top: 3px;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}
.footer-contact-item a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-contact-item a:hover { color: #B8F000; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 16px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}
.footer-copyright {
    color: rgba(255,255,255,0.4);
    font-size: 0.78rem;
}
.footer-credit {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    font-size: 0.78rem;
    transition: color 0.3s ease;
}
.footer-credit:hover { color: var(--gold); }
.footer-credit i { margin-left: 4px; color: var(--gold); }

@media (max-width: 992px) {
    .footer-top { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 600px) {
    .footer-top { grid-template-columns: 1fr; gap: 24px; padding: 40px 5% 30px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: whatsappPulse 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.12) rotate(-5deg);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.5);
    color: #fff;
}

/* ===== Why Us Grid ===== */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

/* ========== RESPONSIVE ========== */

/* Mobile & tablet (compact nav: hamburger instead of full links) */
@media (max-width: 991px) {
    .nav-links { display: none; }
    .nav-btn-quote { display: none; }
    .mobile-menu-btn { display: flex; }
    .mobile-menu { display: flex; }
    .mobile-overlay { display: block; }
}

@media (max-width: 992px) {
    .about-container { grid-template-columns: 1fr; gap: 40px; }
    .about-image { box-shadow: 12px 12px 0 var(--dark-green); }
    .branches-grid { grid-template-columns: 1fr; gap: 30px; max-width: min(500px, 100%); }
    .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 100%; }
    .catalog-content, .contact-container { padding: 40px 30px; }
    .testimonial-slide { min-width: 50%; }
    .features { grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr)); gap: 20px; }
    .products-grid { gap: 20px; }
}

/* Tablet portrait */
@media (max-width: 768px) {
    html, body { overflow-x: clip; width: 100%; }
    section { padding: 60px 5%; overflow: hidden; }
    nav { padding: 14px 4%; height: 72px; }
    nav.scrolled { padding: 10px 4%; height: 58px; }
    .nav-logo-img { height: 44px; }
    nav.scrolled .nav-logo-img { height: 38px; }
    .nav-actions { gap: 6px; }
    .nav-btn-quote { display: none; }
    .nav-btn-lang { min-width: 0; padding: 7px 10px; }
    .hero { min-height: calc(100vh - 72px); height: auto; padding: 40px 5% 60px; }
    .hero h1 { font-size: 2.8rem; }
    .hero p { font-size: 1.1rem; max-width: 90%; }
    .hero::before, .hero::after { opacity: 0.4; }
    .section-title { font-size: 2rem; }
    .section-title::before { width: 45px; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .category-card-cta { font-size: 0.92rem; }
    .why-grid { gap: 30px; }
    .why-grid h3 { font-size: 1.1rem; }
    .testimonial-slide { min-width: 100%; }
    .testimonial-arrow { width: 38px; height: 38px; font-size: 0.85rem; }
    .testimonial-card { padding: 25px; }
    .feature-item { padding: 30px 20px; }
    .branch-card { padding: 30px 20px; }
    .whatsapp-float { width: 48px; height: 48px; font-size: 1.3rem; bottom: 18px; left: 18px; }
    [dir="rtl"] .whatsapp-float { left: auto; right: 18px; }
    .mobile-menu { width: min(320px, 85vw); }
}

/* Mobile large */
@media (max-width: 600px) {
    .hero h1 { font-size: clamp(1.6rem, 7vw, 2.2rem); }
    .hero p { font-size: 1rem; }
    .hero::before { width: 40vw; height: 40vw; top: -10vw; right: -10vw; }
    .hero::after { width: 30vw; height: 30vw; bottom: -15vw; left: -8vw; }
    .cta-button { padding: 14px 32px; font-size: 0.8rem; letter-spacing: 1px; }
    .catalog-content, .contact-container { padding: 30px 20px; border-radius: 20px; }
    .faq-question { padding: 15px 18px; font-size: 0.9rem; }
    .section-title { font-size: 1.7rem; }
    nav { padding: 12px 4%; height: 64px; }
    nav.scrolled { padding: 8px 4%; height: 50px; }
    .nav-logo-img { height: 38px; }
    nav.scrolled .nav-logo-img { height: 34px; }
    .nav-actions { gap: 4px; }
    .nav-btn-quote { display: none; }
    .nav-btn-lang { padding: 6px 8px; font-size: 0.7rem; min-width: 0; }
    .theme-toggle { width: 32px; height: 32px; }
    .mobile-menu-btn { width: 34px; height: 34px; padding: 8px 6px; }
    .why-grid { grid-template-columns: 1fr; gap: 25px; text-align: center; }
    .about-image { box-shadow: 8px 8px 0 var(--dark-green); }
    .products-grid { grid-template-columns: 1fr; gap: 16px; }
    .categories-grid { grid-template-columns: 1fr; gap: 16px; }
    .category-card-cta { font-size: 0.9rem; }
    .product-card { padding: 14px; }
    .product-image { margin-bottom: 14px; }
    .product-info h3 { font-size: 0.95rem; }
    .product-info p { font-size: 0.82rem; }
    .features { grid-template-columns: 1fr; }
    .feature-item { overflow: hidden; }
    .feature-item .feature-img { width: 100%; height: auto; aspect-ratio: 16/9; }
    .branches-grid { gap: 20px; }
    .faq-item { margin-bottom: 10px; }
    .faq-item.active .faq-answer { padding: 0 18px 18px; }
    .faq-answer p { font-size: 0.85rem; word-break: break-word; }
}

/* Mobile small */
@media (max-width: 400px) {
    section { padding: 40px 4%; }
    .hero { padding: 30px 4% 50px; min-height: calc(100vh - 60px); }
    .hero h1 { font-size: clamp(1.4rem, 6vw, 1.8rem); }
    .hero p { font-size: 0.9rem; }
    .cta-button { padding: 12px 24px; font-size: 0.75rem; }
    .section-title { font-size: 1.4rem; }
    nav { padding: 10px 4%; height: 60px; }
    nav.scrolled { padding: 8px 4%; height: 48px; }
    .nav-logo-img { height: 36px; }
    nav.scrolled .nav-logo-img { height: 32px; }
    .nav-actions { gap: 3px; }
    .nav-btn-quote { display: none; }
    .nav-btn-lang { padding: 6px 6px; font-size: 0.68rem; min-width: 0; }
    .theme-toggle { width: 30px; height: 30px; }
    .mobile-menu-btn { width: 32px; height: 32px; padding: 7px 6px; }
    .products-grid { gap: 14px; }
    .about-image { box-shadow: 5px 5px 0 var(--dark-green); }
    .about-container { gap: 25px; }
    .why-grid { gap: 20px; margin-top: 30px; }
    .catalog-content, .contact-container { padding: 20px 16px; }
    .submit-btn { padding: 14px; font-size: 0.85rem; }
    .testimonial-card { padding: 20px; }
    .testimonial-text { font-size: 0.85rem; }
    .whatsapp-float { width: 42px; height: 42px; font-size: 1.1rem; bottom: 14px; left: 14px; }
    [dir="rtl"] .whatsapp-float { left: auto; right: 14px; }
    .feature-item .feature-img { height: clamp(140px, 40vw, 160px); }
    .mobile-menu { width: min(280px, 80vw); }
}

/* RTL */
[dir="rtl"] .whatsapp-float { left: auto; right: 25px; }

/* Global fluid resets */
img { max-width: 100%; height: auto; }
.cta-button { max-width: 100%; }
.testimonials-carousel { max-width: 100%; }
.whatsapp-float { z-index: 9998; }

/* ========== COMPREHENSIVE RESPONSIVE ENHANCEMENTS ========== */

/* Prevent horizontal scroll on all devices */
html, body {
    overflow-x: clip;
    width: 100%;
    max-width: 100vw;
}

/* Ensure all containers respect viewport */
* {
    box-sizing: border-box;
}

/* Large Desktop (1920px+) */
@media (min-width: 1920px) {
    .nav-inner {
        max-width: 1600px;
    }
    .categories-grid {
        max-width: 1400px;
    }
    .footer-top {
        max-width: 1600px;
    }
}

/* Desktop Large (1440px - 1919px) */
@media (min-width: 1440px) and (max-width: 1919px) {
    .nav-inner {
        max-width: 1400px;
    }
}

/* Tablet Landscape (1024px - 1100px) */
@media (min-width: 1024px) and (max-width: 1100px) {
    .nav-links {
        gap: 0;
    }
    .nav-link {
        padding: 8px 10px;
        font-size: 0.78rem;
    }
    .nav-btn-quote {
        padding: 0 16px;
        font-size: 0.75rem;
    }
}

/* Enhanced Mobile (320px - 767px) */
@media (max-width: 767px) {
    /* Ensure no horizontal scroll */
    body {
        overflow-x: clip;
    }
    
    /* Ensure mobile menu works */
    .mobile-menu {
        width: min(320px, 85vw);
        max-width: 100vw;
    }
    
    /* Fix hero sections */
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
        padding: 120px 5% 60px;
    }
    
    /* Ensure buttons are touch-friendly */
    .cta-button,
    .hero-btn-primary,
    .hero-btn-secondary {
        min-height: 44px;
        padding: 14px 24px;
        font-size: 0.9rem;
    }
    
    /* Fix form inputs */
    input, textarea, select {
        font-size: 16px; /* Prevents zoom on iOS */
        min-height: 44px;
    }
    
    /* Ensure cards stack properly */
    .categories-grid,
    .products-grid,
    .features,
    .branches-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    /* Fix footer on mobile */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 40px 5% 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding: 16px 5%;
    }
    
    /* Ensure WhatsApp button doesn't overlap content */
    .whatsapp-float {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
        bottom: 18px;
        left: 18px;
    }
    
    [dir="rtl"] .whatsapp-float {
        left: auto;
        right: 18px;
    }
    
    /* Fix section padding */
    section {
        padding: 60px 5%;
    }
    
    /* Ensure text doesn't overflow */
    h1, h2, h3, h4 {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Fix images */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Ensure tables are scrollable */
    .spec-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

/* Small Mobile (320px - 480px) */
@media (max-width: 480px) {
    /* Extra small screens */
    section {
        padding: 40px 4%;
    }
    
    .hero {
        padding: 100px 4% 50px;
    }
    
    /* Smaller buttons */
    .cta-button {
        padding: 12px 20px;
        font-size: 0.85rem;
    }
    
    /* Smaller text */
    .section-title {
        font-size: 1.5rem;
    }
    
    /* Ensure mobile menu fits */
    .mobile-menu {
        width: min(280px, 85vw);
    }
    
    /* Fix WhatsApp button */
    .whatsapp-float {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
        bottom: 14px;
        left: 14px;
    }
    
    [dir="rtl"] .whatsapp-float {
        left: auto;
        right: 14px;
    }
}

/* Very Small Mobile (320px - 374px) */
@media (max-width: 374px) {
    /* Ultra small screens like iPhone SE */
    .hero h1 {
        font-size: 1.4rem;
    }
    
    .hero p {
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .nav-logo-img {
        height: 32px;
    }
    
    .cta-button {
        padding: 10px 16px;
        font-size: 0.8rem;
    }
    
    /* Ensure text fits */
    body {
        font-size: 14px;
    }
}

/* Tablet Portrait (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    /* Optimize for tablet portrait */
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .features {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .branches-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    /* Ensure proper spacing */
    section {
        padding: 80px 5%;
    }
}

/* iPad Pro and similar (1024px - 1366px) */
@media (min-width: 1024px) and (max-width: 1366px) {
    .nav-inner {
        max-width: 1200px;
    }
    
    .categories-grid {
        max-width: 1100px;
    }
}

/* Ensure RTL works correctly on all screen sizes */
[dir="rtl"] {
    text-align: right;
}

[dir="ltr"] {
    text-align: left;
}

/* Fix for very long words/URLs */
* {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Ensure forms are accessible */
input:focus,
textarea:focus,
select:focus,
button:focus {
    outline: 2px solid #B8F000;
    outline-offset: 2px;
}

/* Prevent layout shift from images */
img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Ensure videos are responsive */
video,
iframe {
    max-width: 100%;
    height: auto;
}

/* Fix for Safari on iOS */
@supports (-webkit-touch-callout: none) {
    .hero {
        min-height: -webkit-fill-available;
    }
}

/* Print styles */
@media print {
    .whatsapp-float,
    .mobile-menu,
    .mobile-overlay,
    nav {
        display: none !important;
    }
    
    body {
        color: #000;
        background: #fff;
    }
}
