/* ==========================================================================
   SHIVAJI EYE CARE - DESIGN SYSTEM & STYLESHEET
   Aesthetics: Modern luxury optical brand with elegant Indian heritage accents.
   ========================================================================== */

/* --- Custom Variables & Theme Tokens --- */
:root {
    /* Color Palette */
    --bhagwa: hsl(19, 82%, 49%);         /* Deep Saffron - #E65A16 */
    --bhagwa-light: hsl(19, 85%, 58%);   /* Saffron Bright */
    --saffron-gradient: linear-gradient(135deg, hsl(19, 82%, 49%) 0%, hsl(33, 100%, 60%) 100%);
    --bg-light-saffron: hsl(20, 100%, 98.5%); /* Off-white warmth - #FFF8F4 */
    
    --gold: hsl(42, 54%, 56%);           /* Metallic gold - #C5A059 */
    --gold-light: hsl(42, 60%, 65%);     /* High metallic shine */
    --gold-gradient: linear-gradient(135deg, hsl(42, 54%, 48%) 0%, hsl(43, 62%, 62%) 50%, hsl(42, 54%, 42%) 100%);
    
    --white: hsl(0, 0%, 100%);
    --charcoal: hsl(20, 13%, 11%);       /* Luxury dark charcoal - #1F1A17 */
    --charcoal-light: hsl(20, 10%, 20%); /* Secondary warm dark */
    
    /* Text Colors */
    --color-text-dark: hsl(20, 13%, 12%);
    --color-text-light: hsl(20, 15%, 85%);
    --color-text-muted: hsl(20, 8%, 45%);
    
    /* Typography */
    --font-headings: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Layout Details */
    --navbar-height: 85px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 32px;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-fast: all 0.2s ease-out;
    --shadow-soft: 0 10px 30px rgba(31, 26, 23, 0.05);
    --shadow-premium: 0 15px 40px rgba(230, 90, 22, 0.08);
    --shadow-gold: 0 10px 25px rgba(197, 160, 89, 0.15);
}

/* --- Base & Reset Rules --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scroll-padding-top: var(--navbar-height);
}

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--color-text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- Typography System --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    font-weight: 700;
    line-height: 1.2;
    color: var(--charcoal);
}

p {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--color-text-muted);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- Floating Background Glowing Lights --- */
.glow-accent {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.12;
    z-index: -1;
    pointer-events: none;
    mix-blend-mode: multiply;
}
.glow-1 {
    top: 15%;
    left: -200px;
    background: var(--bhagwa);
    animation: drift 20s infinite alternate ease-in-out;
}
.glow-2 {
    top: 55%;
    right: -200px;
    background: var(--gold);
    animation: drift 25s infinite alternate-reverse ease-in-out;
}
@keyframes drift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(80px, 50px) scale(1.15); }
}

/* --- Layout Utility Classes --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
    position: relative;
}

.text-center {
    text-align: center;
}

.text-gradient {
    background: var(--saffron-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Common UI Components --- */
/* Section Titles */
.section-title-wrap {
    margin-bottom: 50px;
}
.section-subtitle {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--bhagwa);
    display: block;
    margin-bottom: 12px;
    text-transform: uppercase;
}
.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}
.section-desc {
    max-width: 680px;
    margin: 0 auto;
    font-size: 1.15rem;
}

/* Premium Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--border-radius-sm);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--saffron-gradient);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(230, 90, 22, 0.25);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(230, 90, 22, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--bhagwa);
    border-color: var(--bhagwa);
}
.btn-secondary:hover {
    background: var(--bhagwa);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.35);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--charcoal);
    border-color: var(--white);
    transform: translateY(-3px);
}

/* Glassmorphism Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: var(--shadow-soft);
    border-radius: var(--border-radius-md);
    transition: var(--transition-smooth);
}
.glass-card:hover {
    border-color: rgba(230, 90, 22, 0.25);
    box-shadow: var(--shadow-premium);
}

/* --- Header / Navigation Bar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--navbar-height);
    z-index: 1000;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    height: 75px;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.nav-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}
.navbar.scrolled .logo-img {
    height: 44px;
}
.logo-text {
    display: flex;
    flex-direction: column;
}
.brand-name {
    font-family: var(--font-headings);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--charcoal);
    letter-spacing: 1px;
    line-height: 1;
}
.brand-sub {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 2px;
    margin-top: 4px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--charcoal);
    position: relative;
    padding: 6px 0;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--saffron-gradient);
    transition: var(--transition-smooth);
}
.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}
.nav-link:hover {
    color: var(--bhagwa);
}

.nav-cta {
    padding: 8px 18px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 4px;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}
.menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--charcoal);
    transition: var(--transition-smooth);
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    color: var(--charcoal);
    background-color: var(--bg-light-saffron); /* Warm off-white saffron cream */
    padding: 140px 0 80px 0;
}

