/*
   العربية العالمية – Chocolate-Beige Luxury Theme
   Primary: #2E231A (Dark Brown) | Secondary: #825D3D (Medium Brown) | BG: #F6EADC (Elegant Beige)
*/

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;800&family=Cinzel:wght@500;600;700&family=Montserrat:wght@300;400;500;600;700;800&family=Tajawal:wght@300;400;500;700;800&family=Outfit:wght@300;400;500;600;700&family=El+Messiri:wght@700&display=swap');

:root {
    /* ─── PRIMARY BROWN LUXURY PALETTE ──────────────── */
    --clr-bg: #1F1209;
    /* Warm parchment background */
    --clr-bg-alt: #2E1A0D;
    /* Deeper beige for alt sections */
    --clr-text: #F2E8D9;
    /* Primary text – dark espresso */
    --clr-primary: #F2E8D9;
    /* Brand primary – dark brown */
    --clr-secondary: #825D3D;
    /* Brand secondary / primary accent */

    /* ─── BROWN GRADIENTS & GLOW ─────────────────────── */
    --clr-gold-prime: linear-gradient(135deg, #825D3D 0%, #4A3320 100%);
    --clr-gold-text: linear-gradient(to right, #825D3D, #D4A373, #825D3D);
    --clr-gold-soft: rgba(107, 63, 31, 0.18);
    --clr-card-bg: #1A0F08;
    --clr-card-hover: #22150D;
    --clr-glass-blur: blur(15px);
    --clr-gold-glow: 0 8px 32px rgba(46, 35, 26, 0.18);

    /* ─── UTILITY & LEGACY ───────────────────────────── */
    --clr-deep-gold: #F2E8D9;
    /* Dark espresso */
    --clr-gold: #825D3D;
    /* Main accent color */
    --clr-gold-d: #61442B;
    /* Even darker brown */
    --clr-white: #F2E8D9;
    --clr-beige: #F2E8D9;
    --font-ar: 'El Messiri', 'Cairo', sans-serif;
    --font-en: 'Montserrat', sans-serif;
    --font-brand: 'Cinzel', serif;
    --navbar-h: 85px;
    --t-fast: 0.3s;
    --t-med: 0.5s;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --grad-gold: var(--clr-gold-prime);
    --shadow-md: 0 12px 30px rgba(46, 35, 26, 0.12);
    --shadow-lg: 0 24px 60px rgba(46, 35, 26, 0.20);
}

.text-shadow-gold {
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2), -1px -1px 3px rgba(0, 0, 0, 0.1);
}

/* ─── CUSTOM SCROLLBAR ────────────────────────── */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--clr-beige);
}

::-webkit-scrollbar-thumb {
    background: var(--clr-gold-d);
    border-radius: 5px;
    border: 2px solid var(--clr-beige);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--clr-gold);
}

html[dir="ltr"] {
    --font-ar: 'Outfit', sans-serif;
}

html[dir="ltr"] .hero-title {
    border-left: none;
    border-right: 3px solid var(--clr-gold);
    /* Cursor on the right for LTR reveal */
}

/* ─── RESET ─────────────────────────────────────── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--clr-bg);
    background-image:
        radial-gradient(1.5px 1.5px at 20px 30px, rgba(212, 163, 115, 0.1), rgba(0, 0, 0, 0)),
        radial-gradient(1px 1px at 50px 100px, rgba(212, 163, 115, 0.08), rgba(0, 0, 0, 0)),
        radial-gradient(2px 2px at 150px 150px, rgba(212, 163, 115, 0.05), rgba(0, 0, 0, 0)),
        radial-gradient(1px 1px at 200px 50px, rgba(156, 102, 68, 0.08), rgba(0, 0, 0, 0)),
        linear-gradient(rgba(31, 18, 9, 0.96), rgba(31, 18, 9, 0.96)),
        url("https://www.transparenttextures.com/patterns/natural-paper.png");
    /* Subtle luxury texture on deep brown */
    background-size: 200px 200px, 400px 400px, 400px 400px, 400px 400px, cover, auto;
    background-attachment: fixed;
    color: var(--clr-text);
    font-family: var(--font-ar);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-ar);
    font-weight: 700;
    line-height: 1.3;
    color: var(--clr-deep-gold);
    letter-spacing: 0.02em;
}

