/* ================================
   MAGRICH TEXTILE - MODERN UI
   Responsive & Luxury Design
   ================================ */
/* Import 3 Elegant Fonts */
/* Import Premium Fonts - Based on Your Suggestions */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Raleway:wght@300;400;500;600;700&family=Nunito:wght@300;400;500;600;700&display=swap");

:root {
    --text-dark: #111;
    --text-muted: #666;
    --border-light: #e5e5e5;
    --bg-soft: #fafafa;
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --gold-accent: #c9a961;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    /* font-family: "Inter", sans-serif; */
    font-family: "Nunito", sans-serif;
    color: var(--text-dark);
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Playfair Display", serif; /* Elegant serif for headings */
}

p {
    font-family: "Nunito", sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
/* =====================================
   TEXTILE PATTERN BACKGROUNDS
   Add these to your existing CSS
   ===================================== */

/* Fabric Weave Pattern - For light sections */
.fabric-pattern {
    background-color: #fafafa;
    background-image:
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(17, 17, 17, 0.015) 2px,
            rgba(17, 17, 17, 0.015) 4px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(17, 17, 17, 0.015) 2px,
            rgba(17, 17, 17, 0.015) 4px
        );
    background-size: 4px 4px;
}

/* Diagonal Textile Lines - Subtle */
.diagonal-textile {
    background-color: #ffffff;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(212, 175, 55, 0.02) 20px,
        rgba(212, 175, 55, 0.02) 40px
    );
}

/* Diamond Pattern - Luxury */
.diamond-pattern {
    background-color: #fafafa;
    background-image:
        linear-gradient(135deg, rgba(212, 175, 55, 0.03) 25%, transparent 25%),
        linear-gradient(225deg, rgba(212, 175, 55, 0.03) 25%, transparent 25%),
        linear-gradient(45deg, rgba(212, 175, 55, 0.03) 25%, transparent 25%),
        linear-gradient(315deg, rgba(212, 175, 55, 0.03) 25%, transparent 25%);
    background-size: 40px 40px;
    background-position:
        0 0,
        0 0,
        20px 20px,
        20px 20px;
}

/* Herringbone Pattern - Textile Style */
.herringbone-pattern {
    background-color: #ffffff;
    background-image:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(17, 17, 17, 0.02) 10px,
            rgba(17, 17, 17, 0.02) 20px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 10px,
            rgba(17, 17, 17, 0.015) 10px,
            rgba(17, 17, 17, 0.015) 20px
        );
}

/* Thread Pattern - Very Subtle */
.thread-pattern {
    background-color: #f5f5f5;
    background-image: radial-gradient(
        circle at 2px 2px,
        rgba(212, 175, 55, 0.03) 1px,
        transparent 1px
    );
    background-size: 20px 20px;
}

/* Crosshatch Fabric */
.crosshatch-fabric {
    background-color: #fafafa;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(17, 17, 17, 0.02) 2px,
            rgba(17, 17, 17, 0.02) 3px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(17, 17, 17, 0.02) 2px,
            rgba(17, 17, 17, 0.02) 3px
        );
    background-size: 20px 20px;
}

/* =====================================
   ALTERNATIVE PATTERNS (OPTIONAL)
   Uncomment to try different styles
   ===================================== */

/* Zigzag Pattern - Uncomment to use */
.zigzag-pattern {
    background-color: #fafafa;
    background-image: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.03) 12.5%,
        transparent 12.5%,
        transparent 50%,
        rgba(212, 175, 55, 0.03) 50%,
        rgba(212, 175, 55, 0.03) 62.5%,
        transparent 62.5%,
        transparent 100%
    );
    background-size: 20px 20px;
}

/* Subtle Grid - Uncomment to use
.subtle-grid {
    background-color: #ffffff;
    background-image:
        linear-gradient(rgba(17, 17, 17, 0.01) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17, 17, 17, 0.01) 1px, transparent 1px);
    background-size: 30px 30px;
}
*/

/* Woven Fabric - Uncomment to use
.woven-fabric {
    background-color: #fafafa;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(17, 17, 17, 0.015) 2px, rgba(17, 17, 17, 0.015) 4px),
        repeating-linear-gradient(-45deg, transparent, transparent 2px, rgba(17, 17, 17, 0.015) 2px, rgba(17, 17, 17, 0.015) 4px);
    background-size: 8px 8px;
}
*/
/* =====================================
   HEADER & NAVIGATION
   ===================================== */

header {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition-base);
}

header.scrolled {
    box-shadow: var(--shadow-sm);
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.logo {
    font-family: "Playfair Display", serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-dark);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.nav-menu li a {
    font-family: "Raleway", sans-serif; /* Navigation font - clean and modern */
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
}

.nav-menu li a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
    background: var(--text-dark);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
    background: var(--gold-accent);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-switcher {
    font-size: 13px;
    letter-spacing: 1px;
    cursor: pointer;
    padding: 6px 12px;
    border: 1px solid var(--border-light);
    transition: var(--transition-base);
    font-family: "Raleway", sans-serif;
}

.lang-switcher:hover {
    border-color: var(--gold-accent);
    color: var(--gold-accent);
    border-color: var(--gold-accent);
    color: var(--gold-accent);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition-base);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* =====================================
   HERO SLIDER - LUXURY FIXED & RESPONSIVE
   ===================================== */

.hero-slider {
    position: relative;
    height: 95vh;
    min-height: 500px;
    max-height: 900px;
    width: 100%;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(17, 17, 17, 0.3) 50%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    width: 90%;
    padding: 40px 30px;
}

.hero-slide.active .hero-content {
    animation: luxuryFadeIn 1.8s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

@keyframes luxuryFadeIn {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Decorative line above heading */
.hero-content::before {
    content: "";
    display: block;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    margin: 0 auto 30px;
    animation: lineGlow 2s ease-in-out infinite;
}

@keyframes lineGlow {
    0%,
    100% {
        opacity: 0.7;
        transform: scaleX(1);
    }
    50% {
        opacity: 1;
        transform: scaleX(1.2);
    }
}

.hero-content h1 {
    font-family: "Cinzel", serif;
    font-size: clamp(28px, 6vw, 72px);
    font-weight: 600;
    letter-spacing: 3px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #ffffff;
    text-shadow:
        0 3px 25px rgba(0, 0, 0, 0.5),
        0 6px 40px rgba(212, 175, 55, 0.3);
}

.hero-content h1::first-letter {
    font-size: 1.3em;
    color: #d4af37;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.8);
}

/* Decorative diamonds */
/* .hero-content h1::before,
.hero-content h1::after {
    content: '◆';
    display: inline-block;
    font-size: 0.25em;
    color: #d4af37;
    margin: 0 15px;
    vertical-align: middle;
    animation: diamondPulse 3s ease-in-out infinite;
} */

@keyframes diamondPulse {
    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.3);
    }
}

.hero-content p {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(15px, 2.2vw, 24px);
    font-weight: 400;
    color: #f5f5f5;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.6);
}

/* Decorative line below subtitle */
.hero-content::after {
    content: "";
    display: block;
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    margin: 30px auto 0;
    animation: lineGlow 2s ease-in-out infinite;
}

/* ===== PROGRESS BAR ===== */
.hero-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.15);
    z-index: 5;
    overflow: hidden;
}

