:root {
    --navy-blue: #1b2a3b;
    --dark-navy: #0d1821;
    --mid-navy: #243447;
    --gold: #c8a96e;
    --gold-light: #dfc28e;
    --gold-dark: #a8893e;
    --cream: #f8f4ec;
    --cream-dark: #efe9dc;
    --white: #ffffff;
    --text-dark: #1e2d3d;
    --text-mid: #4a5568;
    --text-light: #718096;
    --transition: all 0.3s ease;
    --light-bg: #f5f1e9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ─── NAVBAR ─── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 252, 246, 0.97);
    backdrop-filter: blur(12px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(27, 42, 59, 0.08);
    border-bottom: 1px solid rgba(200, 169, 110, 0.15);
    transition: var(--transition);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gold);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold-dark);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--navy-blue);
    transition: var(--transition);
    border-radius: 2px;
}

.btn-nav.active {
    background: var(--gold);
    color: white !important;
    box-shadow: 0 4px 12px rgba(200, 169, 110, 0.3);
}

.btn-nav.active:hover {
    background: var(--gold-dark);
}

@media (max-width: 768px) {
    .nav-menu a.active::after {
        display: none;
    }
    .nav-menu a.active {
        background: rgba(200, 169, 110, 0.1);
        border-left: 3px solid var(--gold);
        padding-left: 1rem;
    }
}

/* ─── HERO SECTION ─── */
.hero {
    position: relative;
    height: 690px;
    overflow: hidden;
    margin-top: 70px;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    letter-spacing: 0.02em;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: backwards;
    opacity: 0.92;
    text-shadow: 0 1px 10px rgba(0,0,0,0.2);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: backwards;
}

/* ─── BUTTONS ─── */
.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.03em;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(168, 137, 62, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(168, 137, 62, 0.5);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.8);
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    background: white;
    color: var(--navy-blue);
    border-color: white;
    transform: translateY(-2px);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(168, 137, 62, 0.3);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(168, 137, 62, 0.45);
}

.btn-dark {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--dark-navy) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(13, 24, 33, 0.3);
}

.btn-dark:hover {
    background: linear-gradient(135deg, var(--mid-navy) 0%, var(--navy-blue) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 24, 33, 0.4);
}

/* ─── HERO DOTS & ARROWS ─── */
.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.6);
}

.dot.active {
    background: var(--gold);
    width: 30px;
    border-radius: 6px;
    border-color: var(--gold);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
    font-size: 3rem;
    width: 50px;
    height: 50px;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.hero-arrow:hover {
    background: rgba(200, 169, 110, 0.75);
    border-color: var(--gold);
}

.hero-arrow-left { left: 20px; }
.hero-arrow-right { right: 20px; }

/* ─── ANIMATIONS ─── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ─── ABOUT SECTION ─── */
.about {
    padding: 80px 0;
    background: var(--white);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.about-description {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-gray);
    text-align: justify;
}
.image-stack {
    position: relative;
    height: 400px;
}
.stack-img {
    position: absolute;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    object-fit: cover;
}
.img-1 { width: 75%; height: 85%; top: 0; left: 0; z-index: 1; }
.img-2 { width: 75%; height: 85%; bottom: 0; right: 0; z-index: 2; border: 6px solid var(--white); }


/* ─── MARKET TRUST SECTION ─── */
.market-trust {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.market-trust::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.market-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.market-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--navy-blue);
    position: relative;
}

.market-text h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin-top: 12px;
    border-radius: 2px;
}

.market-text p {
    margin-bottom: 1rem;
    color: var(--text-mid);
    line-height: 1.85;
}

.link-arrow {
    color: var(--gold-dark);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    margin-top: 1rem;
    letter-spacing: 0.02em;
}

.link-arrow:hover {
    transform: translateX(5px);
    color: var(--gold);
}

.market-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.market-image-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: var(--transition);
}

.market-image-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(27, 42, 59, 0.2);
}

.market-image-grid img:first-child {
    grid-row: span 2;
    height: 100%;
}

.highlight{
    color: var(--gold);
}

/* ─── SECTION ─── */
.products-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    position: relative;
    overflow: hidden;
}

/* Top gold accent line */
.products-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Subtle watermark pattern */
.products-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(200,169,110,0.06) 1px, transparent 1px);
    background-size: 36px 36px;
    pointer-events: none;
}