.section-title,
.hero-title,
.modal-title {
    background: var(--clr-gold-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

html[dir="ltr"] h1,
html[dir="ltr"] h2,
html[dir="ltr"] h3 {
    font-family: var(--font-brand);
    letter-spacing: -0.01em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--t-fast) var(--ease);
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

/* ─── UTILITY ────────────────────────────────────── */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    padding: 70px 0;
    /* More breathing room */
    overflow-x: hidden;
}

.text-center {
    text-align: center;
}

.bg-off {
    background: transparent;
}

.bg-light {
    background: linear-gradient(135deg, #2E1A0D 0%, #3B2211 100%);
    position: relative;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15) inset;
}

/* Only these specific elements get light text on the dark bg-light sections */
.bg-light .section-title,
.bg-light .section-subtitle,
.bg-light .section-text {
    color: #fff8f0 !important;
    text-shadow: 0 1px 3px rgba(46, 35, 26, 0.2);
}

.bg-light .section-title {
    background: linear-gradient(to right, #D4A373, #F2E8D9, #D4A373) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    text-shadow: none !important;
    color: #F2E8D9 !important;
}

.bg-light .gold-line {
    background: linear-gradient(to right, #D4A373, #F2E8D9, #D4A373) !important;
    box-shadow: none;
}


.section-title {
    font-size: clamp(2rem, 5vw, 2.75rem);
    background: var(--clr-gold-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: var(--clr-deep-gold);
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--clr-text);
    opacity: 0.7;
    margin-bottom: 48px;
    font-weight: 500;
}

.section-text {
    font-size: 1.10rem;
    color: var(--clr-text);
    opacity: 0.95;
    line-height: 2.2;
}

.gold-line {
    display: block;
    width: 60px;
    height: 4px;
    border-radius: 2px;
    background: var(--grad-gold);
    margin: 16px 0 32px;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.gold-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: var(--foil-shimmer);
    animation: foil-glance 4s infinite ease-in-out;
}

@keyframes foil-glance {
    0% {
        left: -100%;
    }

    20% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

.gold-line.center {
    margin: 12px auto 28px;
}

/* ─── BUTTONS ────────────────────────────────────── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 42px;
    background: linear-gradient(135deg, #825D3D 0%, #2E231A 100%);
    color: #ffffff;
    font-family: var(--font-ar);
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--t-fast) var(--ease);
    box-shadow: 0 4px 20px rgba(46, 35, 26, 0.35), 0 1px 0 rgba(196, 154, 108, 0.3) inset;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(46, 35, 26, 0.45);
    background: linear-gradient(135deg, #9B6D4A 0%, #3b2410 100%);
    color: #F2E8D9;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-primary:hover::after {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(212, 175, 55, 0.3);
    color: var(--clr-deep-gold-d);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 34px;
    background: transparent;
    color: var(--clr-white);
    /* Now mapped to F2E8D9 */
    font-family: var(--font-ar);
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--t-fast) var(--ease);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--clr-white);
    transform: translateY(-2px);
}

/* WhatsApp Hero Button - Refined */
.btn-whatsapp-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 38px;
    background: #25D366;
    color: #F2E8D9;
    font-family: var(--font-ar);
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--t-fast) var(--ease);
    box-shadow: none;
    /* Removed glow per request */
}

.btn-whatsapp-hero:hover {
    transform: translateY(-3px);
    background: #20BD5A;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* ─── HEADER V3 (TOP BAR) ────────────────────────── */
.header-v3 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--navbar-h);
    background: rgba(46, 26, 13, 0.95);
    /* Deep brown glass */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    backdrop-filter: var(--clr-glass-blur);
    -webkit-backdrop-filter: var(--clr-glass-blur);
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 163, 115, 0.15);
    transition: all var(--t-fast) var(--ease);
}

.header-container {
    width: 95%;
    max-width: 1600px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* LEFT: Booking Button */
.header-left {
    display: flex;
    align-items: center;
    z-index: 10;
}

.btn-booking {
    background: var(--clr-gold);
    color: #000;
    font-family: var(--font-ar);
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 3px;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all var(--t-fast) var(--ease);
    text-shadow: none;
}

.btn-booking:hover {
    background: var(--clr-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* CENTER: Brand */
.header-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: auto;
}

.brand-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-decoration: none;
}

.header-logo {
    height: 62px;
    width: auto;
    object-fit: contain;
    /* 3D Multi-layer depth effect */
    filter:
        drop-shadow(0 1px 1px rgba(196, 154, 108, 0.6)) drop-shadow(0 2px 3px rgba(130, 93, 61, 0.5)) drop-shadow(0 4px 8px rgba(46, 35, 26, 0.4)) drop-shadow(0 8px 20px rgba(46, 35, 26, 0.3)) brightness(1.05) contrast(1.05);
    transition: transform 0.4s var(--ease), filter 0.4s var(--ease);
    transform: perspective(600px) translateZ(0px);
    transform-origin: center bottom;
}

.brand-link:hover .header-logo {
    transform: perspective(600px) translateZ(12px) scale(1.08);
    filter:
        drop-shadow(0 2px 2px rgba(196, 154, 108, 0.8)) drop-shadow(0 4px 8px rgba(130, 93, 61, 0.6)) drop-shadow(0 10px 28px rgba(46, 35, 26, 0.5)) drop-shadow(0 20px 40px rgba(46, 35, 26, 0.3)) brightness(1.1) contrast(1.08);
}

.brand-group {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.brand-top {
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand-title {
    font-family: var(--font-brand);
    color: #F2E8D9;
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: 0.15em;
    white-space: nowrap;
}

.brand-icon {
    width: 24px;
    height: 24px;
}

.brand-subtitle {
    font-family: var(--font-brand);
    color: #D4A373;
    font-size: 7.5px;
    letter-spacing: 0.35em;
    font-weight: 500;
    margin-top: 2px;
}

/* RIGHT: Nav/Lang */
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-ar);
    font-size: 0.85rem;
}

.lang-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: color var(--t-fast);
}

.lang-btn[data-lang="en"] {
    color: #F2E8D9;
    opacity: 0.7;
}

.lang-btn[data-lang="en"]:hover {
    color: #ffffff;
    opacity: 1;
}

.lang-divider {
    color: #4b5563;
}

.lang-btn[data-lang="ar"] {
    color: var(--clr-gold);
}

.hamburger-btn {
    width: 42px;
    height: 42px;
    background: transparent;
    border: 1.5px solid var(--clr-gold);
    color: var(--clr-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--t-fast) var(--ease);
}

.hamburger-btn svg {
    width: 22px;
    height: 22px;
}

.hamburger-btn:hover {
    background: rgba(240, 178, 24, 0.1);
    transform: scale(1.05);
}

/* ─── RESPONSIVE HEADER ────────────────────────── */
@media (max-width: 992px) {
    .brand-title {
        font-size: 1rem;
    }

    .brand-subtitle {
        font-size: 6.5px;
    }

    .header-logo {
        height: 40px;
    }
}