.hero-progress::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(212, 175, 55, 0.3),
        transparent
    );
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.hero-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #b8935f 0%, #d4af37 50%, #f4e5c3 100%);
    width: 0;
    transition: none;
    box-shadow:
        0 0 20px rgba(212, 175, 55, 0.6),
        0 0 40px rgba(212, 175, 55, 0.3);
}

/* .hero-slide.active .hero-progress-bar {
    animation: progressBar 6s linear forwards;
} */

/* @keyframes progressBar {
    0% { width: 0%; }
    100% { width: 100%; }
} */

/* ===== NAVIGATION DOTS ===== */
.hero-dots {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 10;
}

.hero-dots .dot {
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    background: transparent;
}

.hero-dots .dot::before {
    content: "";
    position: absolute;
    inset: -6px;
    border: 1px solid transparent;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.hero-dots .dot::after {
    content: "";
    position: absolute;
    inset: 3px;
    background: #d4af37;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-dots .dot:hover {
    border-color: rgba(212, 175, 55, 0.8);
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.hero-dots .dot:hover::before {
    border-color: rgba(212, 175, 55, 0.3);
    transform: scale(1.3);
}

.hero-dots .dot.active {
    background: transparent;
    border-color: #d4af37;
    box-shadow:
        0 0 15px rgba(212, 175, 55, 0.6),
        inset 0 0 10px rgba(212, 175, 55, 0.3);
}

.hero-dots .dot.active::after {
    opacity: 1;
    transform: scale(1);
}

.hero-dots .dot.active::before {
    border-color: rgba(212, 175, 55, 0.4);
    transform: scale(1.5);
}

/* ===== SCROLL DOWN INDICATOR ===== */
.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: scrollFloat 3s ease-in-out infinite;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

@keyframes scrollFloat {
    0%,
    100% {
        transform: translate(-50%, 0);
    }
    50% {
        transform: translate(-50%, 15px);
    }
}

.scroll-down::before {
    content: "";
    position: absolute;
    inset: -6px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    animation: scrollRing 3s ease-in-out infinite;
}

@keyframes scrollRing {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.scroll-down:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
    transform: translateX(-50%) scale(1.15);
    box-shadow:
        0 0 30px rgba(212, 175, 55, 0.5),
        inset 0 0 20px rgba(212, 175, 55, 0.2);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet */
@media (max-width: 1024px) {
    .hero-slider {
        height: 90vh;
        min-height: 500px;
    }

    .hero-content {
        padding: 30px 20px;
    }

    .hero-dots {
        right: 30px;
        gap: 16px;
    }

    .hero-content::before,
    .hero-content::after {
        width: 60px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-slider {
        height: 100vh;
        min-height: 600px;
        max-height: none;
    }

    .hero-content {
        padding: 30px 20px;
    }

    .hero-content::before {
        width: 50px;
        margin-bottom: 20px;
    }

    .hero-content h1 {
        font-size: clamp(24px, 8vw, 36px);
        letter-spacing: 2px;
        margin-bottom: 20px;
    }

    .hero-content h1::before,
    .hero-content h1::after {
        display: none; /* Hide diamonds on mobile */
    }

    .hero-content p {
        font-size: clamp(14px, 4vw, 18px);
        letter-spacing: 1px;
    }

    .hero-content::after {
        width: 70px;
        margin-top: 20px;
    }

    /* Move dots to bottom horizontal */
    .hero-dots {
        flex-direction: row;
        right: auto;
        left: 50%;
        top: auto;
        bottom: 110px;
        transform: translateX(-50%);
        gap: 14px;
    }

    .hero-dots .dot {
        width: 12px;
        height: 12px;
    }

    .scroll-down {
        bottom: 35px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .hero-progress {
        height: 3px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-slider {
        min-height: 550px;
    }

    .hero-content {
        padding: 20px 15px;
    }

    .hero-content h1 {
        font-size: 24px;
        letter-spacing: 1.5px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-dots {
        bottom: 100px;
        gap: 12px;
    }

    .hero-dots .dot {
        width: 10px;
        height: 10px;
    }

    .scroll-down {
        bottom: 30px;
        width: 40px;
        height: 40px;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-slider {
        height: 100vh;
        min-height: 400px;
    }

    .hero-content {
        padding: 20px;
    }

    .hero-content h1 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-dots {
        bottom: 80px;
    }

    .scroll-down {
        bottom: 25px;
    }
}

/* =====================================
   BUTTON COMPONENT
   ===================================== */

.btn {
    display: inline-block;
    padding: 16px 36px;
    border: 2px solid var(--text-dark);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-family: "Raleway", sans-serif;
}

.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--text-dark);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn:hover::before {
    left: 0;
}

.btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* =====================================
           LUXURY PRODUCT SPLIT SECTION
   ===================================== */

.product-split {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin: 80px auto;
}

.split-card {
    position: relative;
    min-height: 500px;
    border: 1px solid #e5e5e5;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

/* Background Image Layer */
.split-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.split-card:hover .split-card-bg {
    transform: scale(1.08);
}

/* Dark Overlay for Better Text Readability */
.split-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.75) 100%
    );
    transition: background 0.6s ease;
    z-index: 2;
}

.split-card:hover .split-card-overlay {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.7) 50%,
        rgba(0, 0, 0, 0.85) 100%
    );
}

/* Decorative Gold Border Animation */
.split-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
    pointer-events: none;
}

.split-card:hover::before {
    border-color: #d4af37;
    box-shadow:
        inset 0 0 30px rgba(212, 175, 55, 0.2),
        0 0 30px rgba(212, 175, 55, 0.3);
}

/* Content Container */
.split-card-content {
    position: relative;
    z-index: 4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
    padding: 80px 40px;
    color: #ffffff;
}

/* Decorative Top Line */
.split-card-content::before {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    margin-bottom: 30px;
    animation: lineGlow 2s ease-in-out infinite;
}

@keyframes lineGlow {
    0%,
    100% {
        opacity: 0.7;
        transform: scaleX(1);
    }
    50% {
        opacity: 1;
        transform: scaleX(1.3);
    }
}

/* Category Badge */
.split-card-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    background: rgba(212, 175, 55, 0.9);
    color: #111;
    padding: 8px 20px;
    font-family: "Raleway", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    border-radius: 2px;
    z-index: 5;
    transition: all 0.4s ease;
}

.split-card:hover .split-card-badge {
    background: #d4af37;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Heading */
.split-card h3 {
    font-family: "Playfair Display", serif;
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 600;
    letter-spacing: 4px;
    margin-bottom: 24px;
    color: #ffffff;
    text-shadow:
        0 2px 15px rgba(0, 0, 0, 0.8),
        0 4px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
    position: relative;
}

.split-card h3::first-letter {
    color: #d4af37;
    font-size: 1.2em;
}

.split-card:hover h3 {
    letter-spacing: 6px;
    transform: translateY(-5px);
}

/* Description */
.split-card p {
    font-family: "Nunito", sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 36px;
    max-width: 400px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
    transition: all 0.4s ease;
}

.split-card:hover p {
    color: #ffffff;
    transform: translateY(-3px);
}

/* CTA Button */
.split-card .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: transparent;
    color: #ffffff;
    font-family: "Raleway", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.split-card .btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #d4af37;
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.split-card:hover .btn {
    border-color: #d4af37;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.split-card .btn:hover::before {
    left: 0;
}

.split-card .btn:hover {
    color: #111;
    border-color: #d4af37;
}

/* Arrow Icon */
.btn-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.split-card .btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* Decorative Bottom Line */
.split-card-content::after {
    content: "";
    display: block;
    width: 80px;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(212, 175, 55, 0.6),
        transparent
    );
    margin-top: 40px;
    opacity: 0;
    transform: scaleX(0);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.split-card:hover .split-card-content::after {
    opacity: 1;
    transform: scaleX(1);
}

/* Hover Effect - Card Lift */
.split-card:hover {
    transform: translateY(-12px);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(212, 175, 55, 0.2);
}

/* =====================================
           RESPONSIVE DESIGN
   ===================================== */

@media (max-width: 768px) {
    .product-split {
        grid-template-columns: 1fr;
        gap: 30px;
        margin: 60px auto;
    }

    .split-card {
        min-height: 450px;
    }

    .split-card-content {
        padding: 60px 30px;
    }

    .split-card h3 {
        font-size: 26px;
        letter-spacing: 3px;
    }

    .split-card p {
        font-size: 15px;
    }

    .split-card-badge {
        top: 20px;
        left: 20px;
        font-size: 10px;
        padding: 6px 16px;
    }
}

@media (max-width: 480px) {
    .split-card {
        min-height: 400px;
    }

    .split-card-content {
        padding: 50px 25px;
    }

    .split-card h3 {
        font-size: 22px;
        letter-spacing: 2px;
    }

    .split-card p {
        font-size: 14px;
    }

    .split-card .btn {
        padding: 14px 30px;
        font-size: 11px;
    }
}

/* =====================================
   TRUE INFINITE SCROLLING TEXT (NO GAP)
   ===================================== */

.scroll-banner {
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 24px 0;
    background-color: #fafafa;
    background-image:
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(17, 17, 17, 0.015) 2px,
            rgba(17, 17, 17, 0.015) 4px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(17, 17, 17, 0.015) 2px,
            rgba(17, 17, 17, 0.015) 4px
        );
    background-size: 4px 4px;
}

.scroll-track {
    display: flex;
    width: 200%; /* 🔑 twice the content */
    animation: marquee 30s linear infinite;
}

.scroll-text {
    flex: 0 0 10%; /* 🔑 each copy = half */
    white-space: nowrap;
    font-size: 13px;
    letter-spacing: 4px;
    color: #333;
    font-family: "Raleway", sans-serif;
    text-align: left;
}

/* EXACT distance = one copy */
@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* =====================================
   FEATURED PRODUCTS
   ===================================== */

.featured-products {
    padding: 100px 0;
    background-color: #ffffff;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(212, 175, 55, 0.012) 20px,
        rgba(212, 175, 55, 0.012) 40px
    );
}

