﻿
/* ============================================================
               1. CSS VARIABLES
               ============================================================ */
:root {
    --navy: #071B45;
    --navy-light: #08224F;
    --emerald: #053E32;
    --emerald-dark: #06483A;
    --gold: #C0AA8D;
    --gold-premium: #B89452;
    --gold-light: #D8C9A8;
    --ivory: #F7EFE5;
    --cream: #F6EDE2;
    --beige: #E8DED0;
    --white: #FFFFFF;
    --charcoal: #222B2A;
    --gold-rgb: 192, 170, 141;
    --emerald-rgb: 5, 62, 50;
    --navy-rgb: 7, 27, 69;
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Inter', sans-serif;
    --transition: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-subtle: 0 4px 30px rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 12px 48px rgba(0, 0, 0, 0.10);
    --radius: 12px;
    --container: 1280px;
    --section-padding: 120px 0;
}

/* ============================================================
               2. RESET & BASE
               ============================================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    background: var(--ivory);
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
}

/* ============================================================
               3. TYPOGRAPHY
               ============================================================ */
.serif {
    font-family: var(--font-serif);
}

.sans {
    font-family: var(--font-sans);
}

.section-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-premium);
    margin-bottom: 12px;
    display: inline-block;
    position: relative;
}

    .section-label::after {
        content: '';
        display: block;
        width: 40px;
        height: 2px;
        background: var(--gold-premium);
        margin-top: 8px;
    }

    .section-label.light {
        color: var(--gold-light);
    }

        .section-label.light::after {
            background: var(--gold-light);
        }

.section-heading {
    font-family: var(--font-serif);
    font-size: clamp(36px, 5.2vw, 64px);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: 0.02em;
    color: var(--navy);
}

    .section-heading.light {
        color: var(--white);
    }

    .section-heading .gold {
        color: var(--gold-premium);
    }

.section-sub {
    font-size: clamp(17px, 1.2vw, 21px);
    font-weight: 300;
    color: rgba(34, 43, 42, 0.75);
    max-width: 600px;
    margin-top: 16px;
    line-height: 1.7;
}

    .section-sub.light {
        color: rgba(255, 255, 255, 0.8);
    }

/* ============================================================
               4. BUTTONS
               ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 38px;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--emerald);
    color: var(--white);
    border-color: var(--emerald);
    border-radius :15px;
}

    .btn-primary:hover {
        background: var(--emerald-dark);
        border-color: var(--gold-premium);
        transform: translateY(-2px);
        box-shadow: 0 12px 32px rgba(5, 62, 50, 0.30);
    }

.btn-secondary {
    background: transparent;
    color: var(--navy);
    border-color: var(--gold);
    border-radius :15px;
}

    .btn-secondary:hover {
        background: var(--gold);
        color: var(--white);
        border-color: var(--gold);
        transform: translateY(-2px);
    }

.btn-gold {
    background: var(--gold-premium);
    color: var(--white);
    border-color: var(--gold-premium);
}

    .btn-gold:hover {
        background: var(--gold);
        border-color: var(--gold);
        transform: translateY(-2px);
        box-shadow: 0 12px 32px rgba(184, 148, 82, 0.30);
    }

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

    .btn-outline-light:hover {
        background: var(--white);
        color: var(--navy);
        border-color: var(--white);
        transform: translateY(-2px);
    }

.btn-sm {
    padding: 12px 28px;
    font-size: 13px;
}

/* ============================================================
               5. HEADER / NAVIGATION — FIXED VISIBILITY
               ============================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition);
    background: transparent;
}

    .header.scrolled {
        background: rgba(247, 239, 229, 0.97);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        box-shadow: 0 2px 40px rgba(0, 0, 0, 0.06);
        padding: 12px 0;
    }

    .header .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    /* Logo — always navy/dark for visibility */
    .header .logo {
        display: flex;
        align-items: center;
        gap: 12px;
        font-family: var(--font-serif);
        font-size: 22px;
        font-weight: 700;
        color: var(--navy);
        letter-spacing: 1px;
        transition: var(--transition);
    }

        .header .logo .logo-mark {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            border: 2px solid var(--gold-premium);
            border-radius: 50%;
            font-size: 18px;
            font-weight: 700;
            color: var(--gold-premium);
            position: relative;
            flex-shrink: 0;
            background: rgba(255, 255, 255, 0.15);
        }

            .header .logo .logo-mark::after {
                content: '';
                position: absolute;
                inset: -4px;
                border: 1px solid rgba(192, 170, 141, 0.25);
                border-radius: 50%;
            }

        .header .logo .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.1;
        }

            .header .logo .logo-text .stc {
                font-size: 22px;
                font-weight: 700;
                letter-spacing: 2px;
                color: var(--navy);
            }

            .header .logo .logo-text .inc {
                font-family: var(--font-sans);
                font-size: 9px;
                font-weight: 400;
                letter-spacing: 3px;
                text-transform: uppercase;
                color: var(--navy);
                opacity: 0.6;
            }

    .header.scrolled .logo .logo-text .stc {
        color: var(--navy);
    }

    .header.scrolled .logo .logo-text .inc {
        color: var(--navy);
    }