@media (max-width: 768px) {
    .header-v3 {
        height: 75px;
    }

    .header-container {
        width: 92%;
    }

    .btn-booking {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .brand-title {
        display: none;
        /* Hide long text on mobile, keep logo & subtitle */
    }

    .header-logo {
        height: 100px;
    }

    .brand-subtitle {
        font-size: 6px;
        letter-spacing: 0.25em;
    }

    .header-right {
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .lang-switcher {
        display: none;
        /* Hide side switcher on very small, keep in mobile menu */
    }
}

.mobile-menu-btn {
    display: none;
}

/* ─── MOBILE NAV ─────────────────────────────────── */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #2E231A;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transform: translateY(-100%);
    transition: transform 0.45s var(--ease);
}

.mobile-nav.active {
    transform: translateY(0);
}

.close-menu-btn {
    position: absolute;
    top: 24px;
    right: 28px;
    background: transparent;
    border: none;
    color: var(--clr-gold);
    font-size: 2.2rem;
    cursor: pointer;
}

html[dir="rtl"] .close-menu-btn {
    right: auto;
    left: 28px;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.mobile-link {
    font-family: var(--font-ar);
    font-size: 1.5rem;
    color: #F2E8D9;
    padding: 10px 24px;
    border-radius: 8px;
    transition: all var(--t-fast) var(--ease);
}

.mobile-link:hover {
    color: #D4A373;
    background: rgba(212, 163, 115, 0.1);
}

/* ─── HERO ───────────────────────────────────────── */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    /* Layered background: PNG car (transparent) over rich brown gradient */
    background-image:
        /* Gradient vignette overlay */
        linear-gradient(to bottom,
            rgba(46, 35, 26, 0.70) 0%,
            rgba(46, 35, 26, 0.30) 45%,
            rgba(46, 35, 26, 0.80) 100%),
        /* The transparent PNG hero image */
        url('desktopLogo.png'),
        /* Rich espresso base gradient */
        linear-gradient(135deg,
            #1a0e06 0%,
            #2E231A 40%,
            #4A2810 80%,
            #1a0e06 100%);

    background-repeat: no-repeat, no-repeat, no-repeat;
    background-position: center, center center, center;
    background-size: cover, cover, cover;
    background-attachment: fixed, scroll, fixed;

    padding-top: calc(var(--navbar-h) + 32px);
    padding-bottom: 60px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero {
        background-image:
            /* Gradient vignette overlay */
            linear-gradient(to bottom,
                rgba(46, 35, 26, 0.70) 0%,
                rgba(46, 35, 26, 0.30) 45%,
                rgba(46, 35, 26, 0.80) 100%),
            /* Mobile Logo background */
            url('mobileLogo.jpeg'),
            /* Rich espresso base gradient */
            linear-gradient(135deg,
                #1a0e06 0%,
                #2E231A 40%,
                #4A2810 80%,
                #1a0e06 100%);
        background-attachment: scroll, scroll, scroll;
    }
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 80%,
            rgba(130, 93, 61, 0.25) 0%,
            transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.hero-overlay {
    /* Keep div in HTML but make it invisible — handled by bg layers above */
    display: none;
}


.hero-content {
    position: relative;
    z-index: 5;
    max-width: 1100px;
    padding: 0 24px;
}

.hero-logo {
    height: 120px;
    width: auto;
    margin: 0 auto 36px;
    display: block;
    /* 3D layered depth effect */
    filter:
        drop-shadow(0 1px 1px rgba(196, 154, 108, 0.9)) drop-shadow(0 3px 6px rgba(130, 93, 61, 0.7)) drop-shadow(0 8px 20px rgba(46, 35, 26, 0.6)) drop-shadow(0 18px 40px rgba(46, 35, 26, 0.4)) brightness(1.08) contrast(1.06);
    transform: perspective(800px) translateZ(0px);
    animation:
        heroIn 0.8s var(--ease) 0.2s both,
        logoFloat 6s ease-in-out 1.5s infinite,
        logoPulse 4s ease-in-out 2s infinite;
    transform-origin: center center;
}

@keyframes logoFloat {

    0%,
    100% {
        transform: perspective(800px) translateZ(0px) translateY(0px);
    }

    50% {
        transform: perspective(800px) translateZ(12px) translateY(-8px);
    }
}

@keyframes logoPulse {

    0%,
    100% {
        filter:
            drop-shadow(0 1px 1px rgba(196, 154, 108, 0.9)) drop-shadow(0 3px 6px rgba(130, 93, 61, 0.7)) drop-shadow(0 8px 20px rgba(46, 35, 26, 0.6)) drop-shadow(0 18px 40px rgba(46, 35, 26, 0.4)) brightness(1.08) contrast(1.06);
    }

    50% {
        filter:
            drop-shadow(0 1px 2px rgba(196, 154, 108, 1)) drop-shadow(0 4px 10px rgba(196, 154, 108, 0.8)) drop-shadow(0 10px 30px rgba(130, 93, 61, 0.7)) drop-shadow(0 24px 50px rgba(46, 35, 26, 0.5)) brightness(1.15) contrast(1.1);
    }
}

.hero-title {
    font-family: 'El Messiri', sans-serif;
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
    margin: 0 auto 16px;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    display: inline-block;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    width: auto;
    white-space: normal;
}

/* Word-by-word reveal styles */
.hero-title .word-wrapper {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
}

.hero-title .word-span {
    display: inline-block;
    opacity: 0;
    transform: translateY(1.2em);
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1), opacity 0.8s ease;
}

.hero-title .word-span.active {
    opacity: 1;
    transform: translateY(0);
}

.hero-subsubtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 16px;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ─── TEXT ANIMATIONS ────────────────────────────── */
/* Reveal on scroll */
.reveal {
    opacity: 0;
    transition: opacity 1s var(--ease), transform 1s var(--ease), filter 1s var(--ease);
    will-change: opacity, transform, filter;
}

.reveal.slide-up {
    transform: translateY(60px);
}

.reveal.slide-left {
    transform: translateX(-60px);
}

.reveal.slide-right {
    transform: translateX(60px);
}

.reveal.zoom-in {
    transform: scale(0.85);
}

.reveal.blur-in {
    filter: blur(20px);
    transform: translateY(30px);
}

.reveal.active {
    opacity: 1;
    transform: none;
    filter: blur(0);
}

.reveal.fade-in {
    opacity: 0;
    transform: none;
    transition: opacity 1.5s var(--ease);
}

.reveal.fade-in.active {
    opacity: 1;
}

/* Floating animation for icons */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.feature-icon,
.contact-icon {
    animation: float 4s ease-in-out infinite;
}

/* Staggered children */
.stagger>*:nth-child(1) {
    transition-delay: 0.05s;
}

.stagger>*:nth-child(2) {
    transition-delay: 0.15s;
}

.stagger>*:nth-child(3) {
    transition-delay: 0.25s;
}

.stagger>*:nth-child(4) {
    transition-delay: 0.35s;
}

.stagger>*:nth-child(5) {
    transition-delay: 0.45s;
}

/* Hero animated text */
@keyframes heroIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-logo {
    animation: heroIn 0.8s var(--ease) 0.2s both;
}

/* Removed hero-title from here to avoid conflict with typing animation */

.hero-subtitle {
    animation: heroIn 0.9s var(--ease) 0.6s both;
}

.hero-actions {
    animation: heroIn 0.9s var(--ease) 0.8s both;
}

/* Typing/Shimmer on gold lines */
@keyframes lineExpand {
    from {
        width: 0;
    }

    to {
        width: 56px;
    }
}

.gold-line.animate {
    animation: lineExpand 0.8s var(--ease) forwards;
}

/* ─── SECTION HEADINGS BLOCK ─────────────────────── */
.section-head {
    text-align: center;
    margin-bottom: 56px;
}

.section-head .section-title {
    margin-bottom: 10px;
}

/* ─── WHO WE ARE ─────────────────────────────────── */
.who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

@media (max-width: 768px) {
    .who-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .who-grid>div:first-child {
        color: var(--clr-text);
        background: transparent;
    }
}

.who-img {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4 / 3;
}

.who-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

@media (max-width: 768px) {
    .who-img {
        aspect-ratio: 16 / 9;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .who-img {
        aspect-ratio: 3 / 2;
    }
}

/* ─── FEATURES / GOALS / CARDS ───────────────────── */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.feature-card {
    background: #1A0F08;
    border: 1px solid rgba(212, 163, 115, 0.15);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    backdrop-filter: var(--clr-glass-blur);
    -webkit-backdrop-filter: var(--clr-glass-blur);
    transition: all var(--t-fast) var(--ease);
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: #22150D;
    box-shadow: var(--clr-gold-glow);
}

.feature-card:hover h4 {
    color: var(--clr-gold);
}

i.feature-icon,
.feature-card i.feature-icon {
    font-size: 2.4rem;
    color: var(--clr-gold) !important;
    margin-bottom: 18px;
    display: block;
}

.feature-card h4 {
    font-size: 1.15rem;
    color: #F2E8D9;
    margin-bottom: 12px;
    font-weight: 700;
}

.feature-card p {
    color: rgba(242, 232, 217, 0.85);
    opacity: 0.8;
    font-size: 0.97rem;
}

/* ─── CLIENTS SECTION ICON REFINEMENT ────────────── */
.clients-grid .feature-icon {
    color: #825D3D !important;
    /* Solid Calm Gold */
    font-weight: 900;
    transition: transform 0.3s var(--ease);
}

.clients-grid .feature-card:hover .feature-icon {
    transform: scale(1.05);
    /* Subtle scale on hover */
}

/* ─── SERVICES ───────────────────────────────────── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-item {
    background: #1A0F08;
    border: 1px solid rgba(212, 163, 115, 0.15);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    backdrop-filter: var(--clr-glass-blur);
    -webkit-backdrop-filter: var(--clr-glass-blur);
    transition: all var(--t-med) var(--ease);
}

.service-item:hover {
    background: #22150D;
    box-shadow: 0 8px 32px rgba(212, 163, 115, 0.2);
    transform: translateY(-8px);
    border-color: rgba(212, 163, 115, 0.4);
}

.service-item i {
    color: #bf953f !important;
}

.service-item h3 {
    font-size: 1.15rem;
    color: #F2E8D9;
    text-align: center;
    flex: 1;
}

/* ─── FLEET SHOWROOM ──────────────────────────────── */

/* Controls row: filter + view toggle */
.fleet-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

/* Filter pills */
.filter-btn {
    background: #331E10;
    color: #F2E8D9;
    border: 1.5px solid rgba(212, 163, 115, 0.25);
    padding: 9px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-ar);
    font-size: 0.88rem;
    font-weight: 700;
    white-space: nowrap;
    transition: all var(--t-fast) var(--ease);
    text-shadow: none !important;
}

.filter-btn:hover {
    background: #825D3D;
    color: #F2E8D9 !important;
    border-color: #61442B;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    text-shadow: none !important;
}

.filter-btn.active {
    background: #4A2810;
    color: #F2E8D9 !important;
    border-color: #825D3D;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
    transform: translateY(-1px);
    text-shadow: none !important;
}

/* View toggle buttons */
.view-toggle {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.view-btn-toggle {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid rgba(212, 163, 115, 0.25);
    border-radius: 10px;
    background: #331E10;
    color: #825D3D;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--t-fast) var(--ease);
}

.view-btn-toggle:hover {
    background: #825D3D;
    color: #F2E8D9;
    border-color: #61442B;
}

.view-btn-toggle.active {
    background: linear-gradient(135deg, #825D3D 0%, #4A3320 100%);
    border-color: #61442B;
    color: #1F1209;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* ── CAROUSEL ─────────────────────────────────────── */
.fleet-carousel-wrap {
    position: relative;
    overflow: hidden;
    padding: 8px 60px 56px;
}

.fleet-carousel {
    display: flex;
    gap: 24px;
    transition: transform 0.5s var(--ease);
    will-change: transform;
    cursor: grab;
    user-select: none;
}

.fleet-carousel:active {
    cursor: grabbing;
}

/* Each carousel card takes a fixed width */
.fleet-carousel .showroom-card {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 280px;
}

@media (max-width: 900px) {
    .fleet-carousel .showroom-card {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 600px) {
    .fleet-carousel .showroom-card {
        flex: 0 0 85vw;
    }
}

/* Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #1F1209;
    border: 1px solid rgba(212, 163, 115, 0.4);
    color: #825D3D;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: all var(--t-fast) var(--ease);
}

.carousel-arrow:hover {
    background: var(--clr-deep-gold);
    color: var(--clr-white);
    border-color: var(--clr-deep-gold);
    transform: translateY(-50%) scale(1.08);
}

.carousel-prev {
    right: 8px;
}

.carousel-next {
    left: 8px;
}

html[dir="ltr"] .carousel-prev {
    right: auto;
    left: 8px;
}

html[dir="ltr"] .carousel-next {
    left: auto;
    right: 8px;
}

/* Flip icon glyphs for LTR so arrows point the right way */
html[dir="ltr"] .carousel-prev i {
    transform: scaleX(-1);
    display: inline-block;
}

html[dir="ltr"] .carousel-next i {
    transform: scaleX(-1);
    display: inline-block;
}

@media (max-width: 768px) {
    .carousel-prev {
        right: 4px;
    }

    .carousel-next {
        left: 4px;
    }

    html[dir="ltr"] .carousel-prev {
        right: auto;
        left: 4px;
    }

    html[dir="ltr"] .carousel-next {
        left: auto;
        right: 4px;
    }

    .fleet-carousel-wrap {
        padding: 8px 50px 56px;
    }

    .fleet-carousel {
        padding: 0;
    }
}

/* Dots */
.carousel-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(212, 163, 115, 0.3);
    cursor: pointer;
    transition: all var(--t-fast);
    border: none;
    padding: 0;
}

.carousel-dot.active {
    background: var(--clr-gold);
    width: 24px;
    border-radius: 4px;
}

/* ── FLEET GRID ───────────────────────────────────── */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}

/* SHOWROOM CARD */
.showroom-card {
    background: #1A0F08;
    border: 1px solid rgba(212, 163, 115, 0.15);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    transition: all var(--t-med) var(--ease);
    position: relative;
}

.showroom-card:hover {
    background: #22150D;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
    transform: translateY(-12px);
    border-color: rgba(212, 163, 115, 0.3);
}

/* Image area */
.fleet-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.showroom-card:hover .fleet-img {
    transform: scale(1.08);
    /* slight smooth image movement on hover */
}

.fleet-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(46, 35, 26, 0.7) 0%,
            rgba(46, 35, 26, 0.2) 50%,
            transparent 100%);
    z-index: 1;
}

/* Category badge */
.fleet-cat-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    background: #825D3D;
    color: #F2E8D9;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

html[dir="ltr"] .fleet-cat-badge {
    right: auto;
    left: 14px;
}

/* Hover overlay */
.showroom-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(138, 109, 59, 0.6);
    backdrop-filter: blur(3px);
    opacity: 0;
    transition: opacity var(--t-fast) var(--ease);
}

.showroom-card:hover .showroom-overlay {
    opacity: 1;
}

.view-btn {
    background: var(--clr-gold);
    color: var(--clr-white);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    transform: translateY(16px);
    transition: transform var(--t-fast) var(--ease);
    display: flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    font-family: var(--font-ar);
}

.showroom-card:hover .view-btn {
    transform: translateY(0);
}

/* Info area */
.showroom-info {
    padding: 20px 22px 18px;
    border-top: 1px solid var(--clr-gold-soft);
}

.fleet-name {
    font-size: 1.1rem;
    color: #F2E8D9;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: none !important;
}

.showroom-specs {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.showroom-specs span {
    font-size: 0.82rem;
    color: rgba(242, 232, 217, 0.85);
    display: flex;
    align-items: center;
    gap: 5px;
    text-shadow: none !important;
}

.showroom-specs i {
    color: var(--clr-gold);
}

/* ─── MODAL ───────────────────────────────────────── */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(10, 15, 40, 0.78);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t-fast) var(--ease);
    backdrop-filter: blur(8px);
    padding: 20px;
}

.modal.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: #331E10;
    border: 1px solid rgba(212, 163, 115, 0.2);
    width: 100%;
    max-width: 860px;
    max-height: 90vh;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    transform: translateY(32px) scale(0.95);
    transition: transform 0.4s var(--ease);
    display: flex;
    flex-direction: column;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.3);
    margin: auto;
}