.section-title {
    text-align: center;
    font-size: clamp(22px, 3vw, 28px);
    letter-spacing: 4px;
    margin-bottom: 80px;
    font-family: "Playfair Display", serif;
    font-weight: 500;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--text-dark);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.featured-card {
    border: 1px solid var(--border-light);
    transition: var(--transition-slow);
    background: #fff;
    overflow: hidden;
    position: relative;
}

.featured-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--text-dark);
}

.featured-image {
    height: 320px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    position: relative;
}

.featured-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: var(--transition-base);
}

.featured-card:hover .featured-image::before {
    opacity: 1;
}

.featured-card:hover .featured-image {
    transform: scale(1.05);
}

.featured-image {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-content {
    padding: 40px 30px;
    text-align: center;
}

.featured-content h3 {
    font-size: 19px;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    font-weight: 500;
}

.featured-content p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 28px;
    line-height: 1.7;
    font-family: "Nunito", sans-serif;
}

/* =====================================
   ABOUT SECTION
   ===================================== */

.about-section {
    margin: 100px auto;
    text-align: center;
    padding: 60px 20px;
    background-color: #fafafa;
    background-image: radial-gradient(
        circle at 2px 2px,
        rgba(212, 175, 55, 0.02) 1px,
        transparent 1px
    );
    background-size: 20px 20px;
    border-radius: 12px;
}

.about-section h2 {
    font-size: clamp(24px, 3vw, 32px);
    letter-spacing: 3px;
    margin-bottom: 40px;
    font-weight: 500;
}

.about-section p {
    margin-top: 36px;
    color: var(--text-muted);
    line-height: 1.9;
    font-size: clamp(15px, 2vw, 17px);
    font-family: "Nunito", sans-serif;
}

/* =====================================
   NEWSLETTER SECTION
   ===================================== */

.newsletter-section {
    padding: 100px 0;
    background-color: #fafafa;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(17, 17, 17, 0.015) 2px,
            rgba(17, 17, 17, 0.015) 3px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(17, 17, 17, 0.015) 2px,
            rgba(17, 17, 17, 0.015) 3px
        );
    background-size: 20px 20px;
}

.newsletter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.newsletter-content h2 {
    font-size: clamp(20px, 3vw, 26px);
    letter-spacing: 3px;
    margin-bottom: 24px;
    font-weight: 500;
}

.newsletter-content p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 480px;
    font-family: "Nunito", sans-serif;
}

.newsletter-form-wrap {
    display: flex;
    justify-content: flex-end;
}

.newsletter-form {
    display: flex;
    gap: 16px;
    width: 100%;
    max-width: 500px;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid var(--border-light);
    font-size: 14px;
    outline: none;
    transition: var(--transition-base);
    font-family: inherit;
}

.newsletter-form input:focus {
    border-color: var(--text-dark);
    box-shadow: var(--shadow-sm);
}

.newsletter-form input::placeholder {
    color: #aaa;
}

.newsletter-form button {
    white-space: nowrap;
}

/* =====================================
   FOOTER
   ===================================== */

.site-footer {
    background: #111;
    color: #ccc;
    padding: 100px 0 0;
    font-size: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 80px;
}

.footer-col h3,
.footer-col h4 {
    color: #fff;
    font-size: 15px;
    letter-spacing: 2px;
    margin-bottom: 28px;
    font-weight: 500;
    font-family: "Raleway", sans-serif;
}