/* ─── SECTION HEADER ─── */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-eyebrow {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold-dark);
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--navy-blue);
    line-height: 1.25;
    margin-bottom: 0;
}

/* Gold underline divider */
.gold-divider {
    width: 64px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
    margin: 18px auto 24px;
}

.section-subtitle {
    max-width: 680px;
    margin: 0 auto;
    color: var(--text-mid);
    font-size: 1.02rem;
    line-height: 1.85;
}

.section-label{
    color: var(--gold-dark);
}

/* ─── CAROUSEL OUTER ─── */
.carousel-outer {
    position: relative;
    z-index: 1;
}

/* ─── CAROUSEL TRACK WRAPPER ─── */
.carousel-track-wrapper {
    overflow: hidden;
    border-radius: 14px;
    box-shadow:
        0 4px 6px rgba(27,42,59,0.04),
        0 20px 50px rgba(27,42,59,0.14);
}

.carousel-track {
    display: flex;
     direction: ltr;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    cursor: grab;
}

.carousel-track:active { cursor: grabbing; }

/* ─── INDIVIDUAL SLIDE ─── */
.carousel-slide {
    min-width: 100%;
    position: relative;
    overflow: hidden;
}

.carousel-slide img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.carousel-slide:hover img {
    transform: scale(1.04);
}

/* Gradient overlay */
.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(13, 24, 33, 0.88) 0%,
        rgba(13, 24, 33, 0.35) 55%,
        transparent 100%
    );
    display: flex;
    align-items: flex-end;
}

/* Slide text content */
.slide-content {
    padding: 40px 40px 36px;
    color: var(--white);
}

.slide-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold-light);
    border: 1px solid rgba(200,169,110,0.45);
    border-radius: 50px;
    padding: 4px 14px;
    margin-bottom: 12px;
    backdrop-filter: blur(4px);
    background: rgba(200,169,110,0.08);
}

.slide-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.3;
}

.slide-content p {
    font-size: 0.97rem;
    color: rgba(248,244,236,0.82);
    margin-bottom: 20px;
    max-width: 480px;
}

/* Slide CTA button */
.slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 11px 28px;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 4px 14px rgba(168,137,62,0.38);
}

.slide-btn:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(168,137,62,0.5);
    gap: 12px;
}

.slide-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.slide-btn:hover i { transform: translateX(3px); }

/* ─── GOLD CORNER FRAME ─── */
.card-frame {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 5;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.carousel-slide:hover .card-frame { opacity: 1; }

.frame-corner {
    position: absolute;
    width: 44px;
    height: 44px;
    border: 2.5px solid var(--gold-light);
}

.frame-corner.tl { top: 18px; left: 18px; border-right: none; border-bottom: none; }
.frame-corner.tr { top: 18px; right: 18px; border-left: none; border-bottom: none; }
.frame-corner.bl { bottom: 18px; left: 18px; border-right: none; border-top: none; }
.frame-corner.br { bottom: 18px; right: 18px; border-left: none; border-top: none; }

/* ─── NAV BUTTONS ─── */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255,252,246,0.92);
    border: 1px solid rgba(200,169,110,0.35);
    color: var(--navy-blue);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: var(--transition);
    box-shadow: 0 4px 18px rgba(27,42,59,0.12);
    backdrop-filter: blur(6px);
}

.carousel-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 8px 26px rgba(200,169,110,0.45);
}

.carousel-btn:active { transform: translateY(-50%) scale(0.96); }

.carousel-prev { left: -26px; }
.carousel-next { right: -26px; }

/* ─── DOT INDICATORS ─── */
.carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 32px;
    position: relative;
    z-index: 1;
}

.carousel-dots .dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: none;
    background: rgba(27,42,59,0.2);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.carousel-dots .dot:hover {
    background: var(--gold-dark);
    transform: scale(1.25);
}

.carousel-dots .dot.active {
    background: var(--gold);
    width: 32px;
    border-radius: 6px;
}


/* ─── STATISTICS SECTION ─── */
.statistics {
    position: relative;
    padding: 100px 0;
    background-image: url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?w=1600');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.statistics-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(
        160deg,
        rgba(13, 24, 33, 0.93) 0%,
        rgba(27, 42, 59, 0.88) 50%,
        rgba(13, 24, 33, 0.93) 100%
    );
}

.statistics .container {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.stats-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--cream);
    line-height: 1.4;
}