/* Desktop nav — always dark for visibility on light hero */
.nav-desktop {
    display: flex;
    align-items: center;
    gap: 32px;
}

    .nav-desktop a {
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 1.5px;
        color: var(--navy);
        transition: var(--transition);
        position: relative;
        text-transform: uppercase;
        opacity: 0.75;
    }

        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold-premium);
            transition: var(--transition);
        }

        .nav-desktop a:hover::after,
        .nav-desktop a.active::after {
            width: 100%;
        }

        .nav-desktop a:hover {
            opacity: 1;
            color: var(--gold-premium);
        }

    .nav-desktop .btn {
        padding: 10px 28px;
        font-size: 12px;
        letter-spacing: 1.5px;
        margin-left: 8px;
        opacity: 1;
    }

        .nav-desktop .btn:hover {
            opacity: 1;
        }

/* Mobile toggle — dark for visibility */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(7, 27, 69, 0.1);
    border-radius: 6px;
    z-index: 1001;
    transition: var(--transition);
}

    .nav-toggle span {
        display: block;
        width: 26px;
        height: 2px;
        background: var(--navy);
        transition: var(--transition);
        transform-origin: center;
        border-radius: 2px;
    }

    .nav-toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.open span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .nav-toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

/* Mobile nav overlay */
.nav-mobile {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    transform: scale(0.96);
}

    .nav-mobile.open {
        opacity: 1;
        pointer-events: all;
        transform: scale(1);
    }

    .nav-mobile a {
        color: var(--white);
        font-family: var(--font-serif);
        font-size: 28px;
        font-weight: 400;
        letter-spacing: 2px;
        transition: var(--transition);
        opacity: 0.8;
    }

        .nav-mobile a:hover {
            opacity: 1;
            color: var(--gold-light);
        }

    .nav-mobile .btn {
        margin-top: 12px;
    }

/* ============================================================
               6. HERO SECTION
               ============================================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--ivory);
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

    .hero .container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        position: relative;
        z-index: 2;
    }

.hero-content .label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-premium);
    margin-bottom: 16px;
    display: inline-block;
}

.hero-content h1 {
    font-family: var(--font-serif);
    font-size: clamp(44px, 7vw, 72px);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: 0.02em;
    color: var(--navy);
    margin-bottom: 20px;
}

    .hero-content h1 .gold {
        color: var(--gold-premium);
    }

.hero-content .hero-sub {
    font-size: clamp(16px, 1.2vw, 20px);
    font-weight: 300;
    color: rgba(34, 43, 42, 0.7);
    max-width: 480px;
    line-height: 1.7;
    margin-bottom: 36px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(192, 170, 141, 0.25);
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 400;
    color: rgba(34, 43, 42, 0.6);
    letter-spacing: 0.5px;
}

    .hero-trust-item i {
        color: var(--gold-premium);
        font-size: 16px;
    }

/* Hero image */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .hero-image .img-wrapper {
        position: relative;
        width: 100%;
        aspect-ratio: 0.85;
        border-radius: var(--radius);
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.10);
        background: var(--beige);
    }

        .hero-image .img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-image .img-wrapper::after {
            content: '';
            position: absolute;
            inset: 12px;
            border: 1px solid rgba(192, 170, 141, 0.3);
            border-radius: calc(var(--radius) - 4px);
            pointer-events: none;
        }

    .hero-image .gold-frame {
        position: absolute;
        top: -20px;
        right: -20px;
        width: 120px;
        height: 120px;
        border: 2px solid var(--gold-light);
        border-radius: 50%;
        opacity: 0.5;
        z-index: 0;
    }

    .hero-image .gold-frame-2 {
        position: absolute;
        bottom: -30px;
        left: -30px;
        width: 80px;
        height: 80px;
        border: 1px solid rgba(192, 170, 141, 0.2);
        border-radius: 50%;
        z-index: 0;
    }

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

    .hero-wave svg {
        width: 100%;
        height: 100%;
        display: block;
    }