.footer-brand {
    font-size: 20px;
    font-family: "Playfair Display", serif;
    letter-spacing: 3px;
    margin-bottom: 20px;
    display: block;
}

.footer-text {
    line-height: 1.8;
    color: #aaa;
    font-size: 14px;
    font-family: "Nunito", sans-serif;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 14px;
}

.footer-col ul li a {
    color: #aaa;
    transition: var(--transition-base);
    display: inline-block;
}

.footer-col ul li a:hover {
    color: #fff;
    transform: translateX(4px);
}

.footer-col p {
    line-height: 1.8;
    color: #aaa;
    margin-bottom: 10px;
    font-family: "Nunito", sans-serif;
}

.footer-social {
    margin-top: 24px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-social a {
    font-size: 13px;
    color: #aaa;
    border: 1px solid #333;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-base);
}

.footer-social a:hover {
    color: #fff;
    border-color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #222;
    padding: 30px 0;
    text-align: center;
    font-size: 13px;
    color: #777;
}

/* =====================================
   UTILITY CLASSES
   ===================================== */

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =====================================
   RESPONSIVE DESIGN
   ===================================== */

/* Tablet */
@media (max-width: 1024px) {
    .container {
        width: 95%;
    }

    .hero-dots {
        right: 20px;
    }

    .product-split {
        gap: 30px;
        margin: 60px auto;
    }

    .split-card {
        padding: 60px 30px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    /* Header */
    .nav-menu {
        position: fixed;
        top: 73px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 73px);
        background: #fff;
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 20px;
        gap: 30px;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-actions {
        gap: 15px;
    }

    /* Hero */
    .hero-slider {
        height: 90vh;
        min-height: 500px;
    }

    .hero-content h1 {
        font-size: 32px;
        letter-spacing: 1px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .hero-dots {
        flex-direction: row;
        right: auto;
        left: 50%;
        top: auto;
        bottom: 90px;
        transform: translateX(-50%);
        gap: 12px;
    }

    .scroll-down {
        bottom: 30px;
        width: 36px;
        height: 36px;
        font-size: 20px;
    }

    /* Product Split */
    .product-split {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 40px auto;
    }

    .split-card {
        padding: 50px 25px;
    }

    /* Featured Products */
    .featured-products {
        padding: 60px 0;
    }

    .section-title {
        margin-bottom: 50px;
        font-size: 22px;
        letter-spacing: 3px;
    }

    .featured-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .featured-image {
        height: 280px;
    }

    /* Newsletter */
    .newsletter-section {
        padding: 60px 0;
    }

    .newsletter-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .newsletter-form-wrap {
        justify-content: center;
    }

    .newsletter-form {
        flex-direction: column;
        max-width: 100%;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }

    /* Footer */
    .site-footer {
        padding: 60px 0 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 40px;
    }

    .footer-social {
        justify-content: flex-start;
    }

    /* About */
    .about-section {
        margin: 60px auto;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-slider {
        height: 90vh;
        min-height: 450px;
    }

    .hero-content {
        padding: 20px;
    }

    .hero-content h1 {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .split-card {
        padding: 40px 20px;
    }

    .split-card h3 {
        font-family: "Playfair Display", serif;
        font-weight: 500;
        font-size: 18px;
    }

    .featured-content {
        padding: 30px 20px;
    }

    .btn {
        padding: 14px 28px;
        font-size: 11px;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-slider {
        height: 100vh;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 14px;
    }
}

/* =====================================
   ABOUT PAGE - COMPLETE LUXURY VERSION
   All Sections with Premium Styling
   ===================================== */

/* =====================================
   SECTION LABELS & HEADERS
   ===================================== */
.section-label {
    font-family: "Raleway", sans-serif;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #d4af37;
    font-weight: 600;
    margin-bottom: 16px;
    display: inline-block;
}

.section-header-center {
    text-align: center;
    margin-bottom: 80px;
}

.section-header-center h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(32px, 4.5vw, 48px);
    letter-spacing: 2px;
    margin-bottom: 16px;
    font-weight: 600;
}

.section-subtitle {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(16px, 2vw, 19px);
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
    letter-spacing: 0.5px;
}

/* =====================================
   FOUNDER VISION SECTION
   ===================================== */
.founder-vision {
    padding: 140px 0;
    background-color: #fafafa;
    background-image: radial-gradient(
        circle at 2px 2px,
        rgba(212, 175, 55, 0.03) 1px,
        transparent 1px
    );
    background-size: 20px 20px;
    position: relative;
}

.founder-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 100px;
    align-items: center;
}

.founder-image {
    height: 550px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.founder-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.15) 0%,
        transparent 100%
    );
}

.founder-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d4af37 0%, #f4e5c3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.founder-content h2 {
    font-family: "Cinzel", serif;
    font-size: clamp(32px, 4vw, 44px);
    letter-spacing: 2px;
    margin-bottom: 40px;
    line-height: 1.3;
}

.vision-quote {
    position: relative;
    padding: 40px 0;
    margin: 40px 0;
}

.vision-quote svg {
    position: absolute;
    top: 0;
    left: 0;
    color: #d4af37;
}

.vision-quote p {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(18px, 2.2vw, 22px);
    line-height: 1.9;
    color: var(--text-dark);
    font-style: italic;
    padding-left: 60px;
    letter-spacing: 0.3px;
}

.founder-signature {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid rgba(212, 175, 55, 0.3);
}

.signature-name {
    font-family: "Playfair Display", serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

.signature-company {
    font-family: "Raleway", sans-serif;
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* =====================================
   NUMBERS SECTION
   ===================================== */
.numbers-section {
    padding: 140px 0;
    background-color: #ffffff;
    background-image:
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(17, 17, 17, 0.012) 2px,
            rgba(17, 17, 17, 0.012) 4px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(17, 17, 17, 0.012) 2px,
            rgba(17, 17, 17, 0.012) 4px
        );
    background-size: 4px 4px;
}
.numbers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 80px;
}

.number-card {
    text-align: center;
    padding: 50px 35px;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    background: #fff;
}

.number-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #f4e5c3);
    border-radius: 12px 12px 0 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.number-card:hover::before {
    opacity: 1;
}

.number-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.15);
}