/* Hero background animated gradient */
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        #FFFFFF,
        #FFEEDC, /* Silk Saffron */
        #FFF2EA, /* Silk Orange */
        #F5EAD2, /* Silk Gold */
        #FFFFFF);
    background-size: 400% 400%;
    animation: gradientShift 24s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

/* Second gradient layer for depth */
.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 700px 700px at 15% 25%, rgba(255, 153, 51, 0.07) 0%, transparent 80%),
        radial-gradient(ellipse 600px 600px at 85% 75%, rgba(212, 168, 67, 0.06) 0%, transparent 80%),
        radial-gradient(ellipse 400px 400px at 65% 15%, rgba(255, 102, 0, 0.05) 0%, transparent 80%);
    background-size: 100% 100%;
    animation: floatBlobs 18s ease-in-out infinite alternate;
    z-index: 0;
    pointer-events: none;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    25% { background-position: 50% 100%; }
    50% { background-position: 100% 50%; }
    75% { background-position: 50% 0%; }
    100% { background-position: 0% 50%; }
}

@keyframes floatBlobs {
    0% { transform: scale(1) translate(0, 0); }
    50% { transform: scale(1.1) translate(30px, -20px); }
    100% { transform: scale(1.05) translate(-20px, 15px); }
}

/* Ensure hero content appears above pseudo-elements */
.hero-section > * {
    position: relative;
    z-index: 1;
}

/* Floating Ambient Glow Accent Orbs */
.hero-glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.14;
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: multiply; /* Blends organic warm tones into the light cream background */
}
.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--saffron-gradient);
    top: -100px;
    left: -100px;
    animation: pulseOrb 12s infinite alternate ease-in-out;
}
.orb-2 {
    width: 600px;
    height: 600px;
    background: var(--gold-gradient);
    bottom: -150px;
    right: -100px;
    animation: pulseOrb 16s infinite alternate-reverse ease-in-out;
}

@keyframes pulseOrb {
    0% {
        transform: scale(1) translate(0, 0);
        opacity: 0.12;
    }
    100% {
        transform: scale(1.18) translate(60px, 40px);
        opacity: 0.2;
    }
}

.hero-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 60px;
    z-index: 2;
    position: relative;
}

.hero-content {
    max-width: 650px;
    z-index: 5;
}

.hero-title-premium {
    display: flex;
    flex-direction: column;
    line-height: 0.9;
    margin-bottom: 24px;
}

/* Both brand lines in solid saffron orange */
.brand-gradient-wrapper {
    display: flex;
    flex-direction: column;
    line-height: 0.9;
    color: var(--bhagwa);
}

.brand-top-legacy {
    font-family: var(--font-headings);
    font-size: 5.8rem;
    font-weight: 700;
    letter-spacing: 7px;
    text-transform: uppercase;
    color: var(--bhagwa);
}

.brand-bottom-glow {
    font-family: var(--font-headings);
    font-size: 6.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--bhagwa);
}

.brand-bottom-glow.text-gradient-saffron {
    -webkit-text-fill-color: var(--bhagwa) !important;
    color: var(--bhagwa) !important;
    background: none !important;
}

/* Inside brand-gradient-wrapper, override gradient to solid color */
.brand-gradient-wrapper .text-gradient-saffron {
    background: none;
    -webkit-text-fill-color: var(--bhagwa);
    color: var(--bhagwa);
}

.hero-subheadline-new {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--bhagwa);
    margin-bottom: 24px;
    border-left: 3px solid var(--bhagwa);
    padding-left: 15px;
    line-height: 1.2;
}

.hero-description-new {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    max-width: 520px;
}

.hero-ctas-new {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

/* Premium Buttons */
.btn-premium-saffron {
    background: var(--saffron-gradient);
    color: var(--white) !important;
    font-weight: 600;
    border: 1px solid var(--bhagwa);
    box-shadow: 0 6px 20px rgba(230, 90, 22, 0.22);
    border-radius: var(--border-radius-sm);
}
.btn-premium-saffron:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(230, 90, 22, 0.38);
    background: linear-gradient(135deg, hsl(19, 85%, 55%) 0%, hsl(33, 100%, 65%) 100%);
}