/* ============================================================
               7. WAVE DECORATIONS
               ============================================================ */
.wave-divider {
    position: relative;
    overflow: hidden;
    height: 80px;
    margin-top: -2px;
}

    .wave-divider svg {
        width: 100%;
        height: 100%;
        display: block;
    }

    .wave-divider.flip svg {
        transform: scaleY(-1);
    }

/* ============================================================
               8. SECTION COMMON
               ============================================================ */
section {
    padding: var(--section-padding);
}

    section.dark {
        background: var(--navy);
        color: var(--white);
    }

    section.emerald {
        background: var(--emerald);
        color: var(--white);
    }

    section.cream {
        background: var(--cream);
    }

    section.white {
        background: var(--white);
    }

    section.ivory {
        background: var(--ivory);
    }

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

    .section-header .section-label {
        margin-bottom: 12px;
    }

        .section-header .section-label::after {
            margin: 8px auto 0;
        }

    .section-header .section-sub {
        margin-left: auto;
        margin-right: auto;
    }

/* ============================================================
               9. ABOUT SECTION
               ============================================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text .section-heading {
    margin-bottom: 20px;
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(34, 43, 42, 0.8);
    margin-bottom: 16px;
}

    .about-text p:last-of-type {
        margin-bottom: 32px;
    }

.about-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    background: var(--beige);
    aspect-ratio: 1/1.15;
}

    .about-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.about-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.about-card {
    background: var(--white);
    padding: 32px 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(192, 170, 141, 0.12);
    transition: var(--transition);
}

    .about-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-medium);
        border-color: var(--gold-light);
    }

    .about-card .icon {
        font-size: 28px;
        color: var(--gold-premium);
        margin-bottom: 12px;
        display: block;
    }

    .about-card h4 {
        font-size: 18px;
        font-weight: 600;
        color: var(--navy);
        margin-bottom: 8px;
    }

    .about-card p {
        font-size: 15px;
        color: rgba(34, 43, 42, 0.7);
        line-height: 1.6;
    }

/* ============================================================
               10. VISION & MISSION
               ============================================================ */
.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 56px;
}

.vision-block h3 {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.vision-block p {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(34, 43, 42, 0.75);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 12px;
}

.value-item {
    text-align: center;
    padding: 28px 16px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid rgba(192, 170, 141, 0.12);
    transition: var(--transition);
}

    .value-item:hover {
        transform: translateY(-4px);
        border-color: var(--gold-light);
        box-shadow: var(--shadow-subtle);
    }

    .value-item .circle {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        border: 2px solid var(--gold-premium);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 14px;
        font-size: 22px;
        color: var(--emerald);
        background: rgba(5, 62, 50, 0.04);
    }

    .value-item h4 {
        font-size: 16px;
        font-weight: 600;
        color: var(--navy);
    }

/* ============================================================
               11. COLLECTIONS
               ============================================================ */
.collection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.collection-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 0.8;
    background: var(--beige);
    cursor: pointer;
    transition: var(--transition);
}

    .collection-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition);
    }

    .collection-card:hover img {
        transform: scale(1.05);
    }

    .collection-card .overlay {
        position: absolute;
        inset: 0;
        background: rgba(5, 62, 50, 0.80);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: var(--transition);
        padding: 24px;
        text-align: center;
    }

    .collection-card:hover .overlay {
        opacity: 1;
    }

    .collection-card .overlay h4 {
        font-family: var(--font-serif);
        font-size: 22px;
        color: var(--white);
        font-weight: 600;
        margin-bottom: 6px;
    }

    .collection-card .overlay span {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.7);
        letter-spacing: 1px;
        text-transform: uppercase;
        border-bottom: 2px solid var(--gold-premium);
        padding-bottom: 4px;
    }

    .collection-card:nth-child(1) {
        grid-row: span 2;
    }