.number-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 28px;
    border: 2px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.number-card:hover .number-icon {
    background: linear-gradient(135deg, #d4af37 0%, #f4e5c3 100%);
    border-color: #d4af37;
    color: #fff;
    transform: rotate(360deg) scale(1.1);
}

.number-value {
    font-family: "Cinzel", serif;
    font-size: clamp(40px, 5vw, 52px);
    font-weight: 700;
    background: linear-gradient(135deg, #d4af37 0%, #f4e5c3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.number-label {
    font-family: "Raleway", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.number-card p {
    font-family: "Nunito", sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
}

/* =====================================
   CORE VALUES - NEW ICON STYLE
   ===================================== */
.about-values {
    padding: 140px 0;
    background-color: #fafafa;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(17, 17, 17, 0.015) 2px,
            rgba(17, 17, 17, 0.015) 3px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(17, 17, 17, 0.015) 2px,
            rgba(17, 17, 17, 0.015) 3px
        );
    background-size: 20px 20px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-top: 80px;
}

.value-item {
    text-align: center;
    padding: 50px 35px;
    transition: all 0.4s ease;
    position: relative;
    background: #fff;
    border-radius: 8px;
    border: 1px solid var(--border-light);
}

.value-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-item:hover::before {
    width: 140px;
}

.value-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.value-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 28px;
    border: 2px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.value-icon-wrapper::before {
    content: "";
    position: absolute;
    inset: -8px;
    border: 1px solid transparent;
    border-radius: 50%;
    transition: all 0.6s ease;
}

.value-item:hover .value-icon-wrapper {
    background: linear-gradient(135deg, #d4af37 0%, #f4e5c3 100%);
    border-color: #d4af37;
    color: #fff;
    transform: scale(1.15);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.value-item:hover .value-icon-wrapper::before {
    border-color: rgba(212, 175, 55, 0.3);
    transform: scale(1.4);
}

.value-item h3 {
    font-family: "Playfair Display", serif;
    font-size: 22px;
    letter-spacing: 1px;
    margin: 28px 0 18px;
    font-weight: 600;
}

.value-item p {
    font-family: "Nunito", sans-serif;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.9;
}

/* =====================================
   TIMELINE - ENHANCED WITH SEASONS
   ===================================== */
.about-timeline {
    padding: 140px 0;
    background-color: #ffffff;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(212, 175, 55, 0.015) 20px,
        rgba(212, 175, 55, 0.015) 40px
    );
}

.timeline-container {
    max-width: 1000px;
    margin: 80px auto 0;
    position: relative;
}

.timeline-container::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(
        180deg,
        #d4af37 0%,
        var(--border-light) 30%,
        var(--border-light) 70%,
        #d4af37 100%
    );
    transform: translateX(-50%);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 100px;
    position: relative;
}

.timeline-item:nth-child(even) .timeline-content {
    order: 2;
}

.timeline-item:nth-child(even) .timeline-year {
    order: 1;
    text-align: left;
}

.timeline-year {
    text-align: right;
    padding-right: 50px;
}

.timeline-year h3 {
    font-family: "Cinzel", serif;
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, #d4af37 0%, #f4e5c3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.timeline-season {
    font-family: "Raleway", sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
}

.timeline-content {
    padding-left: 50px;
}

.timeline-content h4 {
    font-family: "Playfair Display", serif;
    font-size: 26px;
    letter-spacing: 1px;
    margin-bottom: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

.timeline-content p {
    font-family: "Nunito", sans-serif;
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-muted);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 8px;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #d4af37 0%, #f4e5c3 100%);
    border: 6px solid #fff;
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow:
        0 0 0 4px rgba(212, 175, 55, 0.2),
        0 5px 15px rgba(212, 175, 55, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.timeline-item:hover .timeline-dot {
    transform: translateX(-50%) scale(1.5);
    box-shadow:
        0 0 0 8px rgba(212, 175, 55, 0.3),
        0 8px 25px rgba(212, 175, 55, 0.5);
}

/* =====================================
   EXISTING SECTIONS - KEEP AS IS
   ===================================== */
.inner-hero {
    padding: 180px 0 120px;
    text-align: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.inner-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 3px,
            rgba(212, 175, 55, 0.015) 3px,
            rgba(212, 175, 55, 0.015) 6px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 3px,
            rgba(212, 175, 55, 0.015) 3px,
            rgba(212, 175, 55, 0.015) 6px
        );
    background-size: 6px 6px;
    opacity: 0.4;
}

@keyframes topLineGlow {
    0%,
    100% {
        opacity: 0.5;
        width: 150px;
    }
    50% {
        opacity: 1;
        width: 200px;
    }
}

.inner-hero h1 {
    font-family: "Cinzel", serif;
    font-size: clamp(44px, 6vw, 64px);
    letter-spacing: 6px;
    margin-bottom: 24px;
    font-weight: 600;
    animation: luxuryFadeIn 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.inner-hero h1::first-letter {
    font-size: 1.3em;
    color: #d4af37;
}

.inner-hero h1::before,
.inner-hero h1::after {
    content: "◆";
    display: inline-block;
    font-size: 0.25em;
    color: #d4af37;
    margin: 0 25px;
    vertical-align: middle;
    animation: diamondPulse 3s ease-in-out infinite;
}

@keyframes diamondPulse {
    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.3);
    }
}

@keyframes luxuryFadeIn {
    0% {
        opacity: 0;
        transform: translateY(40px);
        letter-spacing: 12px;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        letter-spacing: 6px;
    }
}

.inner-hero p {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(17px, 2.5vw, 22px);
    color: var(--text-muted);
    animation: subtitleFade 1.4s cubic-bezier(0.19, 1, 0.22, 1) 0.2s forwards;
    opacity: 0;
    letter-spacing: 1.5px;
}

@keyframes subtitleFade {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    font-family: "Raleway", sans-serif;
    animation: breadcrumbFade 1.6s cubic-bezier(0.19, 1, 0.22, 1) 0.4s forwards;
    opacity: 0;
}

@keyframes breadcrumbFade {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.breadcrumb a {
    color: var(--text-muted);
    transition: all 0.3s ease;
    position: relative;
}

.breadcrumb a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #d4af37;
    transition: width 0.3s ease;
}

.breadcrumb a:hover {
    color: #d4af37;
}

.breadcrumb a:hover::after {
    width: 100%;
}

.breadcrumb span {
    color: #d4af37;
}

.about-intro {
    padding: 140px 0;
    background-color: #ffffff;
    background-image:
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(17, 17, 17, 0.01) 2px,
            rgba(17, 17, 17, 0.01) 4px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(17, 17, 17, 0.01) 2px,
            rgba(17, 17, 17, 0.01) 4px
        );
    background-size: 4px 4px;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-intro-text p {
    font-family: "Nunito", sans-serif;
    font-size: clamp(15px, 2vw, 17px);
    line-height: 2;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.about-intro-text p strong {
    color: var(--text-dark);
    font-weight: 700;
    font-family: "Raleway", sans-serif;
}

.about-intro-image {
    height: 520px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    position: relative;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-intro-image:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.25);
}

.about-expertise {
    padding: 140px 0;
    background-color: #ffffff;
    background-image:
        linear-gradient(135deg, rgba(212, 175, 55, 0.02) 25%, transparent 25%),
        linear-gradient(225deg, rgba(212, 175, 55, 0.02) 25%, transparent 25%),
        linear-gradient(45deg, rgba(212, 175, 55, 0.02) 25%, transparent 25%),
        linear-gradient(315deg, rgba(212, 175, 55, 0.02) 25%, transparent 25%);
    background-size: 40px 40px;
    background-position:
        0 0,
        0 0,
        20px 20px,
        20px 20px;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-top: 80px;
}

.expertise-card {
    border: 1px solid var(--border-light);
    padding: 60px 45px;
    background: #fff;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border-radius: 4px;
}

.expertise-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: rgba(212, 175, 55, 0.3);
}

.expertise-icon {
    width: 70px;
    height: 70px;
    border: 2px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    color: var(--text-dark);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.expertise-card:hover .expertise-icon {
    border-color: #d4af37;
    background: linear-gradient(135deg, #d4af37 0%, #f4e5c3 100%);
    color: #fff;
    transform: scale(1.1) rotate(10deg);
}

.expertise-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 22px;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    font-weight: 600;
}

.expertise-card p {
    font-family: "Nunito", sans-serif;
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-muted);
}

.about-global {
    padding: 160px 0;
    text-align: center;
    background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
    color: #eee;
    position: relative;
    overflow: hidden;
}

.about-global h2 {
    font-family: "Cinzel", serif;
    font-size: clamp(32px, 5vw, 52px);
    letter-spacing: 5px;
    margin-bottom: 40px;
    font-weight: 600;
    color: #fff;
}

.about-global p {
    max-width: 850px;
    margin: 0 auto 35px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(16px, 2.2vw, 20px);
    line-height: 2;
    color: #ccc;
}

.about-global .btn {
    border-color: #d4af37;
    color: #d4af37;
    margin-top: 30px;
}

.about-global .btn::before {
    background: #d4af37;
}

.about-global .btn:hover {
    color: #111;
}

/* =====================================
   RESPONSIVE DESIGN
   ===================================== */

@media (max-width: 1024px) {
    .founder-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .founder-image {
        height: 450px;
    }

    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .inner-hero {
        padding: 140px 0 100px;
    }

    .founder-vision,
    .numbers-section,
    .about-intro,
    .about-expertise,
    .about-values,
    .about-timeline,
    .about-global {
        padding: 100px 0;
    }

    .section-header-center {
        margin-bottom: 60px;
    }

    .founder-image {
        height: 400px;
    }

    .vision-quote p {
        padding-left: 50px;
        font-size: 18px;
    }

    .numbers-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 60px;
    }

    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-intro-image {
        height: 350px;
        order: -1;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .timeline-container::before {
        left: 20px;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 60px;
        padding-left: 60px;
    }

    .timeline-item:nth-child(even) .timeline-content {
        order: 0;
    }

    .timeline-item:nth-child(even) .timeline-year {
        order: 0;
        text-align: left;
    }

    .timeline-year {
        text-align: left;
        padding-right: 0;
        margin-bottom: 15px;
    }

    .timeline-year h3 {
        font-size: 36px;
    }

    .timeline-content {
        padding-left: 0;
    }

    .timeline-dot {
        left: 20px;
    }
}

@media (max-width: 480px) {
    .inner-hero h1::before,
    .inner-hero h1::after {
        margin: 0 15px;
    }

    .founder-image {
        height: 350px;
    }

    .number-card {
        padding: 40px 25px;
    }
}

/* =====================================
   LUXURY GALLERY PAGE STYLES
   ===================================== */

/* Page Header - Luxury Enhanced */
.inner-hero {
    padding: 180px 0 120px;
    text-align: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.inner-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(212,175,55,0.03)"/></svg>');
    background-size: 50px 50px;
    opacity: 0.4;
}

.inner-hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.inner-hero .container {
    position: relative;
    z-index: 1;
}

.inner-hero h1 {
    font-family: "Cinzel", serif;
    font-size: clamp(42px, 6vw, 62px);
    letter-spacing: 6px;
    margin-bottom: 24px;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
    animation: luxuryFadeIn 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.inner-hero h1::first-letter {
    color: #d4af37;
    font-size: 1.3em;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
}

.inner-hero p {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    letter-spacing: 1.5px;
    animation: luxuryFadeIn 1.4s cubic-bezier(0.19, 1, 0.22, 1) 0.2s forwards;
    opacity: 0;
}

@keyframes luxuryFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 12px;
    font-family: "Raleway", sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1.5px;
    margin-top: 24px;
    text-transform: uppercase;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    position: relative;
}

.breadcrumb a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #d4af37;
    transition: width 0.3s ease;
}