.btn-premium-outline {
    background: var(--white);
    color: var(--bhagwa);
    border: 1px solid rgba(230, 90, 22, 0.35);
    border-radius: var(--border-radius-sm);
}
.btn-premium-outline:hover {
    background: var(--saffron-gradient);
    color: var(--white);
    border-color: var(--bhagwa);
    transform: translateY(-3px);
}

/* Right Column Showcase */
.hero-showcase-premium {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
}

.showcase-card-wrapper {
    position: relative;
    width: 100%;
    max-width: 440px;
    aspect-ratio: 1;
    border-radius: var(--border-radius-lg);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(230, 90, 22, 0.12);
    box-shadow: 0 25px 60px rgba(31, 26, 23, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    overflow: hidden; /* Full-bleed clipping */
    transition: var(--transition-smooth);
}
.showcase-card-wrapper:hover {
    border-color: rgba(230, 90, 22, 0.28);
    box-shadow: 0 30px 80px rgba(230, 90, 22, 0.12), 0 25px 60px rgba(31, 26, 23, 0.1);
}

.showcase-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), visibility 1.2s;
    z-index: 1;
    padding: 0; /* Full-bleed */
    overflow: hidden;
    border-radius: inherit;
}
.showcase-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 5;
}

.showcase-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover entire square card */
    filter: none;
    transform: scale(1);
    transition: transform 6s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none;
}
.showcase-slide.active:hover .showcase-main-image {
    transform: scale(1.06); /* Slow, smooth zoom on hover */
}

/* Pulsing Interactive Hotspots */
.hotspot-marker {
    position: absolute;
    z-index: 10;
    cursor: pointer;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hotspot-lenses {
    top: 48%;
    left: 36%;
}
.hotspot-bridge {
    top: 45%;
    left: 54%;
}
.hotspot-temples {
    top: 36%;
    left: 82%;
}

.marker-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--bhagwa);
    box-shadow: 0 0 12px var(--bhagwa);
    transition: var(--transition-fast);
}

.marker-pulse {
    position: absolute;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid var(--bhagwa);
    animation: pulseRingSaffron 2.2s infinite ease-out;
    opacity: 0;
    pointer-events: none;
}

@keyframes pulseRingSaffron {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    50% {
        opacity: 0.85;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

.hotspot-marker:hover .marker-dot,
.hotspot-marker.active .marker-dot {
    background-color: var(--bhagwa-light);
    transform: scale(1.4);
    box-shadow: 0 0 15px var(--bhagwa);
}

/* Glassmorphic Tooltips */
.hotspot-popup {
    position: absolute;
    width: 270px;
    padding: 16px 20px;
    border-radius: var(--border-radius-md);
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(230, 90, 22, 0.25);
    box-shadow: 0 20px 45px rgba(31, 26, 23, 0.15);
    bottom: 38px;
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none;
    z-index: 100;
}
.hotspot-popup::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.97);
    border-right: 1px solid rgba(230, 90, 22, 0.25);
    border-bottom: 1px solid rgba(230, 90, 22, 0.25);
}

.hotspot-marker:hover .hotspot-popup,
.hotspot-marker.active .hotspot-popup {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.hotspot-popup h5 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--bhagwa);
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}
.hotspot-popup p {
    font-family: var(--font-body);
    font-size: 0.82rem;
    line-height: 1.45;
    color: var(--color-text-dark);
    margin: 0;
}

/* Horizontal Bottom Highlights Grid */
.hero-highlights-wrap {
    width: 100%;
    z-index: 5;
    margin-top: 50px;
    position: relative;
}

.hero-highlights-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(230, 90, 22, 0.12);
    border-radius: var(--border-radius-md);
    padding: 26px 45px;
    gap: 15px;
    box-shadow: 0 20px 45px rgba(31, 26, 23, 0.06);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
    justify-content: center;
}
.highlight-item:first-child {
    justify-content: flex-start;
}
.highlight-item:last-child {
    justify-content: flex-end;
}

.hl-number {
    font-family: var(--font-headings);
    font-size: 3rem;
    font-weight: 700;
    color: var(--bhagwa);
    line-height: 1;
    text-shadow: 0 2px 12px rgba(230, 90, 22, 0.15);
}