.modal.active .modal-content {
    transform: translateY(0) scale(1);
}

@media (min-width: 700px) {
    .modal-content {
        flex-direction: row;
        height: 560px;
        max-height: 90vh;
    }
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--clr-gold);
    border: none;
    color: var(--clr-white);
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--t-fast);
}

.modal-close:hover {
    background: var(--clr-gold-d);
}

html[dir="rtl"] .modal-close {
    right: auto;
    left: 14px;
}

.modal-img-container {
    width: 100%;
    height: 240px;
    position: relative;
    background: var(--clr-off);
}

@media (min-width: 700px) {
    .modal-img-container {
        width: 50%;
        height: 100%;
    }
}

.modalSwiper {
    width: 100%;
    height: 100%;
}

.modalSwiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--clr-gold-d);
}

.modalSwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modalSwiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.6);
    opacity: 1;
}

.modalSwiper .swiper-pagination-bullet-active {
    background: var(--clr-gold);
}

.modalSwiper .swiper-button-next,
.modalSwiper .swiper-button-prev {
    color: var(--clr-gold);
    transform: scale(0.65);
    background: rgba(10, 15, 40, 0.4);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    backdrop-filter: blur(4px);
}

.modalSwiper .swiper-button-next:after,
.modalSwiper .swiper-button-prev:after {
    font-weight: 900;
}