/* ============================================================
               12. COLLECTION SHOWCASE (masonry)
               ============================================================ */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
    gap: 16px;
}

.showcase-item {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--beige);
    position: relative;
    transition: var(--transition);
    cursor: pointer;
}

    .showcase-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition);
    }

    .showcase-item:hover img {
        transform: scale(1.04);
    }

    .showcase-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 2;
    }

    .showcase-item:nth-child(2) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .showcase-item:nth-child(3) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .showcase-item:nth-child(4) {
        grid-column: span 1;
        grid-row: span 2;
    }

    .showcase-item:nth-child(5) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .showcase-item:nth-child(6) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .showcase-item:nth-child(7) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .showcase-item:nth-child(8) {
        grid-column: span 2;
        grid-row: span 1;
    }

    .showcase-item:nth-child(9) {
        grid-column: span 1;
        grid-row: span 1;
    }

/* ============================================================
               13. PRIVATE LABEL
               ============================================================ */
.pl-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 48px;
}

.pl-text .section-heading {
    margin-bottom: 16px;
}

.pl-text p {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(34, 43, 42, 0.75);
    margin-bottom: 24px;
}

.pl-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
}

    .pl-services li {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 15px;
        color: var(--charcoal);
    }

        .pl-services li i {
            color: var(--gold-premium);
            font-size: 14px;
        }

.pl-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    background: var(--beige);
    aspect-ratio: 1/1.1;
}

    .pl-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.pl-process {
    margin-top: 16px;
    text-align: center;
}

    .pl-process h3 {
        font-family: var(--font-serif);
        font-size: 26px;
        font-weight: 600;
        color: var(--navy);
        margin-bottom: 8px;
    }

    .pl-process p {
        font-size: 17px;
        color: rgba(34, 43, 42, 0.7);
        margin-bottom: 24px;
    }

/* ============================================================
               14. FABRICS (sustainability)
               ============================================================ */
.fabrics-section {
    background: var(--emerald);
    color: var(--white);
    padding: var(--section-padding);
}

.fabrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.fabrics-text .section-heading {
    color: var(--white);
    margin-bottom: 16px;
}

.fabrics-text .section-sub {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 32px;
}

.fabric-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 32px;
}

.fabric-stat {
    text-align: center;
}

    .fabric-stat .number {
        font-family: var(--font-serif);
        font-size: 48px;
        font-weight: 600;
        color: var(--gold-light);
        line-height: 1;
    }

    .fabric-stat .label {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.7);
        margin-top: 4px;
        letter-spacing: 0.5px;
    }

.fabric-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 32px;
}

    .fabric-benefits li {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 15px;
        color: rgba(255, 255, 255, 0.85);
    }

        .fabric-benefits li i {
            color: var(--gold-premium);
            font-size: 14px;
        }

.fabrics-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.20);
    background: rgba(255, 255, 255, 0.06);
    aspect-ratio: 1/1.2;
}

    .fabrics-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* ============================================================
               15. PRODUCTION EXCELLENCE
               ============================================================ */
.production-steps {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 48px;
    position: relative;
}

    .production-steps::before {
        content: '';
        position: absolute;
        top: 32px;
        left: 5%;
        right: 5%;
        height: 2px;
        background: var(--gold-light);
        opacity: 0.3;
        z-index: 0;
    }

.step-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

    .step-item .num {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: var(--white);
        border: 2px solid var(--gold-premium);
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--font-serif);
        font-size: 18px;
        font-weight: 600;
        color: var(--navy);
        margin: 0 auto 14px;
        transition: var(--transition);
    }

    .step-item:hover .num {
        background: var(--gold-premium);
        color: var(--white);
        transform: scale(1.08);
    }

    .step-item h4 {
        font-size: 15px;
        font-weight: 600;
        color: var(--navy);
        margin-bottom: 4px;
    }

    .step-item p {
        font-size: 13px;
        color: rgba(34, 43, 42, 0.6);
        line-height: 1.5;
        max-width: 160px;
        margin: 0 auto;
    }

    .step-item .thumb {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        overflow: hidden;
        margin: 0 auto 10px;
        border: 2px solid rgba(192, 170, 141, 0.2);
    }

        .step-item .thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