.hl-text-wrap {
    display: flex;
    flex-direction: column;
}

.hl-title {
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--charcoal);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.hl-desc {
    font-family: var(--font-body);
    font-size: 0.76rem;
    color: var(--color-text-muted);
    margin-top: 4px;
}

.hl-divider-h {
    width: 1px;
    height: 44px;
    background: rgba(230, 90, 22, 0.12);
}

/* Bottom Arrow Indicator */
.scroll-down-arrow-new {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-text-muted);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    z-index: 5;
    transition: var(--transition-fast);
}
.scroll-down-arrow-new:hover {
    color: var(--bhagwa);
}

.scroll-down-arrow-new i {
    animation: bounce 1.8s infinite;
}

.arrow-dot-new {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--bhagwa);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

/* --- About Section --- */
.about-section {
    background-color: var(--bg-light-saffron);
}
.about-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: center;
}

/* Heritage Arch Framing */
.heritage-frame {
    position: relative;
    padding-right: 40px;
    padding-bottom: 40px;
}
.arch-window {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 50% 50% var(--border-radius-md) var(--border-radius-md) / 30% 30% var(--border-radius-md) var(--border-radius-md);
    overflow: hidden;
    border: 6px solid var(--white);
    box-shadow: var(--shadow-premium);
    position: relative;
}
.arch-window::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    border: 1px solid var(--gold);
    border-radius: 50% 50% var(--border-radius-sm) var(--border-radius-sm) / 30% 30% var(--border-radius-sm) var(--border-radius-sm);
    pointer-events: none;
}
.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}
.about-img:hover {
    transform: scale(1.05);
}

.about-card-overlap {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 250px;
    padding: 16px;
    border-radius: var(--border-radius-md);
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 15px 35px rgba(31, 26, 23, 0.1);
}
.overlap-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
}
.overlap-content h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-top: 4px;
}
.gold-accent-text {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-parahighlight {
    font-family: var(--font-headings);
    font-size: 1.45rem;
    line-height: 1.4;
    color: var(--charcoal);
    margin-bottom: 20px;
    font-weight: 500;
}
.about-paradefault {
    margin-bottom: 30px;
}

.about-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.feature-mini-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--white);
    padding: 18px;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-soft);
    border-left: 3px solid var(--bhagwa);
}
.feature-icon-wrap {
    font-size: 1.35rem;
    color: var(--bhagwa);
}
.feature-mini-card h5 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--charcoal);
}

/* --- Featured Collections Section --- */
.collections-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 28px;
}

/* Card 1, 2, 3 span 2 columns. Card 4, 5 span 3 columns dynamically for beautiful symmetry */
.collections-grid > div:nth-child(1),
.collections-grid > div:nth-child(2),
.collections-grid > div:nth-child(3) {
    grid-column: span 2;
}
.collections-grid > div:nth-child(4),
.collections-grid > div:nth-child(5) {
    grid-column: span 3;
}

.collection-card {
    background: var(--white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(197, 160, 89, 0.1);
    transition: var(--transition-smooth);
}

.card-image-wrap {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    position: relative;
}
.collection-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}
.card-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(31, 26, 23, 0.45) 0%, rgba(31, 26, 23, 0) 60%);
}

.card-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.card-tag {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--bhagwa);
    margin-bottom: 8px;
}
.card-title {
    font-size: 1.55rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.card-text {
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}
.card-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--charcoal);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    align-self: flex-start;
}
.card-link i {
    transition: transform var(--transition-fast);
}

/* Card Hover Interactions */
.collection-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(230, 90, 22, 0.08);
    border-color: rgba(230, 90, 22, 0.35);
}
.collection-card:hover .collection-img {
    transform: scale(1.06);
}
.collection-card:hover .card-link {
    color: var(--bhagwa);
}
.collection-card:hover .card-link i {
    transform: translateX(4px);
}

/* --- Services Section --- */
.services-section {
    background-color: var(--bg-light-saffron);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--white);
    padding: 35px 24px;
    border-radius: var(--border-radius-md);
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid transparent;
    transition: var(--transition-smooth);
}
.service-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: var(--bg-light-saffron);
    color: var(--bhagwa);
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    border: 1px solid rgba(230, 90, 22, 0.1);
    transition: var(--transition-smooth);
}
.service-title {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 12px;
}
.service-text {
    font-size: 0.92rem;
    line-height: 1.5;
}