.stats-subtitle {
    max-width: 800px;
    margin: 0 auto 3rem;
    color: rgba(248, 244, 236, 0.78);
    line-height: 1.85;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.stat-item {
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(200, 169, 110, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(4px);
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(200, 169, 110, 0.08);
    border-color: rgba(200, 169, 110, 0.4);
    transform: translateY(-4px);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.05rem;
    color: rgba(248, 244, 236, 0.8);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.85rem;
}


/* ─── SERVICES SECTION ─── */
.services-parallax {
    position: relative;
    padding: 120px 0;
    background-image: url('https://image.qwenlm.ai/public_source/8d2eb382-05b7-4363-9df2-671bb543d7d9/1c422536e-1a2e-425c-924d-15706c6dc976.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.services-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 1;
}

.services-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    color: #ffffff;
}
.services-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 400;
    font-style: italic;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: 1px;
}

.services-text {
    font-family: 'Lato', sans-serif;
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.services-text:last-child {
    margin-bottom: 2.5rem;
}

.btn-services {
    display: inline-block;
    padding: 16px 40px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;transition: all 0.4s ease;
    background: transparent;
    cursor: pointer;
}

.btn-services:hover {
    background: #ffffff;
    color: #1a1a1a;
    border-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
/* ══════════════════════════════
   STATISTICS BANNER — dark navy
   ══════════════════════════════ */
.statistics-banner {
    position: relative;
    padding: 100px 0;
    background-image: url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?w=1600');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.stats-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(
        160deg,
        rgba(13, 24, 33, 0.93) 0%,
        rgba(27, 42, 59, 0.88) 50%,
        rgba(13, 24, 33, 0.93) 100%
    );
}

.stats-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.stats-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto; margin-right: auto;
    color: var(--cream);
    line-height: 1.4;
}

.stats-content > p {
    max-width: 700px;
    margin: 0 auto 3rem;
    color: rgba(248, 244, 236, 0.78);
    font-size: 1.05rem;
    line-height: 1.85;
}

.stats-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem 2.5rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(200, 169, 110, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(4px);
    transition: var(--transition);
    min-width: 160px;
}

.stat-item:hover {
    background: rgba(200, 169, 110, 0.08);
    border-color: rgba(200, 169, 110, 0.4);
    transform: translateY(-5px);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 4rem; font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 0.5rem; display: block;
}

.stat-divider {
    width: 40px; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 1rem auto;
    border-radius: 2px;
}

.stat-label {
    font-size: 0.88rem;
    color: rgba(248, 244, 236, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}



/* ─── CLIENTS GRID ─── */
.clients-grid {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    position: relative;
}

.clients-grid::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.grid-header {
    text-align: center;
    margin-bottom: 55px;
}

.grid-eyebrow {
    font-size: 0.85rem;
    color: var(--gold-dark);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: 600;
}

.grid-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--navy-blue);
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
    
}

.logo-card {
    background: var(--white);
    padding: 28px 18px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    box-shadow: 0 2px 12px rgba(27, 42, 59, 0.06);
    transition: var(--transition);
    border: 1px solid rgba(200, 169, 110, 0.1);
}

.logo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 28px rgba(27, 42, 59, 0.13);
    border-color: rgba(200, 169, 110, 0.3);
    background: white;
}

.logo-card img {
    max-width: 100%;
    max-height: 55px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: var(--transition);
}

.logo-card:hover img {
    opacity: 1;
    filter: grayscale(0%);
}

/* ─── TESTIMONIALS ─── */
.testimonials { padding: 0; }

.testimonial-split { display: grid; grid-template-columns: 1fr 1fr; }

.testimonial-img { height: 750px; background-size: cover; background-position: center; }