/* ============================================================
               16. WHY RETAILERS CHOOSE STC
               ============================================================ */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    background: var(--white);
    padding: 32px 28px;
    border-radius: var(--radius);
    border: 1px solid rgba(192, 170, 141, 0.10);
    box-shadow: var(--shadow-subtle);
    transition: var(--transition);
    text-align: center;
}

    .why-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-medium);
        border-color: var(--gold-light);
    }

    .why-card .icon-circle {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        background: rgba(5, 62, 50, 0.06);
        border: 2px solid var(--gold-premium);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 16px;
        font-size: 22px;
        color: var(--emerald);
    }

    .why-card h4 {
        font-size: 17px;
        font-weight: 600;
        color: var(--navy);
        margin-bottom: 8px;
        letter-spacing: 0.5px;
    }

    .why-card p {
        font-size: 15px;
        color: rgba(34, 43, 42, 0.7);
        line-height: 1.6;
    }

/* ============================================================
               17. GCC MARKET
               ============================================================ */
.gcc-section {
    background: var(--navy);
    color: var(--white);
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

    .gcc-section .container {
        position: relative;
        z-index: 2;
    }

    .gcc-section .section-heading {
        color: var(--white);
    }

    .gcc-section .section-sub {
        color: rgba(255, 255, 255, 0.7);
    }

.gcc-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.gcc-map {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .gcc-map svg {
        width: 100%;
        max-width: 480px;
        height: auto;
    }

.gcc-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
}

    .gcc-list li {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 18px;
        font-weight: 300;
        color: rgba(255, 255, 255, 0.85);
    }

        .gcc-list li i {
            color: var(--gold-premium);
            font-size: 14px;
        }

        .gcc-list li strong {
            font-weight: 500;
            color: var(--white);
        }

.gcc-note {
    margin-top: 24px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 24px;
}

.gcc-map-svg .country {
    fill: rgba(255, 255, 255, 0.06);
    stroke: var(--gold-light);
    stroke-width: 1.5;
    transition: var(--transition);
    cursor: pointer;
}

    .gcc-map-svg .country:hover {
        fill: rgba(192, 170, 141, 0.20);
        stroke: var(--gold-premium);
    }

    .gcc-map-svg .country.active {
        fill: rgba(192, 170, 141, 0.12);
        stroke: var(--gold-premium);
    }

.gcc-map-svg .dot {
    fill: var(--gold-premium);
    opacity: 0.8;
}

.gcc-map-svg .line {
    stroke: rgba(192, 170, 141, 0.15);
    stroke-width: 1;
    stroke-dasharray: 4 6;
}

/* ============================================================
               18. SUSTAINABILITY BADGES
               ============================================================ */
.sustainability-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.sustainability-badge {
    text-align: center;
    padding: 24px 16px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition);
}

    .sustainability-badge:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: var(--gold-light);
    }

    .sustainability-badge .icon {
        font-size: 28px;
        color: var(--gold-light);
        margin-bottom: 10px;
        display: block;
    }

    .sustainability-badge h4 {
        font-size: 15px;
        font-weight: 500;
        color: var(--white);
        letter-spacing: 0.5px;
    }

/* ============================================================
               19. CTA SECTION
               ============================================================ */