/* Hover effects */
.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(230, 90, 22, 0.25);
    box-shadow: 0 15px 30px rgba(230, 90, 22, 0.06);
}
.service-card:hover .service-icon {
    background: var(--saffron-gradient);
    color: var(--white);
    transform: rotateY(180deg);
}

/* --- Why Choose Us Section --- */
.why-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 70px;
    align-items: center;
}

.why-intro {
    font-size: 1.15rem;
    margin-bottom: 35px;
}

.why-bullets {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.why-bullet-item {
    display: flex;
    gap: 20px;
}
.bullet-check {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(230, 90, 22, 0.1);
    color: var(--bhagwa);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 3px;
}
.why-bullet-item h4 {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 6px;
}
.why-bullet-item p {
    font-size: 0.95rem;
}

/* Why Visual Frame */
.why-visual-wrapper {
    position: relative;
}
.why-main-img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-premium);
}
.why-stat-box {
    position: absolute;
    bottom: -25px;
    left: -25px;
    padding: 24px;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    gap: 16px;
    width: calc(100% - 20px);
    max-width: 310px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}
.stat-icon {
    font-size: 2.2rem;
    color: var(--gold);
}
.stat-text span {
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 2.3rem;
    color: var(--charcoal);
    line-height: 1;
}
.stat-text p {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* --- Testimonials Section --- */
.testimonials-section {
    background-color: var(--charcoal);
    color: var(--white);
}
.testimonials-section h2, 
.testimonials-section h4 {
    color: var(--white);
}

.testimonials-slider-container {
    max-width: 800px;
    margin: 40px auto 0;
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.testimonial-card {
    min-width: 100%;
    padding: 50px 40px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--color-text-light);
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.quote-icon {
    font-size: 2.5rem;
    color: rgba(230, 90, 22, 0.35);
    line-height: 1;
}
.testimonial-text {
    font-family: var(--font-headings);
    font-size: 1.35rem;
    line-height: 1.5;
    font-style: italic;
    color: var(--color-text-light);
    font-weight: 300;
}
.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
}
.user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(230, 90, 22, 0.15);
    color: var(--bhagwa-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}
.user-info {
    flex-grow: 1;
}
.user-name {
    font-size: 1.05rem;
    font-weight: 600;
}
.user-status {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
}
.rating-stars {
    color: var(--gold);
    display: flex;
    gap: 4px;
    font-size: 0.85rem;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
    padding: 0 10px;
}
.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.slider-btn:hover {
    background: var(--saffron-gradient);
    border-color: var(--bhagwa);
    transform: scale(1.08);
}
.slider-dots {
    display: flex;
    gap: 10px;
}
.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition-smooth);
}
.slider-dot.active {
    background: var(--bhagwa);
    transform: scale(1.3);
}

/* --- Gallery Section --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.gallery-item {
    position: relative;
    aspect-ratio: 1/1;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    border: 1px solid rgba(197, 160, 89, 0.1);
}
.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}
.gallery-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(31, 26, 23, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: var(--transition-smooth);
    color: var(--white);
}
.gallery-hover-overlay i {
    font-size: 1.8rem;
    transform: scale(0.7);
    transition: transform var(--transition-smooth);
}
.gallery-hover-overlay span {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Gallery Hover interactions */
.gallery-item:hover .gallery-img {
    transform: scale(1.08);
}
.gallery-item:hover .gallery-hover-overlay {
    opacity: 1;
}
.gallery-item:hover .gallery-hover-overlay i {
    transform: scale(1);
}

/* --- Lightbox Modal --- */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 12, 10, 0.95);
    z-index: 1100;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.lightbox-modal.show {
    display: flex;
    opacity: 1;
}
.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 3rem;
    color: var(--white);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}
.lightbox-close:hover {
    color: var(--bhagwa);
}
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.lightbox-nav:hover {
    background: var(--bhagwa);
    border-color: var(--bhagwa);
}
.lightbox-prev { left: 40px; }
.lightbox-next { right: 40px; }

.lightbox-content {
    max-width: 80%;
    max-height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
#lightboxImg {
    max-width: 100%;
    max-height: 70vh;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}
.lightbox-caption {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    letter-spacing: 1px;
}

/* --- Contact & Booking Section --- */
.contact-section {
    background-color: var(--bg-light-saffron);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
}