.modal-info {
    padding: 28px 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex: 1;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--clr-border) transparent;
}

.modal-category {
    color: #825D3D;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.modal-title {
    font-size: 1.8rem;
    color: var(--clr-deep-gold);
    margin-bottom: 16px;
}


.modal-desc {
    color: rgba(242, 232, 217, 0.85);
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* ─── MODAL PRICING TABLE ──────────────────────────── */
.modal-pricing-section {
    margin-bottom: 20px;
}

.pricing-title {
    font-size: 1.1rem;
    color: var(--clr-deep-gold);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-title i {
    color: var(--clr-gold);
}

.modal-pricing {
    border: 1px solid rgba(212, 163, 115, 0.2);
    border-radius: 12px;
    overflow: hidden;
    background: #2E1A0D;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    border-bottom: 1px solid var(--clr-gold-soft);
    font-size: 0.9rem;
    transition: background var(--t-fast);
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-row:nth-child(odd) {
    background: rgba(0, 0, 0, 0.2);
}

.pricing-row:nth-child(even) {
    background: transparent;
}

.pricing-row--extra {
    background: rgba(212, 163, 115, 0.1) !important;
}

.pricing-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--clr-text);
    font-weight: 500;
}

.pricing-label i {
    color: #825D3D;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.pricing-row--extra .pricing-label i {
    color: var(--clr-gold);
}

.pricing-value {
    font-weight: 700;
    color: var(--clr-deep-gold);
    font-size: 0.95rem;
    white-space: nowrap;
}

.pricing-row--extra .pricing-value {
    color: #F2E8D9;
}

/* ─── REQUEST QUOTE BUTTON (modal) ─────────────────── */
.modal-quote-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 13px 20px;
    background: var(--grad-gold);
    color: #F2E8D9;
    font-family: var(--font-ar);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 12px;
    text-decoration: none;
    transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
    box-shadow: 0 4px 16px rgba(197, 160, 89, 0.35);
    margin-bottom: 10px;
}