.testimonial-content {
    background: var(--navy-blue);
    color: var(--white);
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-content h3 { color: var(--white); font-size: 2.5rem; margin-bottom: 40px; text-align: center; }

.quote-box {
    border: 2px solid var(--primary-gold);
    border-radius: 20px;
    padding: 40px;
    background: rgba(255,255,255,0.05);
}

.quote-box i { color: var(--primary-gold); font-size: 2rem; margin-bottom: 20px; }

.quote-text { font-style: italic; font-size: 1.1rem; margin-bottom: 20px; line-height: 1.8; }

.quote-author {
    color: var(--primary-gold);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.stars { color: var(--primary-gold); margin-top: 15px; }
.stars i { margin-right: 3px; }


/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .testimonials {
        padding: 80px 0;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .testimonial-image img {
        height: 320px;
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 60px 0;
    }

    .testimonial-image img {
        height: 260px;
    }

    .testimonial-card {
        padding: 2rem 1.75rem 1.75rem;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        padding: 1.75rem 1.25rem 1.5rem;
    }

    .testimonial-text {
        font-size: 0.92rem;
    }
}

/* ─── PARTNERSHIP SECTION ─── */
.partnership {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.partnership::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.partnership-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.partnership-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--navy-blue);
    margin-bottom: 1.5rem;
    position: relative;
}

.partnership-content h2::after {
    content: '';
    display: block;
    width: 55px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin-top: 12px;
    border-radius: 2px;
}

.partnership-content p {
    color: var(--text-mid);
    line-height: 1.85;
    margin-bottom: 1rem;
}

.partnership-benefits {
    list-style: none;
    margin: 2rem 0;
}

.partnership-benefits li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    font-weight: 500;
    border-bottom: 1px solid rgba(200, 169, 110, 0.12);
}

.partnership-benefits li:last-child {
    border-bottom: none;
}

.partnership-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 15px 45px rgba(27, 42, 59, 0.18);
}

/* ─── CONTACT SECTION ─── */
.contact {
    padding: 100px 0;
    background: linear-gradient(160deg, var(--navy-blue) 0%, var(--dark-navy) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200, 169, 110, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.contact-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 1;
}

.contact-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--cream);
}

.contact-header p {
    color: rgba(248, 244, 236, 0.75);
    line-height: 1.8;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem 1.5rem;
    border: 1px solid rgba(200, 169, 110, 0.25);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.06);
    color: var(--cream);
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(248, 244, 236, 0.45);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200, 169, 110, 0.12);
}

.contact-form textarea {
    border-radius: 8px;
    resize: vertical;
    min-height: 150px;
}

.btn-submit {
    width: 100%;
    border-radius: 8px;
    font-size: 1.05rem;
    letter-spacing: 0.05em;
}

/* ─── FOOTER ─── */
.footer {
    background: var(--dark-navy);
    color: white;
    padding: 70px 0 24px;
    border-top: 1px solid rgba(200, 169, 110, 0.15);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-description {
    color: rgba(248, 244, 236, 0.6);
    line-height: 1.85;
    font-size: 0.95rem;
}

.footer-col h4 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--gold-light);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.footer-col ul { list-style: none; }

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: rgba(248, 244, 236, 0.65);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--gold-light);
    padding-left: 4px;
}

.footer-col ul li i {
    margin-right: 8px;
    width: 16px;
    text-align: center;
    color: var(--gold);
}

.footer-col ul li a:hover i {
    color: var(--gold-light);
}

.footer-col ul li span {
    color: rgba(248, 244, 236, 0.65);
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-col ul li span:hover {
    color: var(--gold-light);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(248, 244, 236, 0.7);
    transition: var(--transition);
    border: 1px solid rgba(200, 169, 110, 0.15);
}

.social-links a:hover {
    background: var(--gold);
    color: white;
    transform: translateY(-3px);
    border-color: var(--gold);
    box-shadow: 0 6px 18px rgba(168, 137, 62, 0.35);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    color: rgba(248, 244, 236, 0.4);
    font-size: 0.9rem;
}

/* ─── SCROLL TO TOP ─── */
.scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(168, 137, 62, 0.35);
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--mid-navy) 100%);
    transform: translateY(-5px);
    box-shadow: 0 8px 22px rgba(27, 42, 59, 0.35);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .serve-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
}

@media (max-width: 768px) {
    .serve-header-section h2 { font-size: 2.2rem; }
    .serve-grid { grid-template-columns: 1fr; gap: 2rem; }

    .hamburger { display: flex; }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 50px;
        flex-direction: column;
        background: var(--cream);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.08);
        padding: 2rem 0;
    }

    .nav-menu.active { left: 0; }

    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-buttons { flex-direction: column; width: 100%; max-width: 300px; }
    .section-title { font-size: 2rem; }
    .section-title-large { font-size: 2.5rem; }
    .market-image-grid { grid-template-columns: 1fr; }
    .market-image-grid img:first-child { grid-row: span 1; }
    .products-carousel-wrapper { padding: 0 20px; }
    .product-card { min-width: 250px; }
    .logos-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .hero-arrow { width: 40px; height: 40px; font-size: 2rem; }
    .carousel-arrow { width: 35px; height: 35px; font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .btn { padding: 0.75rem 1.5rem; font-size: 0.9rem; }
    .logos-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-number { font-size: 2.5rem; }
    .how-we-serve-clients { padding: 60px 0; }
    .serve-header-section h2 { font-size: 1.8rem; }
    .serve-header-section p { font-size: 0.95rem; }
}