/* Contact Form container */
.contact-form-wrap {
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
}
.form-intro {
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.appointment-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-group label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--charcoal);
    letter-spacing: 0.5px;
}
.form-group label .required {
    color: var(--bhagwa);
}
.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}
.input-icon {
    position: absolute;
    left: 16px;
    color: var(--color-text-muted);
    font-size: 1rem;
    transition: var(--transition-fast);
}
.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 13px 16px 13px 44px;
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(31, 26, 23, 0.15);
    font-family: var(--font-body);
    font-size: 0.95rem;
    background: var(--white);
    color: var(--charcoal);
    outline: none;
    transition: var(--transition-smooth);
}
.form-group textarea {
    padding-left: 44px;
    resize: vertical;
}
.msg-icon {
    top: 18px;
}

/* Focus Animations */
.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--bhagwa);
    box-shadow: 0 0 0 4px rgba(230, 90, 22, 0.08);
}
.form-group input:focus + .input-icon,
.form-group textarea:focus + .input-icon {
    color: var(--bhagwa);
}

.error-msg {
    color: #e53e3e;
    font-size: 0.8rem;
    display: none;
}
.form-group.invalid .error-msg {
    display: block;
}
.form-group.invalid input {
    border-color: #e53e3e;
    background-color: #fffafb;
}

.btn-submit {
    align-self: flex-start;
    padding: 14px 35px;
    margin-top: 10px;
    font-size: 0.9rem;
}