.breadcrumb a:hover {
    color: #d4af37;
}

.breadcrumb a:hover::after {
    width: 100%;
}

.breadcrumb span {
    color: rgba(212, 175, 55, 0.5);
}

/* Gallery Introduction - Luxury */
.gallery-intro-section {
    padding: 100px 0;
    background-color: #ffffff;
    background-image:
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(17, 17, 17, 0.012) 2px,
            rgba(17, 17, 17, 0.012) 4px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(17, 17, 17, 0.012) 2px,
            rgba(17, 17, 17, 0.012) 4px
        );
    background-size: 4px 4px;
    position: relative;
}

.gallery-intro-section::before {
    content: "◆";
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    color: #d4af37;
    opacity: 0.3;
}

.gallery-intro-content {
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
}

.gallery-intro-content h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(32px, 4vw, 44px);
    letter-spacing: 3px;
    margin-bottom: 32px;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 20px;
}

.gallery-intro-content h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.gallery-intro-content p {
    font-family: "Nunito", sans-serif;
    font-size: 17px;
    line-height: 2;
    color: var(--text-muted);
    margin-bottom: 24px;
    font-weight: 300;
}

/* Gallery Section - Luxury Grid */
.gallery-section {
    padding: 80px 0 100px;
    background: linear-gradient(to bottom, #fff 0%, #fafafa 100%);
    background-image:
        linear-gradient(to bottom, #fff 0%, #fafafa 100%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 20px,
            rgba(212, 175, 55, 0.015) 20px,
            rgba(212, 175, 55, 0.015) 40px
        );
}

.frontend-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.frontend-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    background: #fff;
    border: 1px solid var(--border-light);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.frontend-gallery-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.frontend-gallery-item:hover::before {
    opacity: 1;
}

.frontend-gallery-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.gallery-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 75%;
    overflow: hidden;
    cursor: pointer;
    background: var(--bg-soft);
}

.gallery-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(5%);
}

.frontend-gallery-item:hover .gallery-image {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.gallery-hover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(17, 17, 17, 0.85) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(2px);
    pointer-events: none;
}

.frontend-gallery-item:hover .gallery-hover-overlay {
    opacity: 1;
}