.modal-quote-btn i {
    font-size: 1.1rem;
}

.modal-quote-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(197, 160, 89, 0.5);
    color: #fff;
}

/* ─── WHATSAPP BUTTON ───────────────────────────────── */
.modal-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 13px 20px;
    background: #25D366;
    color: #F2E8D9;
    font-family: var(--font-ar);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all var(--t-fast) var(--ease);
    box-shadow: none;
    /* Removed glow */
}

.modal-whatsapp-btn:hover {
    transform: translateY(-2px);
    background: #20BD5A;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    color: #fff;
}

/* ─── FIXED FLOATING WHATSAPP BUTTON ──────────────────── */
.whatsapp-fixed {
    position: fixed;
    bottom: 28px;
    left: 28px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #F2E8D9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    z-index: 9000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    /* Very subtle shadow, no glow */
    transition: all var(--t-fast) var(--ease);
    text-decoration: none;
}

html[dir="rtl"] .whatsapp-fixed {
    left: auto;
    right: 28px;
}

.whatsapp-fixed:hover {
    transform: scale(1.1) rotate(5deg);
    background: #20BD5A;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    color: #fff;
}

/* ─── CLIENTS ────────────────────────────────────── */
.client-category {
    margin-bottom: 48px;
}

.client-category h3 {
    font-size: 1.3rem;
    color: var(--clr-gold);
    margin-bottom: 24px;
    text-align: center;
}

.client-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin: 0 auto;
    padding: 0;
    max-width: 100%;
    /* Resetting direction allows pure visual centering if RTL margins mess up Flexbox on mobile */
    direction: ltr;
}

/* We still want the logo content and hover text inside to be in normal flow if any, but since it's just images it won't be affected */
.client-logo-box {
    direction: rtl;
    /* revert inside so text tooltips or spans run properly if existed */
    width: 180px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    transition: all var(--t-fast) var(--ease);
}

@media (max-width: 600px) {
    .client-logos {
        justify-content: center;
        gap: 12px;
    }
}

.client-logo-box:hover {
    border-color: var(--clr-gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.client-logo-box span {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--clr-muted);
    text-align: center;
    line-height: 1.4;
}

.client-logo-box:hover span {
    color: #F2E8D9;
}

.client-logo-box.circular-logo {
    width: 170px;
    height: 90px;
    padding: 12px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--clr-gold-soft);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all var(--t-fast) var(--ease);
}

.client-logo-box.circular-logo:hover {
    background: #331E10;
    border-color: #825D3D;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transform: translateY(-5px);
}

.client-logo-box.circular-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

.client-logo-box.circular-logo img.square-logo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