/* Form Success Overlay */
.form-success-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
    z-index: 10;
}
.form-success-overlay.active {
    display: flex;
    animation: fadeIn 0.4s ease-out forwards;
}
.success-content {
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.success-icon {
    font-size: 4rem;
    color: var(--bhagwa);
    animation: scaleUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
.success-content h3 {
    font-size: 2rem;
    font-weight: 700;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes scaleUp {
    from { transform: scale(0.5); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Contact Info & Details */
.contact-info-wrap {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.info-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.info-card {
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(230, 90, 22, 0.08);
    color: var(--bhagwa);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}
.info-text h4 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 4px;
}
.info-text p {
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Map Card */
.map-card {
    padding: 10px;
    overflow: hidden;
}
.map-border-accent {
    border-radius: calc(var(--border-radius-md) - 6px);
    overflow: hidden;
    border: 1px solid rgba(197, 160, 89, 0.3);
}

/* --- Footer --- */
.footer {
    background-color: var(--white);
    border-top: 1px solid rgba(197, 160, 89, 0.2);
    padding: 80px 0 30px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.footer-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    align-self: flex-start;
}
.footer-brand-title {
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.footer-brand-desc {
    font-size: 0.92rem;
    line-height: 1.6;
}

.footer-socials {
    display: flex;
    gap: 12px;
}
.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bg-light-saffron);
    border: 1px solid rgba(230, 90, 22, 0.1);
    color: var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}
.footer-socials a:hover {
    background: var(--saffron-gradient);
    color: var(--white);
    border-color: var(--bhagwa);
    transform: translateY(-3px);
}

.footer-links-wrap h4,
.footer-contact h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: var(--charcoal);
    position: relative;
    display: inline-block;
}
.footer-links-wrap h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 25px;
    height: 2px;
    background: var(--bhagwa);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-links a {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}
.footer-links a:hover {
    color: var(--bhagwa);
    padding-left: 4px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.footer-contact p {
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.footer-contact p i {
    color: var(--bhagwa);
    margin-top: 4px;
    font-size: 0.95rem;
}

.footer-bottom {
    border-top: 1px solid rgba(31, 26, 23, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
.footer-bottom p {
    font-size: 0.88rem;
}
.creator-tag {
    color: var(--gold);
    font-weight: 600;
}

/* --- Floating WhatsApp Button --- */
.whatsapp-floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: var(--white);
    font-size: 1.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
    z-index: 999;
    transition: var(--transition-smooth);
}
.whatsapp-floating-btn:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background: var(--charcoal);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.82rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
    letter-spacing: 0.5px;
}
.whatsapp-floating-btn:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* --- Scroll Reveal Animations --- */
.scroll-reveal {
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s ease-out;
    transition-delay: var(--delay, 0ms);
}
.fade-up {
    transform: translateY(40px);
}
.fade-down {
    transform: translateY(-40px);
}
.fade-left {
    transform: translateX(-40px);
}
.fade-right {
    transform: translateX(40px);
}

.scroll-reveal.active {
    opacity: 1;
    transform: translate(0, 0);
}

/* --- Responsive Breakpoints --- */

/* Screen Sizes: <= 1200px */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 4rem;
    }
    .collections-grid {
        gap: 20px;
    }
}

/* Screen Sizes: <= 992px */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
    .hero-content {
        margin: 80px auto 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-floating-card {
        justify-self: center;
        margin-top: 10px;
    }
    .hero-subheadline {
        border-left: none;
        padding-left: 0;
    }
    .hero-ctas {
        justify-content: center;
    }
    
    .about-grid, 
    .why-grid, 
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .why-visual-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .collections-grid > div:nth-child(1),
    .collections-grid > div:nth-child(2),
    .collections-grid > div:nth-child(3),
    .collections-grid > div:nth-child(4),
    .collections-grid > div:nth-child(5) {
        grid-column: span 1;
    }
    .collections-grid > div:nth-child(5) {
        grid-column: span 2;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .services-grid > div:nth-child(4),
    .services-grid > div:nth-child(5) {
        grid-column: span 1;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Screen Sizes: <= 768px */
@media (max-width: 768px) {
    :root {
        --navbar-height: 70px;
    }
    
    .navbar {
        height: 70px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        padding: 40px 24px;
        gap: 30px;
        align-items: center;
        transition: var(--transition-smooth);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
        overflow-y: auto;
    }
    .nav-menu.open {
        left: 0;
    }
    .nav-cta {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
    
    /* Menu Open Hamburger morph */
    .menu-toggle.open .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .menu-toggle.open .bar:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.open .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
    .hero-subheadline {
        font-size: 1.15rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    .testimonial-text {
        font-size: 1.15rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 22px;
    }
}

/* Screen Sizes: <= 480px */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2.6rem;
    }
    .hero-ctas {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    .hero-ctas .btn {
        width: 100%;
    }
    .hero-metrics {
        padding: 20px;
    }
    .metric-number {
        font-size: 2.6rem;
    }
    
    .collections-grid {
        grid-template-columns: 1fr;
    }
    .collections-grid > div:nth-child(5) {
        grid-column: span 1;
    }
    
    .services-grid, 
    .gallery-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .about-card-overlap {
        position: relative;
        width: 100%;
        margin-top: 20px;
        right: 0;
    }
    .heritage-frame {
        padding-right: 0;
        padding-bottom: 0;
    }
    
    .why-stat-box {
        position: relative;
        left: 0;
        bottom: 0;
        width: 100%;
        max-width: 100%;
        margin-top: 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .whatsapp-floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
        bottom: 20px;
        right: 20px;
    }
}

/* ==========================================================================
   PREMIUM HERO RESPONSIVE OVERRIDES
   ========================================================================== */

/* Tablet & Smaller Desktops */
@media (max-width: 1200px) {
    .brand-top-legacy {
        font-size: 4rem;
        letter-spacing: 5px;
    }
    .brand-bottom-glow {
        font-size: 5.6rem;
    }
    .hero-container {
        gap: 40px;
    }
}

/* Medium Tablets & Large Mobiles */
@media (max-width: 992px) {
    .hero-section {
        padding: 120px 0 60px 0;
    }
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    .hero-content {
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .hero-description-new {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-subheadline-new {
        border-left: none;
        padding-left: 0;
    }
    .hero-ctas-new {
        justify-content: center;
    }
    .hero-showcase-premium {
        justify-content: center;
    }
    .hero-highlights-grid {
        padding: 24px 30px;
    }
}

/* Small Tablets & Standard Mobiles */
@media (max-width: 768px) {
    /* Critical Nav fix: force links to be charcoal inside the open mobile overlay */
    .navbar:not(.scrolled) .nav-menu .nav-link {
        color: var(--charcoal) !important;
    }
    .navbar:not(.scrolled) .menu-toggle .bar {
        background-color: var(--charcoal);
    }
    /* If scrolled, nav menu stays dark */
    .navbar.scrolled .menu-toggle .bar {
        background-color: var(--charcoal);
    }

    .brand-top-legacy {
        font-size: 3.2rem;
        letter-spacing: 4px;
    }
    .brand-bottom-glow {
        font-size: 4.5rem;
    }
    .hero-subheadline-new {
        font-size: 0.95rem;
        letter-spacing: 2px;
    }
    
    .showcase-card-wrapper {
        max-width: 350px;
        padding: 20px;
    }
    .showcase-main-image {
        transform: scale(1.1);
    }
    .showcase-card-wrapper:hover .showcase-main-image {
        transform: scale(1.14);
    }
    
    /* Responsive hotspots */
    .hotspot-popup {
        width: 240px;
        padding: 12px 16px;
    }
    .hotspot-popup h5 {
        font-size: 0.88rem;
    }
    .hotspot-popup p {
        font-size: 0.78rem;
    }

    /* Stack highlights vertically */
    .hero-highlights-grid {
        flex-direction: column;
        gap: 20px;
        padding: 24px 20px;
    }
    .highlight-item {
        justify-content: center !important;
        width: 100%;
        text-align: center;
    }
    .hl-divider-h {
        width: 60%;
        height: 1px;
        background: rgba(230, 90, 22, 0.08);
    }
}

/* Very Small Mobiles */
@media (max-width: 480px) {
    .hero-section {
        padding: 100px 0 50px 0;
    }
    .brand-top-legacy {
        font-size: 2.3rem;
        letter-spacing: 3px;
    }
    .brand-bottom-glow {
        font-size: 3.2rem;
    }
    .hero-subheadline-new {
        font-size: 0.85rem;
        letter-spacing: 1px;
    }
    .hero-description-new {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
    .hero-ctas-new {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    .hero-ctas-new .btn {
        width: 100%;
    }
    
    .showcase-card-wrapper {
        max-width: 270px;
        padding: 15px;
    }
    .hotspot-popup {
        width: 200px;
        padding: 10px 12px;
    }
}
/* Animated saffron borders */
.saffron-border {
  position: fixed;
  background: linear-gradient(90deg, #F4A460, #EEA000, #F4A460);
  background-size: 200% 100%;
  animation: saffron-scroll 6s linear infinite;
  z-index: 9999;
}
.saffron-border.top {
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
}
.saffron-border.bottom {
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
}
.saffron-border.left {
  top: 0;
  bottom: 0;
  left: 0;
  width: 6px;
}
.saffron-border.right {
  top: 0;
  bottom: 0;
  right: 0;
  width: 6px;
}
@keyframes saffron-scroll {
  from { background-position: 0% 0; }
  to { background-position: -200% 0; }
}

/* ==========================================================================
   AUTHORIZED LUXURY BRANDS SHOWCASE SECTION
   ========================================================================== */
.brands-section {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}
.brands-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: stretch;
}
.brands-campaigns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.campaign-card {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(197, 160, 89, 0.1);
    transition: var(--transition-smooth);
}
.campaign-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(230, 90, 22, 0.25);
}
.campaign-img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    background-color: #faf8f5;
    padding: 15px;
    display: block;
    transition: var(--transition-smooth);
}
.campaign-card:hover .campaign-img {
    transform: scale(1.03);
}
.campaign-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(31, 26, 23, 0.95) 0%, rgba(31, 26, 23, 0) 100%);
    color: var(--white);
}
.campaign-overlay h4 {
    color: var(--white);
    font-size: 1.8rem;
    margin-top: 6px;
    font-family: var(--font-headings);
    font-weight: 600;
}
.campaign-tag {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--bhagwa-light);
}
.brands-logos-panel {
    display: flex;
}
.logo-board-card {
    padding: 35px;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    border: 1px solid rgba(197, 160, 89, 0.15);
}
.logo-board-img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--gray-border);
    margin-bottom: 24px;
    background-color: #faf8f5;
    padding: 10px;
}
.logo-board-content h4 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: var(--charcoal);
}
.logo-board-content p {
    font-size: 0.98rem;
    margin-bottom: 24px;
    line-height: 1.6;
    color: var(--color-text-muted);
}
.brand-tags-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.brand-tags-flex span {
    padding: 6px 14px;
    background: var(--bg-light-saffron);
    border: 1px solid rgba(230, 90, 22, 0.15);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--bhagwa);
    transition: var(--transition-fast);
}
.brand-tags-flex span:hover {
    background: var(--bhagwa);
    color: var(--white);
    border-color: var(--bhagwa);
}

/* Responsiveness overrides for Brands section */
@media (max-width: 992px) {
    .brands-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
@media (max-width: 480px) {
    .logo-board-card {
        padding: 20px;
    }
    .campaign-overlay {
        padding: 20px;
    }
    .campaign-overlay h4 {
        font-size: 1.4rem;
    }
}