.gallery-hover-content {
    text-align: center;
    color: white;
    animation: zoomInContent 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes zoomInContent {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.gallery-hover-content svg {
    margin-bottom: 16px;
    stroke: #d4af37;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.gallery-hover-content p {
    font-family: "Raleway", sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

.gallery-caption {
    padding: 24px;
    background: #fff;
}

.gallery-caption h3 {
    font-family: "Playfair Display", serif;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-dark);
    letter-spacing: 0.5px;
}

.gallery-caption p {
    font-family: "Nunito", sans-serif;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Empty State - Luxury */
.gallery-empty-state {
    text-align: center;
    padding: 120px 20px;
}

.empty-icon {
    font-size: 100px;
    margin-bottom: 32px;
    opacity: 0.3;
    filter: grayscale(100%);
}

.gallery-empty-state h3 {
    font-family: "Playfair Display", serif;
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--text-dark);
    letter-spacing: 1px;
}

.gallery-empty-state p {
    font-family: "Nunito", sans-serif;
    font-size: 16px;
    color: var(--text-muted);
}

/* Content Sections - Luxury Enhanced */
.gallery-content-section {
    padding: 120px 0;
    background: #fff;
}

.gallery-content-section.alt-bg {
    background-color: #fafafa;
    background-image: radial-gradient(
        circle at 2px 2px,
        rgba(212, 175, 55, 0.025) 1px,
        transparent 1px
    );
    background-size: 20px 20px;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.content-text h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(32px, 4vw, 42px);
    letter-spacing: 2px;
    margin-bottom: 32px;
    font-weight: 500;
    position: relative;
    padding-bottom: 20px;
}

.content-text h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #d4af37;
}

.content-text p {
    font-family: "Nunito", sans-serif;
    font-size: 16px;
    line-height: 2;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.content-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    padding: 36px;
    background: #fff;
    border: 1px solid var(--border-light);
    border-left: 4px solid #d4af37;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(212, 175, 55, 0.05),
        transparent
    );
    transition: left 0.6s ease;
}

.feature-item:hover::before {
    left: 100%;
}

.gallery-content-section.alt-bg .feature-item {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.feature-item:hover {
    transform: translateX(12px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-left-color: #b8935f;
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-icon svg {
    stroke: #d4af37;
}

.feature-item h3 {
    font-family: "Playfair Display", serif;
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.feature-item p {
    font-family: "Nunito", sans-serif;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
}

.value-item {
    padding: 32px;
    border: 1px solid var(--border-light);
    background: #fff;
    transition: all 0.3s ease;
}

.value-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.value-item h3 {
    font-family: "Playfair Display", serif;
    font-size: 22px;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.value-item p {
    font-family: "Nunito", sans-serif;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* Centered Content - Luxury */
.content-centered {
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
}

.content-centered h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(32px, 4vw, 42px);
    letter-spacing: 2px;
    margin-bottom: 32px;
    font-weight: 500;
    position: relative;
    padding-bottom: 20px;
}

.content-centered h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.content-centered p {
    font-family: "Nunito", sans-serif;
    font-size: 17px;
    line-height: 2;
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* Stats Grid - Luxury Enhanced */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    margin-top: 80px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    border: 1px solid var(--border-light);
    background: #fff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.stat-item:hover::before {
    transform: translateX(0);
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: rgba(212, 175, 55, 0.3);
}

.stat-number {
    font-family: "Cinzel", serif;
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    background: linear-gradient(135deg, #1a1a1a 0%, #4a4a4a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-family: "Raleway", sans-serif;
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
}

/* CTA Section - Luxury Dark */
.gallery-cta-section {
    padding: 140px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.gallery-cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(212,175,55,0.03)"/></svg>');
    background-size: 50px 50px;
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(32px, 4vw, 46px);
    letter-spacing: 3px;
    margin-bottom: 24px;
    font-weight: 500;
}

.cta-content h2::first-letter {
    color: #d4af37;
}

.cta-content p {
    font-family: "Cormorant Garamond", serif;
    font-size: 19px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 48px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    letter-spacing: 0.5px;
}

.cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(212, 175, 55, 0.5);
    color: #d4af37;
    font-family: "Raleway", sans-serif;
    padding: 16px 40px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-outline::before {
    background: #d4af37;
}

.btn-outline:hover {
    background: #d4af37;
    color: #111;
    border-color: #d4af37;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

/* Lightbox - Luxury Enhanced */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.97);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
    animation: fadeIn 0.4s ease;
    backdrop-filter: blur(10px);
}

.lightbox.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: luxuryZoomIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes luxuryZoomIn {
    from {
        transform: scale(0.85);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.lightbox-info {
    margin-top: 32px;
    text-align: center;
    color: white;
    max-width: 650px;
}

.lightbox-info h3 {
    font-family: "Playfair Display", serif;
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 500;
    letter-spacing: 1px;
}

.lightbox-info p {
    font-family: "Nunito", sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.lightbox-close,
.lightbox-nav {
    position: absolute;
    width: 56px;
    height: 56px;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10001;
    backdrop-filter: blur(10px);
}

.lightbox-close:hover,
.lightbox-nav:hover {
    background: rgba(212, 175, 55, 0.9);
    border-color: #d4af37;
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.lightbox-close {
    top: 40px;
    right: 40px;
}

.lightbox-close:hover {
    transform: rotate(90deg) scale(1.1);
}

.lightbox-prev {
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-counter {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-family: "Raleway", sans-serif;
    font-size: 13px;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 30px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
}

/* Responsive - Luxury */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .inner-hero {
        padding: 140px 0 80px;
    }

    .gallery-intro-section,
    .gallery-content-section,
    .gallery-cta-section {
        padding: 80px 0;
    }

    .gallery-section {
        padding: 60px 0 80px;
    }

    .frontend-gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 24px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        max-width: 400px;
        margin: 0 auto;
    }

    .lightbox-close,
    .lightbox-nav {
        width: 48px;
        height: 48px;
    }

    .lightbox-close {
        top: 20px;
        right: 20px;
    }

    .lightbox-prev {
        left: 20px;
    }

    .lightbox-next {
        right: 20px;
    }
}

@media (max-width: 480px) {
    .frontend-gallery-grid {
        grid-template-columns: 1fr;
    }

    .lightbox-nav {
        display: none;
    }

    .inner-hero h1 {
        font-size: 32px;
        letter-spacing: 3px;
    }
}
/* ===============================
   CONTACT PAGE STYLES
   =============================== */

/* Contact Intro Section */
.contact-intro-section {
    padding: 100px 0;
    background-color: #fafafa;
    background-image:
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(17, 17, 17, 0.012) 2px,
            rgba(17, 17, 17, 0.012) 4px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(17, 17, 17, 0.012) 2px,
            rgba(17, 17, 17, 0.012) 4px
        );
    background-size: 4px 4px;
}

.contact-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.intro-text h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 500;
    margin-bottom: 32px;
    letter-spacing: 2px;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 20px;
}

.intro-text h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-accent), transparent);
}

.intro-text p {
    font-family: "Nunito", sans-serif;
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.intro-text p strong {
    color: var(--text-dark);
    font-weight: 600;
    font-family: "Raleway", sans-serif;
}

.intro-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.highlight-item {
    padding: 30px;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    background: #fff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.highlight-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gold-accent);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.highlight-item:hover::before {
    transform: scaleY(1);
}

.highlight-item:hover {
    transform: translateX(12px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--gold-accent);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold-accent), #b8935f);
    border-radius: 12px;
    margin-bottom: 12px;
    color: #fff;
    transition: transform 0.3s ease;
}

.highlight-item:hover .highlight-icon {
    transform: scale(1.1) rotate(5deg);
}

.highlight-item strong {
    font-family: "Raleway", sans-serif;
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 600;
}

.highlight-item span {
    font-family: "Nunito", sans-serif;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Contact Form Section */
.contact-form-section {
    padding: 100px 0;
    background-color: #f5f5f5;
    background-image: radial-gradient(
        circle at 2px 2px,
        rgba(212, 175, 55, 0.025) 1px,
        transparent 1px
    );
    background-size: 20px 20px;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 60px;
    align-items: center;
}

/* Form Wrapper */
.contact-form-wrapper {
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-light);
}

.contact-form-wrapper h2 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 600;
    margin-bottom: 12px;
}

.form-subtext {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 32px;
    font-family: "Nunito", sans-serif;
}

/* Alert Messages */
.alert {
    padding: 14px 16px;
    border-radius: 8px;
    margin-bottom: 24px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border: 1px solid;
}

.alert.success {
    background: #d1fae5;
    border-color: #10b981;
    color: #065f46;
}

.alert.error {
    background: #fee2e2;
    border-color: #ef4444;
    color: #991b1b;
}

.alert-icon {
    flex-shrink: 0;
}

.alert-message {
    font-size: 14px;
    line-height: 1.5;
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full {
    grid-column: span 2;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-family: "Raleway", sans-serif;
}

.required {
    color: #ef4444;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    font-size: 15px;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    background: #fff;
    font-family: inherit;
    transition: all 0.3s ease;
    font-family: "Nunito", sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--text-dark);
    box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
}

/* Submit Button */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    /* background: var(--text-dark); */
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Raleway", sans-serif;
}

.btn-primary:hover {
    background: transparent;
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    color: #fff;
}

/* Contact Details Wrapper */
.contact-details-wrapper {
    position: sticky;
    top: 120px;
    background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
    color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-details-wrapper h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 32px;
    letter-spacing: 1px;
}

.contact-detail {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-detail:last-of-type {
    border-bottom: none;
    margin-bottom: 24px;
    padding-bottom: 0;
}

.detail-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-content {
    flex: 1;
}

.detail-content .label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
}

.detail-content p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.detail-content a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.detail-content a:hover {
    color: rgba(255, 255, 255, 0.7);
}

.contact-note {
    display: flex;
    gap: 12px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-note svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-note p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    font-family: "Nunito", sans-serif;
}

/* Map Section */
.contact-map-section {
    width: 100%;
    height: 450px;
}

.contact-map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(20%);
}