/* ── Name overlay on hover / tap ── */
.client-logo-box.circular-logo::after {
    content: attr(title);
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    background: linear-gradient(135deg,
            rgba(31, 18, 9, 0.92) 0%,
            rgba(107, 63, 31, 0.95) 100%);
    color: #F2E8D9;
    font-family: var(--font-ar);
    font-size: 0.78rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.4;
    border-radius: 12px;
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.28s ease, transform 0.28s ease;
    pointer-events: none;
}

.client-logo-box.circular-logo:hover::after,
.client-logo-box.circular-logo.name-active::after {
    opacity: 1;
    transform: scale(1);
}

.client-logo-box.circular-logo:hover img,
.client-logo-box.circular-logo.name-active img {
    transform: scale(1.12);
    opacity: 0.25;
}

/* ─── PHILOSOPHY ─────────────────────────────────── */
.philosophy-box {
    background: #1A0F08;
    border: 1px solid rgba(212, 163, 115, 0.15);
    border-radius: 20px;
    padding: 64px 48px;
    text-align: center;
    backdrop-filter: var(--clr-glass-blur);
    -webkit-backdrop-filter: var(--clr-glass-blur);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.philosophy-box::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(120px, 25vw, 220px);
    color: rgba(255, 255, 255, 0.04);
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
    overflow: hidden;
    max-width: 100%;
}

.philosophy-box h2 {
    color: var(--clr-deep-gold);
    font-size: 2rem;
    margin-bottom: 20px;
}

.philosophy-box .gold-line {
    background: var(--grad-gold);
}

.philosophy-box p {
    color: rgba(242, 232, 217, 0.9);
    opacity: 0.85;
    font-size: 1.15rem;
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.9;
}

/* ─── CONTACT ────────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(212, 163, 115, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-gold);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    color: #F2E8D9;
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-item p {
    color: #F2E8D9;
    font-size: 0.95rem;
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    height: 360px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--clr-border);
}

/* ─── FOOTER ─────────────────────────────────────── */
.footer {
    background: #0d0703;
    padding: 64px 0 0;
    color: rgba(242, 232, 217, 0.85);
    border-top: 1px solid rgba(212, 163, 115, 0.2);
}

.footer-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
    margin-bottom: 48px;
}

.footer-brand img {
    height: 56px;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 0.95rem;
    max-width: 300px;
    color: rgba(242, 232, 217, 0.8);
}

.footer-social h4 {
    color: #825D3D;
    font-size: 1rem;
    margin-bottom: 16px;
}

.social-icons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.social-icons a {
    width: 42px;
    height: 42px;
    background: rgba(138, 109, 59, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-deep-gold);
    font-size: 1rem;
    transition: all var(--t-fast);
    border: 1px solid var(--clr-gold-soft);
}

.social-icons a:hover {
    background: var(--clr-gold);
    border-color: var(--clr-gold);
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(242, 232, 217, 0.1);
    text-align: center;
    padding: 22px 0;
    font-size: 0.88rem;
    color: rgba(242, 232, 217, 0.6);
}

/* ─── RESPONSIVE ─────────────────────────────────────────
   1150px → tablet landscape  (collapse nav)
    900px → tablet portrait
    768px → small tablet / large mobile
    520px → mobile
    380px → small mobile
   1400px → wide screen bonus
──────────────────────────────────────────────────────── */

/* ── 1150px ──────────────────────────────────────────── */
@media (max-width: 1150px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-title {
        font-size: clamp(2rem, 5vw, 3.5rem);
    }

    .nav-container {
        overflow: visible;
    }
}

/* ── 900px ───────────────────────────────────────────── */
@media (max-width: 900px) {
    .section {
        padding: 64px 0;
    }

    .who-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .philosophy-box {
        padding: 48px 32px;
    }

    .footer-grid {
        flex-direction: column;
        gap: 32px;
    }
}