.cta-section {
    background: var(--emerald);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

    .cta-section .wave-top {
        position: absolute;
        top: -2px;
        left: 0;
        right: 0;
        height: 60px;
        pointer-events: none;
    }

        .cta-section .wave-top svg {
            width: 100%;
            height: 100%;
            display: block;
        }

    .cta-section .container {
        position: relative;
        z-index: 2;
    }

    .cta-section h2 {
        font-family: var(--font-serif);
        font-size: clamp(38px, 5vw, 60px);
        font-weight: 600;
        color: var(--white);
        line-height: 1.1;
        margin-bottom: 16px;
    }

    .cta-section p {
        font-size: 19px;
        color: rgba(255, 255, 255, 0.75);
        max-width: 560px;
        margin: 0 auto 36px;
        line-height: 1.7;
    }

    .cta-section .cta-buttons {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .cta-section .gold-wave-deco {
        position: absolute;
        bottom: -40px;
        right: -40px;
        width: 240px;
        height: 240px;
        border-radius: 50%;
        border: 2px solid rgba(192, 170, 141, 0.10);
        pointer-events: none;
    }

    .cta-section .gold-wave-deco-2 {
        position: absolute;
        top: -80px;
        left: -80px;
        width: 320px;
        height: 320px;
        border-radius: 50%;
        border: 1px solid rgba(192, 170, 141, 0.06);
        pointer-events: none;
    }

/* ============================================================
               20. CONTACT SECTION
               ============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h3 {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 24px;
}

.contact-info .detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

    .contact-info .detail i {
        font-size: 18px;
        color: var(--gold-premium);
        margin-top: 2px;
        width: 24px;
        text-align: center;
    }

    .contact-info .detail .label {
        font-size: 13px;
        font-weight: 500;
        color: var(--charcoal);
        text-transform: uppercase;
        letter-spacing: 1px;
        opacity: 0.5;
    }

    .contact-info .detail .value {
        font-size: 17px;
        color: var(--charcoal);
        line-height: 1.6;
    }

.contact-info .gcc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

    .contact-info .gcc-tags span {
        padding: 6px 16px;
        border: 1px solid rgba(192, 170, 141, 0.2);
        border-radius: 30px;
        font-size: 13px;
        color: var(--charcoal);
        letter-spacing: 0.5px;
    }

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(192, 170, 141, 0.08);
}

    .contact-form .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        margin-bottom: 16px;
    }

    .contact-form .form-group {
        margin-bottom: 16px;
    }

    .contact-form label {
        display: block;
        font-size: 13px;
        font-weight: 500;
        color: var(--charcoal);
        letter-spacing: 0.5px;
        margin-bottom: 4px;
        opacity: 0.7;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        width: 100%;
        padding: 14px 18px;
        font-family: var(--font-sans);
        font-size: 15px;
        border: 1px solid rgba(34, 43, 42, 0.10);
        border-radius: 6px;
        background: var(--ivory);
        transition: var(--transition);
        color: var(--charcoal);
        outline: none;
    }

        .contact-form input:focus,
        .contact-form select:focus,
        .contact-form textarea:focus {
            border-color: var(--gold-premium);
            box-shadow: 0 0 0 3px rgba(192, 170, 141, 0.15);
            background: var(--white);
        }

    .contact-form textarea {
        resize: vertical;
        min-height: 100px;
    }

    .contact-form .btn {
        width: 100%;
        justify-content: center;
    }

    .contact-form .whatsapp-cta {
        text-align: center;
        margin-top: 16px;
        font-size: 14px;
        color: rgba(34, 43, 42, 0.6);
    }

        .contact-form .whatsapp-cta a {
            color: var(--emerald);
            font-weight: 600;
        }

            .contact-form .whatsapp-cta a:hover {
                color: var(--gold-premium);
            }

/* ============================================================
               21. FOOTER
               ============================================================ */
.footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

    .footer-brand .logo .mark {
        width: 40px;
        height: 40px;
        border: 2px solid var(--gold);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--font-serif);
        font-size: 16px;
        font-weight: 700;
        color: var(--gold);
        flex-shrink: 0;
    }

    .footer-brand .logo .text {
        font-family: var(--font-serif);
        font-size: 20px;
        font-weight: 600;
        color: var(--white);
        letter-spacing: 1px;
    }

.footer-brand .tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    max-width: 280px;
    line-height: 1.6;
}

.footer h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
    opacity: 0.6;
}

.footer ul li {
    margin-bottom: 10px;
}

    .footer ul li a {
        font-size: 15px;
        color: rgba(255, 255, 255, 0.6);
        transition: var(--transition);
    }

        .footer ul li a:hover {
            color: var(--gold-light);
        }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
}

    .footer-bottom a {
        color: rgba(255, 255, 255, 0.4);
        transition: var(--transition);
    }

        .footer-bottom a:hover {
            color: var(--gold-light);
        }