/* ─── WHATSAPP BUTTON ─── */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #1da851 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* ─── LANGUAGE SWITCHER ─── */
.lang-link {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark) !important;
}

.flag-icon {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.lang-link:hover { color: var(--gold-dark) !important; }

/* ─── RTL SUPPORT ─── */
body.rtl { direction: rtl; }
body.rtl .nav-menu { direction: rtl; }
body.rtl .logo { order: 2; }
body.rtl .nav-menu { order: 1; }

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700&display=swap');

body.rtl,
body.rtl * {
    font-family: 'Cairo', 'Tajawal', sans-serif !important;
}

body.rtl .hero-title,
body.rtl .section-title,
body.rtl h1,
body.rtl h2 {
    font-family: 'Cairo', serif !important;
}

body.rtl { font-size: 1rem; }

body.rtl h1,
body.rtl .hero-title {
    font-size: 4.5rem !important;
}

body.rtl h2,
body.rtl .section-title,
body.rtl .stats-title {
    font-size: 2.75rem !important;
}

body.rtl h3 { font-size: 1.15em; }
body.rtl .section-title-large { font-size: 4rem !important; }

body.rtl p,
body.rtl li,
body.rtl a,
body.rtl span,
body.rtl input,
body.rtl textarea,
body.rtl button 

/* ─── DROPDOWN ─── */
.dropdown { position: relative; }

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--cream);
    width: 220px;
    list-style: none;
    padding: 10px 0;
    display: none;
    box-shadow: 0 8px 24px rgba(27, 42, 59, 0.12);
    border-radius: 8px;
    border: 1px solid rgba(200, 169, 110, 0.15);
}

.dropdown-menu li { padding: 8px 20px; }

.dropdown-menu li a {
    color: var(--text-dark);
    text-decoration: none;
    display: block;
    font-size: 0.92rem;
    transition: var(--transition);
}

.dropdown-menu li a:hover {
    color: var(--gold-dark);
    padding-left: 4px;
}

.dropdown:hover .dropdown-menu { display: block; }

/* Dropdown arrow */
.dropdown > span::after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 2px solid #999;
    border-bottom: 2px solid #999;
    transform: rotate(45deg);
    margin-top: -4px;
    transition: transform 0.3s ease;
    margin-left: 4px;
}

@media (max-width: 768px) {
    .dropdown.open > span::after {
        transform: rotate(-135deg);
        margin-top: 2px;
    }
}

/* Gap fill between navbar and dropdown */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0; right: 0;
    height: 12px;
    background: transparent;
}

/* Desktop nav fix */
@media (min-width: 769px) {
    .nav-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 70px;
    }
    .nav-menu {
        display: flex;
        align-items: center;
    }
}

/* ─── ANIMATIONS ─── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in { opacity: 0; transform: translateY(40px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ─── RTL SUPPORT ─── */
body.rtl { direction: rtl; text-align: right; }
body.rtl .nav-menu { direction: rtl; }
body.rtl .logo { order: 2; }
body.rtl .hamburger { order: 1; }
body.rtl .dropdown-menu { left: auto; right: 0; }

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700&display=swap');
body.rtl, body.rtl * { font-family: 'Cairo', 'Tajawal', sans-serif !important; }

/* RTL mode mein icons ke liye specific styles */
body.rtl i[class*="fa-"] {
    font-family: "Font Awesome 6 Free" !important;
    direction: ltr !important;
    text-align: left !important;
}

/* Chevron icons ko flip karein RTL mein */
body.rtl .fa-chevron-right::before {
    content: "\f053" !important; /* Left arrow */
}

body.rtl .fa-chevron-left::before {
    content: "\f054" !important; /* Right arrow */
}

body.rtl .fa-arrow-right::before {
    content: "\f060" !important; /* Left arrow */
}

body.rtl .fa-arrow-left::before {
    content: "\f061" !important; /* Right arrow */
}