/* ── 768px ───────────────────────────────────────────── */
@media (max-width: 768px) {
    :root {
        --navbar-h: 68px;
    }

    .logo img {
        height: 44px;
    }

    .container {
        width: 92%;
    }

    /* Hero – disable parallax on iOS */
    .hero {
        background-attachment: scroll;
    }

    .hero-logo {
        height: 100px;
        margin-bottom: 24px;
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 3.8rem);
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 28px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    /* General */
    .section {
        padding: 52px 0;
    }

    .section-title {
        font-size: 1.65rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 32px;
    }

    .section-head {
        margin-bottom: 36px;
    }

    /* Cards */
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-card {
        padding: 28px 20px;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .service-item {
        padding: 18px 16px;
    }

    /* Fleet: single column + horizontally scrollable filters */
    .fleet-controls {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .fleet-filter {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 8px;
        padding-bottom: 6px;
        min-width: 0;
        width: 100%;
    }

    .fleet-filter::-webkit-scrollbar {
        display: none;
    }

    .view-toggle {
        justify-content: flex-end;
    }

    .fleet-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .fleet-img {
        height: 220px;
    }

    .filter-btn {
        flex-shrink: 0;
        padding: 9px 18px;
        font-size: 0.85rem;
        white-space: nowrap;
    }

    /* Image */
    .who-img {
        aspect-ratio: 16 / 9;
    }

    /* Modal – slide up from bottom */
    .modal {
        padding: 0;
        align-items: flex-end;
    }

    .modal-content {
        flex-direction: column;
        border-radius: 20px 20px 0 0;
        max-width: 100%;
        height: auto;
        max-height: 92vh;
        overflow-y: auto;
    }

    .modal-img {
        width: 100%;
        height: 220px;
    }

    .modal-info {
        padding: 24px 20px 32px;
    }

    .modal-title {
        font-size: 1.4rem;
    }

    /* Clients */
    .client-logo-box {
        width: 150px;
        height: 68px;
    }

    /* Philosophy */
    .philosophy-box {
        padding: 36px 20px;
        border-radius: 16px;
    }

    .philosophy-box h2 {
        font-size: 1.6rem;
    }

    .philosophy-box p {
        font-size: 1rem;
    }

    /* Contact */
    .contact-icon {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    .map-container {
        height: 280px;
        border-radius: 12px;
    }

    /* Footer */
    .footer {
        padding: 48px 0 0;
    }

    .footer-brand img {
        height: 48px;
    }
}

/* ── 520px ───────────────────────────────────────────── */
@media (max-width: 520px) {
    .hero-logo {
        height: 58px;
    }

    .hero-title {
        font-size: 50px;
    }

    .lang-toggle {
        padding: 6px 12px;
        font-size: 0.78rem;
    }

    .feature-icon {
        font-size: 2rem;
    }

    .fleet-name {
        font-size: 1rem;
    }

    .showroom-specs {
        gap: 10px;
    }

    .showroom-specs span {
        font-size: 0.75rem;
    }

    /* Client logos: 2-column grid */
    .client-logos {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .client-logo-box {
        width: 100%;
        height: 68px;
    }

    /* Contact */
    .contact-item {
        gap: 12px;
    }

    .contact-item h4 {
        font-size: 0.92rem;
    }
}

/* ── 380px ───────────────────────────────────────────── */
@media (max-width: 380px) {
    .hero-logo {
        height: 50px;
    }

    .hero-title {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .container {
        width: 94%;
    }

    .filter-btn {
        padding: 8px 14px;
        font-size: 0.79rem;
    }

    .fleet-img {
        height: 190px;
    }

    .mobile-link {
        font-size: 1.3rem;
    }
}

/* ── 1400px+ wide screens ────────────────────────────── */
@media (min-width: 1400px) {
    .container {
        max-width: 1300px;
    }

    .fleet-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ─── LIGHTBOX (Fullscreen Viewer) ───────────────── */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.96);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

/* Toolbar */
.lightbox-toolbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
    z-index: 10;
}

.lb-btn {
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #F2E8D9;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
    backdrop-filter: blur(6px);
}

.lb-btn:hover {
    background: var(--clr-gold);
    transform: scale(1.1);
}

.lb-close {
    margin-left: auto;
    background: rgba(220, 50, 50, 0.3);
}

.lb-close:hover {
    background: #dc3232;
}

.lb-counter {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-family: var(--font-en);
    margin-right: auto;
    padding: 0 8px;
}

/* Stage (image area) */
.lightbox-stage {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: grab;
}

.lightbox-stage:active {
    cursor: grabbing;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 48px rgba(0, 0, 0, 0.7);
    transform-origin: center center;
    transition: transform 0.25s ease, opacity 0.25s ease;
    user-select: none;
    -webkit-user-drag: none;
}

.lightbox-img.lb-loading {
    opacity: 0;
}

/* Arrows */
.lb-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.12);
    border: none;
    border-radius: 50%;
    color: var(--clr-gold);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
    backdrop-filter: blur(6px);
}

.lb-arrow:hover {
    background: var(--clr-gold);
}

.lb-prev {
    right: 20px;
}

.lb-next {
    left: 20px;
}

html[dir="ltr"] .lb-prev {
    right: auto;
    left: 20px;
}

html[dir="ltr"] .lb-next {
    left: auto;
    right: 20px;
}

/* Swiper slides clickable cursor */
.modalSwiper .swiper-slide img {
    cursor: zoom-in;
}

@media (max-width: 600px) {
    .lb-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .lb-prev {
        right: 8px;
    }

    .lb-next {
        left: 8px;
    }

    html[dir="ltr"] .lb-prev {
        right: auto;
        left: 8px;
    }

    html[dir="ltr"] .lb-next {
        left: auto;
        right: 8px;
    }
}

/* Glowing Gold Section Divider */
.section-divider {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(212, 163, 115, 0.5) 50%, transparent 100%);
    position: relative;
    margin: 1.5rem 0;
    /* Spacing above and below the line */
}

.section-divider::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: #fcf6ba;
    filter: blur(4px);
    opacity: 0.6;
}

/* ─── GLOBAL ICON UNIFICATION ────────────────────── */
/* Change all icons to specific gold (#bf953f), excluding WhatsApp */
i[class^="fa-"]:not(.fa-whatsapp),
i[class*=" fa-"]:not(.fa-whatsapp),
.feature-icon,
.contact-icon,
.service-item i,
.showroom-specs i,
.social-icons i,
.pricing-label i,
.pricing-title i,
.contact-icon i,
.view-btn i,
.modal-close i,
.lb-btn i,
.lb-arrow i,
.carousel-arrow i {
    color: #bf953f !important;
    transition: transform 0.3s ease, color 0.3s ease !important;
    display: inline-block;
    /* Ensure transform works */
}

/* SVG Icons unification (excluding WhatsApp) */
svg:not(.fa-whatsapp):not([class*="whatsapp"]) path,
svg:not(.fa-whatsapp):not([class*="whatsapp"]) circle,
svg:not(.fa-whatsapp):not([class*="whatsapp"]) rect {
    transition: all 0.3s ease !important;
}

/* Targeting SVG strokes and fills globally for icons */
.hamburger-btn svg path {
    stroke: #bf953f !important;
}

/* Simple Hover Improvement: Subtle Scale */
i[class^="fa-"]:not(.fa-whatsapp):hover,
i[class*=" fa-"]:not(.fa-whatsapp):hover,
.feature-card:hover .feature-icon,
.contact-item:hover .contact-icon,
.service-item:hover i,
.social-icons a:hover i,
.carousel-arrow:hover i,
.view-btn-toggle:hover i {
    transform: scale(1.15) !important;
}