/* SEO Content Section */
.contact-seo-section {
    padding: 120px 0;
    background-color: #ffffff;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(212, 175, 55, 0.015) 20px,
        rgba(212, 175, 55, 0.015) 40px
    );
}

.seo-content {
    max-width: 1100px;
    margin: 0 auto;
}

.seo-content h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 500;
    text-align: center;
    margin-bottom: 32px;
    letter-spacing: 2px;
    color: var(--text-dark);
}

.seo-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-light);
}

.seo-intro p {
    font-family: "Cormorant Garamond", serif;
    font-size: 20px;
    line-height: 1.8;
    color: #555;
}

.seo-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.seo-column h3 {
    font-family: "Playfair Display", serif;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 24px;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 12px;
}

.seo-column h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gold-accent);
}

.seo-column p {
    font-family: "Nunito", sans-serif;
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.seo-column p strong {
    color: var(--text-dark);
    font-weight: 600;
    font-family: "Raleway", sans-serif;
}

.seo-services {
    background-color: #fafafa;
    background-image:
        linear-gradient(135deg, rgba(212, 175, 55, 0.02) 25%, transparent 25%),
        linear-gradient(225deg, rgba(212, 175, 55, 0.02) 25%, transparent 25%),
        linear-gradient(45deg, rgba(212, 175, 55, 0.02) 25%, transparent 25%),
        linear-gradient(315deg, rgba(212, 175, 55, 0.02) 25%, transparent 25%);
    background-size: 40px 40px;
    background-position:
        0 0,
        0 0,
        20px 20px,
        20px 20px;
    padding: 50px;
    border-radius: 16px;
    margin-bottom: 60px;
    border: 1px solid var(--border-light);
}

.seo-services h3 {
    font-family: "Playfair Display", serif;
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--text-dark);
    text-align: center;
}

.seo-services p {
    font-family: "Nunito", sans-serif;
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-muted);
    text-align: center;
}

.seo-cta {
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
}

.seo-cta h3 {
    font-family: "Playfair Display", serif;
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.seo-cta p {
    font-family: "Nunito", sans-serif;
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.seo-highlight {
    background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
    color: #fff !important;
    padding: 30px 40px;
    border-radius: 12px;
    margin-top: 40px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.seo-highlight strong {
    color: var(--gold-accent) !important;
    font-family: "Raleway", sans-serif;
}

/* ===============================
   RESPONSIVE
   =============================== */

@media (max-width: 1024px) {
    .contact-intro-grid,
    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-details-wrapper {
        position: relative;
        top: auto;
    }
    .seo-columns {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .seo-services {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .contact-intro-section,
    .contact-form-section,
    .contact-seo-section {
        padding: 70px 0;
    }

    .contact-form-wrapper {
        padding: 40px 30px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full {
        grid-column: span 1;
    }

    .contact-details-wrapper {
        padding: 40px 30px;
    }

    .contact-map-section {
        height: 350px;
    }
    .intro-text h2 {
        font-size: 28px;
        margin-bottom: 24px;
    }

    .intro-text h2::after {
        width: 60px;
    }

    .highlight-item {
        padding: 24px;
    }

    .highlight-icon {
        width: 45px;
        height: 45px;
    }

    .highlight-item strong {
        font-size: 16px;
    }

    .contact-seo-section {
        padding: 80px 0;
    }

    .seo-content h2 {
        font-size: 28px;
    }

    .seo-intro p {
        font-size: 18px;
    }

    .seo-services {
        padding: 30px 20px;
    }

    .seo-highlight {
        padding: 24px 20px;
    }
}

@media (max-width: 480px) {
    .contact-form-wrapper,
    .contact-details-wrapper {
        padding: 30px 20px;
        border-radius: 8px;
    }

    .btn-primary {
        width: 100%;
        justify-content: center;
    }

    .contact-detail {
        flex-direction: column;
        gap: 12px;
    }

    .detail-icon {
        align-self: flex-start;
    }
    .seo-content h2 {
        font-size: 24px;
    }

    .seo-column h3,
    .seo-services h3,
    .seo-cta h3 {
        font-size: 20px;
    }
}
/* Spinner animation */
.spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.spinner circle {
    stroke-dasharray: 31.4;
    stroke-dashoffset: 15.7;
}