/* ============================================================
               22. SCROLL ANIMATIONS
               ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

    .reveal-left.visible {
        opacity: 1;
        transform: translateX(0);
    }

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

    .reveal-right.visible {
        opacity: 1;
        transform: translateX(0);
    }

.reveal-scale {
    opacity: 0;
    transform: scale(0.94);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

    .reveal-scale.visible {
        opacity: 1;
        transform: scale(1);
    }

/* ============================================================
               23. RESPONSIVE
               ============================================================ */

@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }

    .hero .container {
        gap: 40px;
    }

    .production-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

        .production-steps::before {
            display: none;
        }

    .step-item p {
        max-width: 100%;
    }

    .showcase-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 200px;
    }

    .showcase-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 2;
    }

    .showcase-item:nth-child(4) {
        grid-column: span 1;
        grid-row: span 2;
    }

    .showcase-item:nth-child(8) {
        grid-column: span 2;
        grid-row: span 1;
    }

    .showcase-item:nth-child(9) {
        display: none;
    }

    .collection-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .collection-card:nth-child(1) {
        grid-row: span 1;
    }
}

@media (max-width: 992px) {
    .nav-desktop {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-image .img-wrapper {
        aspect-ratio: 1/0.9;
        max-width: 500px;
        margin: 0 auto;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .vision-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pl-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pl-image {
        aspect-ratio: 1/0.7;
    }

    .fabrics-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .fabrics-image {
        aspect-ratio: 1/0.7;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gcc-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .gcc-list {
        justify-items: center;
        text-align: left;
    }

    .sustainability-badges {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }

    .showcase-item:nth-child(1) {
        grid-column: span 1;
        grid-row: span 2;
    }

    .showcase-item:nth-child(4) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .showcase-item:nth-child(8) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .showcase-item:nth-child(5),
    .showcase-item:nth-child(6),
    .showcase-item:nth-child(7) {
        display: none;
    }

    .collection-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 70px 0;
    }

    .container {
        padding: 0 20px;
    }

    .section-heading {
        font-size: clamp(30px, 8vw, 42px);
    }

    .hero-content h1 {
        font-size: clamp(34px, 10vw, 48px);
    }

    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .about-cards {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pl-services {
        grid-template-columns: 1fr;
    }

    .fabric-stats {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .fabric-benefits {
        grid-template-columns: 1fr;
    }

    .production-steps {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

        .production-steps::before {
            display: none;
        }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .gcc-list {
        grid-template-columns: 1fr;
        justify-items: start;
        text-align: left;
    }

    .sustainability-badges {
        grid-template-columns: 1fr 1fr;
    }

    .contact-form {
        padding: 24px;
    }

        .contact-form .form-row {
            grid-template-columns: 1fr;
        }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .showcase-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 160px;
        gap: 12px;
    }

    .showcase-item:nth-child(1) {
        grid-column: span 1;
        grid-row: span 2;
    }

    .showcase-item:nth-child(2),
    .showcase-item:nth-child(3) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .showcase-item:nth-child(4),
    .showcase-item:nth-child(5),
    .showcase-item:nth-child(6),
    .showcase-item:nth-child(7),
    .showcase-item:nth-child(8),
    .showcase-item:nth-child(9) {
        display: none;
    }

    .collection-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .collection-card {
        aspect-ratio: 0.7;
    }

    .cta-section {
        padding: 70px 0;
    }

        .cta-section h2 {
            font-size: clamp(30px, 8vw, 40px);
        }

    .hero-trust {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-trust-item {
        font-size: 12px;
    }

    .btn {
        padding: 14px 28px;
        font-size: 13px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .nav-mobile a {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .collection-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .collection-card .overlay h4 {
        font-size: 16px;
    }

    .collection-card .overlay span {
        font-size: 11px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .sustainability-badges {
        grid-template-columns: 1fr;
    }

    .production-steps {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .step-item p {
        font-size: 12px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

        .hero-buttons .btn {
            width: 100%;
            justify-content: center;
        }
}
