/* ==========================================================================
   Cafe Culture - Design System & Stylesheet (Mobile-First)
   ========================================================================== */

/* Font Definitions */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@300;400;500;600;700;800&display=swap');

@font-face {
    font-family: 'Sabrine';
    src: url('assets/font/Sabrine.woff2') format('woff2'),
         url('assets/font/Sabrine.woff') format('woff'),
         url('assets/font/Sabrine.ttf') format('truetype'),
         url('assets/font/Sabrine.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* CSS Variables */
:root {
    /* Colors */
    --color-bg-deep: #00032E;         /* Deep indigo navy background */
    --color-accent-pink: #EB114B;     /* Primary brand pink/red */
    --color-accent-violet: #a096ff;   /* Secondary brand violet/blue */
    --color-fab-bg: #f8c5c5;          /* FAB pastel peach pink */
    --color-top-bar-bg: #000000;      /* Top black announcement bar */
    --color-white: #ffffff;
    --color-text-muted: rgba(255, 255, 255, 0.7);
    --color-border-light: rgba(255, 255, 255, 0.15);
    
    /* Typography & Sizing */
    --font-header: 'Sabrine', 'Bebas Neue', sans-serif;
    --font-sub-header: 'SF Pro Display', 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --site-max-width: 1700px;
    --footer-curve: clamp(58px, 7vw, 140px);
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Scroll Padding */
    --scroll-padding-top: 123px;
}

/* Base Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: auto !important;
    scroll-padding-top: var(--scroll-padding-top);
    font-size: 16px;
    background-color: var(--color-bg-deep);
    overflow-x: hidden;
    overflow-x: clip;
}

body {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--color-bg-deep);
    color: var(--color-white);
    line-height: 1.5;
    overflow-x: hidden;
    overflow-x: clip;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Sabrine';
    font-weight: normal;
    letter-spacing: 0.5px;
}

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

/* ==========================================================================
   1. Announcement Bar (Mobile default)
   ========================================================================== */
.announcement-bar {
    background-color: var(--color-top-bar-bg);
    color: var(--color-white);
    text-align: center;
    padding: clamp(8px, 2vw, 12px) 16px;
    font-size: clamp(0.75rem, 1.2vw, 0.85rem);
    font-weight: 500;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 100;
}

.announcement-bar p {
    margin: 0;
    line-height: 1.4;
}

.announcement-bar .register-link {
    color: var(--color-accent-pink);
    font-weight: 600;
    margin-left: 4px;
    border-bottom: 1px solid transparent;
    display: inline-block;
}

.announcement-bar .register-link:hover {
    border-bottom-color: var(--color-accent-pink);
}

/* ==========================================================================
   2. Header & Navigation (Mobile default)
   ========================================================================== */
.site-header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: var(--color-bg-deep);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.header-container {
    max-width: var(--site-max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 95px;
    border-bottom: 1px solid var(--color-border-light);
    position: relative;
}

/* Hide standard desktop nav menus by default */
.nav-menu {
    display: none;
}

/* Center Logo Box - Mobile style */
.logo-box {
    height: 80px;
    width: 100px;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 7.5px;
    border-radius: 6px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    z-index: 110;
}

.logo-link {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: inherit;
}

.logo-img {
    width: 70px;
    height: auto;
    display: block;
    transition: var(--transition-smooth);
}

/* Hamburger menu toggle button */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 120;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--color-white);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* Mobile Nav Overlay Menu */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--color-bg-deep);
    z-index: 105;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 100px 40px 40px;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.3s ease;
    pointer-events: none;
}

.mobile-nav.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-item {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--color-text-muted);
}

.mobile-nav-item:hover {
    color: var(--color-white);
}

.btn-own-store-mobile {
    background-color: var(--color-accent-pink);
    color: var(--color-white);
    font-size: 1.3rem;
    font-weight: 700;
    padding: 12px 32px;
    border-radius: 50px;
    margin-top: 16px;
    width: 100%;
    max-width: 260px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(235, 17, 75, 0.2);
}

/* Active hamburger animation */
.mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ==========================================================================
   3. Hero Section (Mobile default)
   ========================================================================== */
.hero-section {
    position: relative;
    padding: clamp(32px, 6vw, 48px) 0 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: calc(100vh - 126px);
    width: 100%;
}

.hero-container {
    max-width: var(--site-max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 36px;
    flex: 1;
    width: 100%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
    width: 100%;
}

.hero-visual {
    width: 100%;
    max-width: 580px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Location Badge Pill */
.badge-container {
    display: block;
}

.location-badge {
    display: inline-block;
    background-color: var(--color-accent-pink);
    color: var(--color-white);
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 1.35rem;
    padding: 6px 12px;
    border-radius: 50px;
    letter-spacing: 0.2px;
    box-shadow: 0 4px 15px rgba(235, 17, 75, 0.3);
    animation: badge-float 3s ease-in-out infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    cursor: default;
}

.location-badge:hover {
    animation-play-state: paused;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 22px rgba(235, 17, 75, 0.5);
    background-color: #f61a55;
}

@keyframes badge-float {
    0% {
        transform: translateY(0);
        box-shadow: 0 4px 15px rgba(235, 17, 75, 0.3);
    }
    50% {
        transform: translateY(-6px);
        box-shadow: 0 10px 20px rgba(235, 17, 75, 0.45);
    }
    100% {
        transform: translateY(0);
        box-shadow: 0 4px 15px rgba(235, 17, 75, 0.3);
    }
}

/* Hero Headings */
.hero-title {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    font-size: clamp(1.6rem, 3vw, 3rem);
}

.title-line {
    display: block;
}

.title-white {
    color: var(--color-white);
    font-family: 'Sabrine';
    font-weight: 300;
}

.title-pink {
    color: var(--color-accent-pink);
    font-family: 'Sabrine';
    text-transform: none;
    font-weight: 300;
}

.title-violet {
    color: var(--color-accent-violet);
    font-family: 'Sabrine';
    font-weight: 300;
}

/* Dashed Stats Card (Vertical on small mobile, horizontal on larger mobile) */
.stats-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    border: 1.5px dashed rgba(154, 146, 223, 0.45);
    border-radius: 12px;
    padding: 16px 20px;
    background-color: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(10px);
    width: 100%;
}

.stat-block {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
}

.stat-value {
    font-family: 'Sabrine', 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--color-white);
    line-height: 1;
    letter-spacing: 0.5px;
}

.stat-label {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--color-accent-pink);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 80%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.15);
}

/* Hero CTA Button Group */
.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.btn {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 1.35rem;
    padding: 18px 30px;
    border-radius: 50px;
    text-align: center;
    cursor: pointer;
    display: inline-block;
    width: 100%;
    transition: var(--transition-smooth);
}

.btn-primary {
    background-color: var(--color-white);
    color: var(--color-bg-deep);
    border: 2px solid var(--color-white);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.08);
}

.btn-primary:hover {
    background-color: #f1f1f1;
    border-color: #f1f1f1;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.18);
}

.btn-secondary {
    background: linear-gradient(var(--color-bg-deep), var(--color-bg-deep)) padding-box,
                linear-gradient(135deg, #6366f1 0%, #c084fc 50%, #eb114b 100%) border-box;
    border: 1px solid transparent;
    color: var(--color-white);
}

.btn-secondary:hover {
    background: linear-gradient(rgba(235, 17, 75, 0.08), rgba(235, 17, 75, 0.08)) padding-box,
                linear-gradient(135deg, #6366f1 0%, #c084fc 50%, #eb114b 100%) border-box;
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(-1px);
}

/* Storefront Card Image Wrapper */
.storefront-card {
    background: linear-gradient(135deg, #6366f1 0%, #c084fc 50%, #eb114b 100%);
    border-radius: 24px;
    padding: 2px; /* Simulates a beautiful thin gradient border */
    width: 100%;
    aspect-ratio: 947 / 667;
    box-shadow: 
        0 10px 25px rgba(156, 138, 248, 0.15), 
        0 15px 40px rgba(181, 108, 163, 0.1);
    position: relative;
    transition: var(--transition-smooth);
}

.storefront-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: inherit;
    box-shadow: 0 0 20px rgba(156, 138, 248, 0.2);
    opacity: 0.7;
    z-index: -1;
    transition: var(--transition-smooth);
}

.storefront-card:hover {
    transform: translateY(-3px) scale(1.005);
}

.storefront-card:hover::before {
    box-shadow: 0 0 35px rgba(156, 138, 248, 0.4);
}

.storefront-parallax-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 22px; /* Concentric with storefront-card (24px - 2px = 22px) */
}

.storefront-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.15s ease-in-out;
}

/* ==========================================================================
   4. Carousel Indicators (Mobile default)
   ========================================================================== */
.carousel-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 32px;
    width: 100%;
    z-index: 10;
}

.indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.25);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    padding: 0;
}

.indicator-dot:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.indicator-dot.active {
    width: 24px;
    height: 8px;
    border-radius: 4px;
    background-color: var(--color-white);
}

/* ==========================================================================
   5. Floating Action Button (FAB) (Mobile default)
   ========================================================================== */
/* ==========================================================================
   5. Floating Actions Bar (Mobile default)
   ========================================================================== */
.floating-actions-bar {
    position: fixed;
    right: 16px;
    top: 70%;
    transform: translateY(-20%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
    opacity: 1;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.floating-actions-bar.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-50%) translateX(18px);
}

.fab-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.fab-phone {
    background: linear-gradient(135deg, #ffe2e6 0%, #ff5e83 100%);
    color: var(--color-bg-deep);
    animation: fab-pulse 2s infinite;
}

.fab-phone:hover {
    background: linear-gradient(135deg, #ffd3dc 0%, #ff4b72 100%);
    transform: scale(1.1);
}

.fab-whatsapp {
    background: linear-gradient(135deg, #ffe2e6 0%, #ff5e83 100%);
    color: var(--color-bg-deep);
    animation: fab-pulse 2s infinite;
}

.fab-whatsapp:hover {
    background: linear-gradient(135deg, #ffd3dc 0%, #ff4b72 100%);
    transform: scale(1.1);
}

.fab-brochure {
    background: linear-gradient(135deg, #ffe2e6 0%, #ff5e83 100%);
    color: var(--color-bg-deep);
    box-shadow: 0 4px 15px rgba(255, 94, 131, 0.25);
    animation: fab-pulse 2s infinite;
}

.fab-brochure:hover {
    background: linear-gradient(135deg, #ffd3dc 0%, #ff4b72 100%);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 94, 131, 0.4);
}

.fab-icon {
    width: 45%;
    height: 45%;
}

@keyframes fab-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 94, 131, 0.5), 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(255, 94, 131, 0), 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 94, 131, 0), 0 4px 15px rgba(0, 0, 0, 0.2);
    }
}

/* ==========================================================================
   5a. Our Story Section (Mobile default)
   ========================================================================== */
.our-story-section {
    background-color: #ffffff;
    color: #222222;
    position: relative;
    padding: clamp(60px, 16vw, 220px) 0 clamp(60px, 8vw, 100px);
    width: 100%;
}

.brush-divider {
    position: absolute;
    top: clamp(-40px, -3vw, -10px); /* Push it slightly upwards to overlap the dark hero section */
    left: 0;
    width: 100%;
    height: auto;
    z-index: 5;
    pointer-events: none;
}

.story-container {
    max-width: var(--site-max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
    width: 100%;
}

.story-testimonial {
    width: 100%;
    max-width: 580px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
}

.testimonial-card {
    position: relative;
    background-color: var(--color-bg-deep);
    border-radius: 24px;
    padding: 40px 56px;
    color: var(--color-white);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(1, 3, 44, 0.15);
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    flex: 1;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('assets/storefront_clean.png');
    background-size: cover;
    background-position: center;
    opacity: 0.28;
    z-index: 1;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(0, 3, 46, 0.92) 0%, rgba(0, 3, 46, 0.6) 100%);
    z-index: 2;
}

.card-quotes {
    position: absolute;
    top: 10px;
    right: 24px;
    font-size: 6rem;
    font-family: Georgia, serif;
    line-height: 1;
    color: rgba(154, 146, 223, 0.08);
    z-index: 2;
    pointer-events: none;
    user-select: none;
}

.card-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    position: relative;
    z-index: 3;
}

.rating-value {
    font-family: 'Sabrine';
    font-size: 4.5rem;
    color: var(--color-accent-pink);
    line-height: 1;
    font-weight: 500;
}

.star-icon {
    width: 84px;
    height: 84px;
}

.card-quote-text {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-white);
    position: relative;
    z-index: 3;
    margin-bottom: 20px;
}

.card-author {
    display: block;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-weight: 600;
    font-size: 1.35rem;
    color: var(--color-accent-pink);
    font-style: normal;
    position: relative;
    z-index: 3;
}

.card-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--color-accent-pink);
    width: clamp(22px, 2.5vw, 34px);
    height: clamp(22px, 2.5vw, 34px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
    padding: 0;
}

.card-arrow svg {
    width: clamp(24px, 3.2vw, 32px);
    height: clamp(24px, 3.2vw, 32px);
    transition: transform 0.35s ease;
}

.prev-arrow {
    left: 8px;
}

.next-arrow {
    right: 8px;
}

.card-arrow:hover {
    color: var(--color-white);
    transform: translateY(-50%) scale(1.15);
}

.story-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.story-tag-heading {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--color-accent-violet);
    letter-spacing: 0.45em;
}

.story-title {
    font-family: 'Sabrine';
    font-weight: 500;
    font-size: 2.4rem;
    color: var(--color-accent-pink);
    line-height: 1;
    letter-spacing: 0.5px;
}

.story-title-desktop,
.card-quote-desktop {
    display: none;
}

.story-title-mobile,
.card-quote-mobile {
    display: inline;
}

.story-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 8px;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 0.95rem;
    line-height: 1.65;
    color: #444444;
}


/* ==========================================================================
   6. Responsive Layout Media Queries (Mobile-First)
   ========================================================================== */

/* Breakpoint: Small Tablets & Larger Mobiles (min-width: 480px) */
@media (min-width: 480px) {
    .stats-card {
        flex-direction: row;
        width: auto;
        padding: 16px 24px;
        gap: 24px;
    }
    
    .stat-divider {
        width: 1px;
        height: 40px;
    }
}

/* Breakpoint: Tablets (min-width: 768px) */
@media (min-width: 768px) {
    :root {
        --scroll-padding-top: 128px;
    }

    .header-container {
        padding: 0 32px;
        height: 100px;
    }
    
    .logo-box {
        width: 110px;
        height: 85px;
        top: 7.5px;
    }
    
    .logo-img {
        width: 75px;
    }
    
    .hero-section {
        padding: clamp(48px, 6vw, 64px) 0 80px;
    }
    
    .hero-container {
        padding: 0 32px;
        gap: 40px;
    }
    
    .location-badge {
        font-size: clamp(1.05rem, 1.1vw, 1.25rem);
        padding: 7px 18px;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 6vw, 3.8rem);
    }
    
    .stats-card {
        padding: clamp(20px, 2.5vw, 26px) clamp(30px, 3.5vw, 42px);
        gap: clamp(28px, 3.5vw, 48px);
    }
    
    .stat-value {
        font-size: clamp(2.8rem, 3.8vw, 3.6rem);
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .stat-divider {
        height: 56px;
    }
    
    .hero-actions {
        flex-direction: row;
        justify-content: center;
        gap: 16px;
    }
    
    .btn {
        width: auto;
    }
    
    .storefront-card {
        border-radius: 26px;
        padding: 2px;
    }
    
    .storefront-parallax-wrapper {
        border-radius: 24px;
    }
    
    .floating-actions-bar {
        right: 24px;
        gap: 16px;
    }
    
    .fab-btn {
        width: 52px;
        height: 52px;
    }
    
    /* Our Story Tablet styling */
    .story-container {
        flex-direction: column;
        padding: 0 32px;
        gap: 32px;
    }
    
    .testimonial-card {
        padding: 40px 72px;
    }
    
    .card-quotes {
        top: 20px;
        right: 32px;
        font-size: 7.5rem;
    }
    
    .rating-value {
        font-size: 4rem;
    }
    
    .card-quote-text {
        font-size: 1.85rem;
    }
    
    .card-author {
        font-size: 1.15rem;
    }
    
    .card-arrow {
        width: 44px;
        height: 44px;
    }
    
    .prev-arrow {
        left: 12px;
    }
    
    .next-arrow {
        right: 12px;
    }
    
    .story-title {
        font-family: 'Sabrine';
        font-size: clamp(2rem, 4.5vw, 3rem);
        white-space: nowrap;
    }
    
    .story-body {
        font-size: 1.5rem;
    }
}

/* Breakpoint: Desktop / Laptops (min-width: 1024px) */
@media (min-width: 1024px) {
    /* Hide Mobile Menu elements */
    .mobile-menu-toggle {
        display: none;
    }
    
    .mobile-nav {
        display: none;
    }
    
    /* Reveal & style Desktop split menus */
    :root {
        --scroll-padding-top: 148px;
    }

    .header-container {
        max-width: var(--site-max-width);
        padding: 0 40px;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
        column-gap: clamp(24px, 3.2vw, 48px);
        height: 120px;
        border-bottom: none;
        isolation: isolate;
        transition:
            height 0.58s cubic-bezier(0.77, 0, 0.175, 1),
            max-width 0.58s cubic-bezier(0.77, 0, 0.175, 1),
            padding 0.58s cubic-bezier(0.77, 0, 0.175, 1),
            column-gap 0.58s cubic-bezier(0.77, 0, 0.175, 1);
    }
    
    .nav-menu {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-width: 0;
        width: 100%;
        height: 100%;
        padding-bottom: 12px;
        position: relative;
        z-index: 1;
        transition:
            border-color 0.35s ease,
            background-color 0.42s ease,
            border-radius 0.42s ease,
            box-shadow 0.42s ease,
            height 0.42s ease,
            padding 0.42s ease,
            opacity 0.32s ease,
            transform 0.62s cubic-bezier(0.77, 0, 0.175, 1);
    }
    
    .nav-left {
        justify-content: flex-start;
        gap: clamp(15px, 1.85vw, 38px);
    }
    
    .nav-right {
        justify-content: flex-end;
        gap: clamp(15px, 1.85vw, 38px);
    }
    
    .logo-box {
        position: relative;
        transform: none;
        left: auto;
        top: auto;
        width: 120px;
        height: 100px;
        margin: 0;
        border-radius: 8px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
        align-self: center;
        justify-self: center;
        z-index: 4;
        transition:
            width 0.58s cubic-bezier(0.77, 0, 0.175, 1),
            height 0.58s cubic-bezier(0.77, 0, 0.175, 1),
            border-radius 0.42s ease,
            box-shadow 0.42s ease,
            transform 0.58s cubic-bezier(0.77, 0, 0.175, 1);
    }
    
    .logo-img {
        width: 85px;
        transition: width 0.58s cubic-bezier(0.77, 0, 0.175, 1);
    }
    
    .logo-link {
        cursor: pointer;
    }
    
    .nav-item,
    .btn-own-store {
        --collapse-x: 0px;
        --collapse-delay: 0ms;
        position: relative;
        white-space: nowrap;
        transition:
            color 0.3s ease,
            background-color 0.3s ease,
            border-color 0.3s ease,
            box-shadow 0.3s ease,
            transform 0.72s cubic-bezier(0.77, 0, 0.175, 1),
            opacity 0.34s ease,
            filter 0.44s ease;
        will-change: transform, opacity, filter;
    }
    
    .nav-item {
        display: block;
        font-size: clamp(1rem, 1.2vw, 1.4rem);
        font-weight: 300;
    }
    
    .btn-own-store {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 42px;
        padding: 0 clamp(14px, 1.4vw, 24px);
        border-radius: 999px;
        background-color: var(--color-accent-pink);
        color: var(--color-white);
        font-weight: 800;
        font-size: clamp(0.78rem, 1vw, 1rem);
        box-shadow: 0 8px 20px rgba(235, 17, 75, 0.22);
    }
    
    .btn-own-store:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 28px rgba(235, 17, 75, 0.3);
    }
    
    .nav-item::after {
        content: '';
        position: absolute;
        bottom: -13.5px; /* Sits precisely on the border line */
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--color-accent-pink);
        transition: var(--transition-smooth);
    }
    
    .nav-item:hover::after,
    .nav-item.active::after {
        width: 100%;
    }
    
    
    
    /* Desktop Hero layout */
    .hero-container {
        flex-direction: row;
        gap: clamp(40px, 4vw, 70px);
        padding: 0 40px;
        align-items: flex-start;
    }
    
    .hero-content {
        flex: 1.1;
        align-items: flex-start;
        text-align: left;
        gap: clamp(24px, 3vw, 36px);
    }
    
    .hero-actions {
        justify-content: flex-start;
    }
    
    .stats-card {
        margin: 0;
        padding: 24px 38px;
        gap: 36px;
    }
    
    .stat-value {
        font-size: 3.5rem;
    }
    
    .stat-label {
        font-size: 0.95rem;
    }
    
    .stat-divider {
        height: 60px;
    }
    
    .hero-visual {
        flex: 1.25;
        max-width: none;
        margin: 0;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 3.5vw, 3rem);
    }
    
    .storefront-card {
        border-radius: 28px;
        width: 100%;
        max-width: 100%;
        max-height: 60vh;
        padding: 2.5px;
    }
    
    .storefront-parallax-wrapper {
        border-radius: 25.5px;
    }
    
    /* Our Story Desktop styling */
    .story-container {
        flex-direction: row;
        align-items: stretch;
        gap: clamp(24px, 3.5vw, 48px);
        padding: 0 40px;
    }
    
    .story-testimonial {
        flex: 1;
        max-width: none;
        margin: 0;
    }
    
    .testimonial-card {
        padding: 50px 96px;
    }
    
    .rating-value {
        font-size: 4.5rem;
    }
    
    .card-quote-text {
        font-size: 1.85rem;
    }
    
    .card-author {
        font-size: 1.15rem;
    }
    
    .story-info {
        flex: 1.2;
        gap: 8px;
    }
    
    .story-body {
        margin-top: 10px;
        font-size: 1.1rem;
    }
    
    .story-title {
        font-family:var(--font-header) ;
        font-size: clamp(2.2rem, 3.2vw, 3.6rem);
        white-space: nowrap;
    }
    
    .prev-arrow {
        left: 16px;
    }
    
    .next-arrow {
        right: 16px;
    }
}

/* Breakpoint: Wide Screens / HD Desktop (min-width: 1440px) */
@media (min-width: 1440px) {
    :root {
        --scroll-padding-top: 158px;
    }

    .header-container {
        padding: 0 64px;
        column-gap: 48px;
        height: 130px;
    }
    
    .nav-left, .nav-right {
        gap: 50px;
    }
    
    .logo-box {
        width: 140px;
        height: 110px;
        margin: 0;
    }
    
    .logo-img {
        width: 140px;
    }
    
    .hero-section {
        padding: clamp(72px, 7vw, 110px) 0 90px;
    }

    .hero-container {
        padding: 0 64px;
        gap: 90px;
    }
    
    .hero-title {
        font-size: clamp(2.8rem, 3.9vw, 4.6rem);
    }
    
    .stats-card {
        padding: 28px 48px;
        gap: 48px;
    }
    
    .stat-value {
        font-size: 4.2rem;
    }
    
    .stat-label {
        font-size: 1.1rem;
    }
    
    .stat-divider {
        height: 72px;
    }
    
    .hero-actions .btn {
        font-size: 1.15rem;
        padding: 16px 28px;
        white-space: nowrap;
    }
    
    .storefront-card {
        border-radius: 32px;
        padding: 3px;
    }
    
    .storefront-parallax-wrapper {
        border-radius: 29px;
    }
    
    .floating-actions-bar {
        right: 32px;
        gap: 20px;
    }
    
    .fab-btn {
        width: 60px;
        height: 60px;
    }
    
    /* Our Story Wide Desktop styling */
    .story-container {
        padding: 0 64px;
        gap: 48px;
    }
    
    .story-title {
        font-family: 'Sabrine';
        font-size: clamp(2.8rem, 3.6vw, 4rem);
        white-space: nowrap;
    }
    
    .prev-arrow {
        left: 20px;
    }
    
    .next-arrow {
        right: 20px;
    }
    
    .card-author {
        font-size: 2.25rem;
    }
    
    .card-arrow {
        width: 56px;
        height: 56px;
    }
}

/* Desktop-only story composition matching the supplied reference */
@media (min-width: 1024px) {
    .our-story-section {
        padding: clamp(140px, 9.5vw, 200px) 0 clamp(82px, 5.25vw, 108px);
    }

    .our-story-section .story-container {
        width: min(calc(100% - clamp(72px, 10.94vw, 224px)), 1824px);
        max-width: 1824px;
        padding-left: 0 !important;
        padding-right: 0 !important;
        gap: clamp(36px, 3.12vw, 64px);
        align-items: flex-start;
    }

    .story-testimonial {
        flex: 0 0 clamp(420px, 35.55vw, 728px);
        width: clamp(420px, 35.55vw, 728px);
        max-width: none;
        padding-top: clamp(10px, 0.88vw, 18px);
    }

    .testimonial-card {
        height: clamp(520px, 42vw, 778px);
        border-radius: clamp(24px, 1.55vw, 32px);
        padding: clamp(66px, 6.05vw, 124px) clamp(58px, 5.47vw, 112px) clamp(54px, 4.68vw, 96px);
        justify-content: flex-start;
        box-shadow: none;
    }

    .testimonial-card::before {
        opacity: 0.4;
        filter: blur(2px);
        transform: scale(1.04);
    }

    .testimonial-card::after {
        background: linear-gradient(90deg, rgba(0, 3, 46, 0.96) 0%, rgba(0, 3, 46, 0.82) 52%, rgba(0, 3, 46, 0.94) 100%);
    }

    .card-quotes {
        top: clamp(10px, 1.75vw, 36px);
        right: clamp(8px, 1.55vw, 32px);
        font-size: clamp(11rem, 13.2vw, 17rem);
        color: rgba(160, 150, 255, 0.08);
    }

    .card-rating {
        gap: clamp(14px, 1.15vw, 24px);
        margin-bottom: clamp(28px, 3.02vw, 62px);
    }

    .rating-value {
        font-size: clamp(4.4rem, 4.75vw, 6.15rem);
    }

    .star-icon {
        width: clamp(68px, 4.5vw, 92px);
        height: clamp(68px, 4.5vw, 92px);
    }

    .card-quote-mobile,
    .story-title-mobile {
        display: none;
    }

    .card-quote-desktop,
    .story-title-desktop {
        display: block;
    }

    .card-quote-text {
        max-width: clamp(320px, 26.9vw, 552px);
        margin-bottom: clamp(28px, 2.05vw, 42px);
        font-size: clamp(1.42rem, 1.78vw, 2.28rem);
        line-height: 1.42;
    }

    .card-author {
        font-size: clamp(1.4rem, 1.83vw, 2.35rem);
        line-height: 1.08;
    }

    .card-arrow {
        width: clamp(28px, 1.75vw, 36px);
        height: clamp(28px, 1.75vw, 36px);
    }

    .card-arrow svg {
        width: 100%;
        height: 100%;
    }

    .prev-arrow {
        left: clamp(24px, 1.85vw, 38px);
    }

    .next-arrow {
        right: clamp(24px, 2.15vw, 44px);
    }

    .story-info {
        flex: 1 1 auto;
        gap: clamp(12px, 0.95vw, 19px);
        padding-top: 0;
    }

    .story-tag-heading {
        font-size: clamp(1rem, 1.25vw, 1.55rem);
        line-height: 1;
        letter-spacing: 0.7em;
    }

    .story-title {
        font-size: clamp(3rem, 4.15vw, 5.5rem);
        line-height: 0.9;
        white-space: nowrap;
        letter-spacing: 0;
    }

    .story-body {
        gap: clamp(12px, 1vw, 20px);
        margin-top: clamp(4px, 0.4vw, 8px);
        font-size: clamp(1rem, 1.1vw, 1.3rem);
        line-height: 1.45;
        color: #000000;
    }
}

/* ==========================================================================
   5b. Stats Ribbon Section (Mobile default)
   ========================================================================== */
.stats-ribbon-section {
    background: linear-gradient(90deg, #500a28 0%, #00032E 35%, #00032E 65%, #500a28 100%);
    padding: clamp(20px, 3vw, 30px) 0;
    width: 100%;
    position: relative;
    z-index: 10;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-ribbon-container {
    max-width: var(--site-max-width);
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: row;
    overflow-x: hidden;
    scroll-behavior: smooth;
    gap: 0;
    width: 100%;
    scroll-snap-type: x mandatory;
}

.stats-ribbon-item {
    display: flex;
    align-items: center;
    gap: clamp(8px, 1.5vw, 16px);
    color: var(--color-white);
    width: 100%;
    flex: 0 0 100%;
    scroll-snap-align: center;
    justify-content: center;
    max-width: none;
    padding: 0 48px;
    box-sizing: border-box;
}

/* Stats Ribbon Arrows (Mobile Only) */
.stats-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--color-accent-pink);
    color: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 15;
    transition: all 0.25s ease;
}

.stats-arrow:active {
    transform: translateY(-50%) scale(0.9);
}

.prev-stats {
    left: 16px;
}

.next-stats {
    right: 16px;
}

.stats-arrow svg {
    width: 18px;
    height: 18px;
}

.stat-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    flex-shrink: 0;
}

.ribbon-svg-icon {
    width: clamp(26px, 3.5vw, 24px);
    height: clamp(26px, 3.5vw, 24px);
    stroke-width: 1.5px;
    filter: drop-shadow(0 2px 8px rgba(235, 17, 75, 0.3));
}

.stat-ribbon-img {
    width: clamp(66px, 6.5vw, 64px);
    height: clamp(66px, 6.5vw, 64px);
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(235, 17, 75, 0.3));
}

.stat-ribbon-number {
    font-family: 'Sabrine', sans-serif;
    font-size: clamp(3.9rem, 5.8vw, 4.6rem);
    color: var(--color-accent-pink);
}

.stat-ribbon-label {
    display: flex;
    flex-direction: column;
    font-family: var(--font-sub-header);
    font-size: clamp(1.6rem, 2.5vw, 1.2rem);
    font-weight: 400;
    color: var(--color-white);
    line-height: 1;
    text-align: left;
}

.stat-ribbon-label span {
    display: block;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    line-height: inherit;
}

/* Breakpoint: Tablets (min-width: 768px) */
@media (min-width: 768px) {
    .stats-ribbon-section {
        padding: clamp(32px, 4vw, 48px) 0;
    }
    
    .stats-ribbon-container {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
        gap: 32px;
        padding: 0 32px;
        overflow: visible;
        scroll-snap-type: none;
    }
    
    .stats-ribbon-item {
        width: auto;
        max-width: none;
        flex: 0 1 auto;
        padding: 0;
    }

    .stats-arrow {
        display: none !important;
    }
}

/* Breakpoint: Desktop (min-width: 1024px) */
@media (min-width: 1024px) {
    .stats-ribbon-container {
        justify-content: space-between;
        gap: 20px;
        padding: 0 40px;
    }
    
    .ribbon-svg-icon {
        width: 44px;
        height: 44px;
    }
    
    .stat-ribbon-number {
        font-size: 3.5rem;
    }
    
    .stat-ribbon-label {
        font-size: 0.9rem;
    }
}

/* Breakpoint: Wide Desktop (min-width: 1440px) */
@media (min-width: 1440px) {
    .stats-ribbon-container {
        padding: 0 64px;
    }
    
    .ribbon-svg-icon {
        width: 46px;
        height: 46px;
    }
    
    .stat-ribbon-number {
        font-size: 3.8rem;
    }
    
    .stat-ribbon-label {
        font-size: 1.35rem;
        font-family: var(--font-sub-header);
    }
}

/* ==========================================================================
   5c. Founder's Story Section (Mobile default)
   ========================================================================== */
.founder-section {
    background-color: #ffffff;
    color: #222222;
    position: relative;
    padding: clamp(10px, 8vw, 20px) 0;
    width: 100%;
}

.founder-container {
    max-width: var(--site-max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
}

.founder-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.founder-tag-heading {
    font-family: var(--font-sub-header);
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--color-accent-violet);
    letter-spacing: 0.75em;
}

.founder-title {
    font-family: var(--font-header);
    font-size: 2.5rem;
    color: var(--color-accent-pink);
    line-height: 1.1;
}

.founder-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-family: var(--font-sub-header);
    font-size: 0.95rem;
    line-height: 1.65;
    color: #444444;
}

.highlight-card {
    background: linear-gradient(90deg, #ffe2e9 0%, #ffffff 100%);
    padding: 20px 24px;
}

.highlight-card p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.65;
    color: #222222;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

}

.highlight-pink-text {
    color: var(--color-accent-pink);
    font-weight: 800;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.founder-visual {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.founder-img-wrapper {
    width: 100%;
    position: relative;
}

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

/* Breakpoint: Tablets (min-width: 768px) */
@media (min-width: 768px) {
    .founder-section {
        padding: clamp(80px, 6vw, 120px) 0;
    }
    
    .founder-container {
        padding: 0 32px;
        gap: 60px;
    }
    
    .founder-title {
        font-size: 2.8rem;
    }
    
    .founder-body {
        font-size: 1.05rem;
    }
    
    .highlight-card p {
        font-size: 1.05rem;
    }
}

/* Breakpoint: Desktop (min-width: 1024px) */
@media (min-width: 1024px) {
    .founder-container {
        flex-direction: row;
        align-items: flex-start;
        gap: clamp(40px, 6vw, 90px);
        padding: 0 40px;
    }
    
    .founder-info {
        flex: 1.2;
    }
    
    .founder-visual {
        flex: 0.8;
        max-width: none;
        margin: 0;
        position: sticky;
        top: 110px;
        max-height: calc(100vh - 140px);
    }
    
    .founder-img {
        max-height: calc(100vh - 140px);
        object-fit: contain;
    }
    
    .founder-title {
        font-size: clamp(2.8rem, 4.2vw, 4rem);
    }
}

/* Breakpoint: Wide Desktop (min-width: 1440px) */
@media (min-width: 1440px) {
    .founder-container {
        padding: 0 64px;
        gap: 80px;
    }
    
    .founder-info {
        flex: 1.15;
    }
    
    .founder-visual {
        flex: 0.85;
        top: 90px;
        max-height: calc(100vh - 100px);
    }
    
    .founder-img {
        max-height: calc(100vh - 100px);
    }
    
    .founder-title {
        font-size: 3.35rem;
        white-space: nowrap;
    }
    
    .founder-body {
        font-size: 1.2rem;
    }
    
    .highlight-card p {
        font-size: 1.2rem;
    }
}

/* ==========================================================================
   5d. Founder's Quote Section (Mobile default)
   ========================================================================== */
.founder-quote-section {
    background-color: #ffffff;
    width: 100%;
    position: relative;
    z-index: 10;
}

.quote-container {
    max-width: var(--site-max-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.quote-card {
    background-color: #fce6fe;
    border-radius: 16px;
    padding: clamp(30px, 5vw, 60px) clamp(20px, 6vw, 80px);
    max-width: var(--site-max-width);
    margin: 0 auto;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.decor-quote {
    position: absolute;
    font-size: clamp(15rem, 17vw, 20rem);
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: rgba(135, 19, 251, 0.05);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.quote-open {
    top: -10px;
    left: 70px;
}

.quote-close {
    bottom: -80px;
    right: 70px;
}

.founder-quote-text {
    font-family: var(--font-sub-header);
    font-size: clamp(2rem, 2.8vw, 2rem);
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-bg-deep);
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.quote-author-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    position: relative;
    z-index: 2;
}

.quote-author-name {
    font-family: var(--font-sub-header);
    font-size: clamp(2.1rem, 2.8vw, 2.45rem);
    font-weight: 600;
    color: var(--color-accent-pink);
    font-style: normal;
}

.quote-author-title {
    font-family: var(--font-sub-header);
    font-size: clamp(1.1rem,1.8vw, 1.5rem);
    font-weight: 400;
    color: #555555;
}

/* Mobile view adjustments for quote card */
@media (max-width: 767px) {
    .quote-card {
        background-color: #f0dcf3; /* Soft pink/rose background matching the form */
        padding: 35px 24px;
    }
    .founder-quote-text {
        font-size: clamp(1.4rem, 4.5vw, 1.7rem);
        line-height: 1.4;
        margin-bottom: 20px;
    }
    .quote-author-name {
        display: block;
        max-width: 220px;
        margin: 0 auto;
        font-weight: 600; /* Bold */
        font-size: clamp(1.8rem, 4vw, 2.10rem);
        line-height: 1.2;
    }
    .decor-quote {
        font-size: 11rem;
    }
    .quote-open {
        top: -10px;
        left: 15px;
    }
    .quote-close {
        bottom: -50px;
        right: 15px;
    }
    .quote-author-title {
        font-size: 1.15rem;
    }
}

/* Responsive adjustments for wide screens */
@media (min-width: 1440px) {
    .quote-container {
        padding: 0 64px;
    }
}

/* ==========================================================================
   5e. Achievements / Awards Section (Mobile default)
   ========================================================================== */
.awards-section {
    background-color: #ffffff;
    padding: clamp(30px, 4vw, 60px) 0;
    width: 100%;
    position: relative;
    z-index: 10;
}

.awards-container {
    max-width: var(--site-max-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.awards-header {
    width: 100%;
    max-width: 800px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: clamp(36px, 6vw, 60px);
}

.awards-tag-heading {
    font-family: var(--font-sub-header);
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--color-accent-violet);
    letter-spacing: 0.75em;
    text-transform: uppercase;
}

.awards-title {
    font-family: var(--font-header);
    font-size: clamp(3rem, 3.8vw, 4.2rem);
    color: var(--color-accent-pink);
    line-height: 1.1;
    text-transform: uppercase;
}

.awards-subtitle {
    font-family: var(--font-sub-header);
    font-size: clamp(0.88rem, 1.2vw, 1.05rem);
    line-height: 1.6;
    color: #555555;
    max-width: 680px;
}

.awards-carousel-wrapper {
    position: relative;
    width: 100%;
}

.awards-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 16px !important;
    width: 100% !important;
    padding: 0 10vw !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.awards-grid::-webkit-scrollbar {
    display: none;
}

.award-slide {
    flex: 0 0 80vw !important;
    width: 80vw !important;
    padding: 0;
    box-sizing: border-box;
    scroll-snap-align: center;
}

.award-card {
    background: linear-gradient(180deg, #00032E 0%, #3D021E 100%);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    transition: var(--transition-smooth);
}

.award-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(235, 17, 75, 0.12);
}

/* Dots Indicators */
.awards-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    width: 100%;
}

.award-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #E2D9F3; /* light pastel lavender */
    cursor: pointer;
    transition: all 0.3s ease;
}

.award-dot.active {
    width: 24px;
    height: 8px;
    border-radius: 4px;
    background-color: #00032E; /* dark indigo active dot */
}

.award-img-wrapper {
    width: 100%;
    aspect-ratio: 956 / 712;
    overflow: hidden;
    position: relative;
    background-color: #00032E;
}

.award-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.award-card:hover .award-img {
    transform: scale(1.03);
}

.award-content {
    padding: clamp(20px, 4vw, 28px);
    display: flex;
    flex-direction: column;
    gap: clamp(8px, 1.5vw, 12px);
    text-align: left;
    flex: 1;
    border-top: 1px solid rgb(255, 255, 255);
}

.award-card-title {
    font-family: var(--font-sub-header);
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    font-weight: 500;
    color: var(--color-white);
    line-height: 1.4;
}

.award-organization {
    font-family: var(--font-sub-header);
    font-size: clamp(0.85rem, 1.2vw, 0.95rem);
    font-weight: 600;
    color: var(--color-accent-pink);
}

/* Breakpoint: Tablets (min-width: 768px) */
@media (min-width: 768px) {
    .awards-container {
        padding: 0 32px;
    }
    
    .awards-carousel-wrapper {
        position: static;
        width: 100%;
    }

    .awards-dots {
        display: none !important;
    }

    .awards-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px !important;
        padding: 0 !important;
        overflow: visible;
        scroll-snap-type: none;
    }
    
    .award-slide {
        flex: none !important;
        width: 100% !important;
        padding: 0;
        display: flex;
    }
    
    .award-card {
        max-width: none;
        margin: 0;
        width: 100%;
        height: 100%;
    }
}

/* Breakpoint: Desktop (min-width: 1024px) */
@media (min-width: 1024px) {
    .awards-container {
        padding: 0 40px;
    }
    
    .awards-grid {
        gap: 30px !important;
    }
}

/* Breakpoint: Wide Desktop (min-width: 1440px) */
@media (min-width: 1440px) {
    .awards-container {
        padding: 0 64px;
    }
    .awards-tag-heading {
        font-size: 1.3rem;
        letter-spacing: 0.75em;
    }
    .award-card-title {
        font-size: 1.6rem;
        font-weight: 500;
    
    }
    .award-organization {
        font-size: 1.3rem;
        font-weight: 300;
}
    .awards-title{
        font-size: 4rem;
    }
    .awards-subtitle {
        font-size: 1.3rem;
        font-weight: 300;
    }
}

/* ==========================================================================
   5f. Vision & Mission Section (Mobile default)
   ========================================================================== */
.vision-mission-section {
    background: 
        radial-gradient(circle at 0% 0%, rgba(244, 11, 73, 0.318) 0%, rgba(240, 13, 73, 0.285) 20%, transparent 50%),
        radial-gradient(circle at 100% 0%, rgba(108, 92, 231, 0.421) 0%, rgba(79, 57, 245, 0.248) 20%, transparent 50%),
        #ffffff;
    padding: clamp(40px, 8vw, 40px) 0;
    width: 100%;
    position: relative;
    z-index: 10;
}

.vision-mission-container {
    max-width: var(--site-max-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.vision-mission-header {
    width: 100%;
    max-width: 800px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: clamp(36px, 6vw, 60px);
}

.vision-tag-heading {
    font-family: var(--font-sub-header);
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--color-accent-violet);
    letter-spacing: 0.75em;
    text-transform: uppercase;
    
}

.vision-title {
    font-family: var(--font-header);
    font-size: clamp(4rem, 4.8vw, 4.2rem);
     color: var(--color-accent-pink);
    line-height: 1.1;
    text-transform: uppercase;
}

.vision-subtitle {
    font-family: var(--font-sub-header);
    font-size: clamp(1.18rem, 1.2vw, 1.25rem);
    line-height: 1.6;
    color: #000000;
    max-width: 880px;
}

.vision-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    width: 100%;
}

.vision-card {
    background-color: var(--color-bg-deep);
    border-radius: 24px;
    padding: clamp(30px, 5vw, 60px) clamp(25px, 5vw, 50px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 3, 46, 0.05);
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    transition: var(--transition-smooth);
}

.vision-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 3, 46, 0.15);
}

.vision-card-icon {
    width: clamp(90px, 9vw, 110px);
    height: auto;
    margin-bottom: 24px;
    display: block;
    transition: var(--transition-smooth);
    animation: icon-glow-pulse 4s ease-in-out infinite;
    background: transparent;
}

.vision-card:hover .vision-card-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 16px rgba(235, 17, 75, 0.75)) brightness(1.2);
    animation-play-state: paused;
    
    
}

@keyframes icon-glow-pulse {
    0% {
        filter: drop-shadow(0 0 2px rgba(235, 17, 75, 0.25)) brightness(1);
    }
    50% {
        filter: drop-shadow(0 0 12px rgba(95, 85, 211, 0.5)) brightness(1.15);
    }
    100% {
        filter: drop-shadow(0 0 2px rgba(235, 17, 75, 0.25)) brightness(1);
    }
}

.vision-card-title {
    font-family: var(--font-header);
    font-size: clamp(3.8rem, 5vw, 4.5rem);
    background: linear-gradient(90deg, #fa053a 0%, #ffffff 100%);
    -webkit-background-clip: text; 
     -webkit-text-fill-color: transparent; /* Required for some WebKit browsers */
    color: transparent;
    background-clip: text; 
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
}

.vision-card:hover .vision-card-title {
    filter: drop-shadow(0 0 8px rgba(250, 5, 58, 0.6));
}


.vision-card p {
    font-family: var(--font-sub-header);
    font-size: clamp(1.22rem, 1.2vw, 1.22rem);
    color: rgba(255, 255, 255, 0.9);
}

.vision-card p:last-child {
    margin-bottom: 0;
}

/* Breakpoint: Tablets (min-width: 768px) */
@media (min-width: 768px) {
    .vision-mission-container {
        padding: 0 32px;
        align-items: center;
    }
    
    .vision-mission-header {
        text-align: center;
        align-items: center;
    }
    
    .vision-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .vision-card {
        max-width: none;
        margin: 0;
    }
}

/* Breakpoint: Desktop (min-width: 1024px) */
@media (min-width: 1024px) {
    .vision-mission-container {
        padding: 0 40px;
    }
    
    .vision-grid {
        gap: 30px;
    }
}

/* Breakpoint: Wide Desktop (min-width: 1440px) */
@media (min-width: 1440px) {
    .vision-mission-container {
        padding: 0 64px;
    }
    .vision-mission-header{
        font-size: 3rem;
    }
}

/* ==========================================================================
   5g. Brand Values Section (Mobile default)
   ========================================================================== */
.values-section {
    background-color: #ffffff;
    width: 100%;
    position: relative;
    z-index: 10;
}

.values-container {
    max-width: var(--site-max-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.values-header {
    width: 100%;
    text-align: center;
    margin-bottom: clamp(36px, 6vw, 60px);
}

.values-title {
    font-family: var(--font-header);
    font-size: clamp(4rem, 5.8vw, 5.2rem);
    color: var(--color-accent-pink);
    line-height: 1.1;
    text-transform: uppercase;
    text-align: center;
}

.values-grid-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.values-grid-wrapper {
    position: relative;
    width: 100%;
}

.values-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 16px !important;
    width: 100% !important;
    padding: 0 10vw !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    box-shadow: none;
    border-radius: 0;
}

.values-grid::-webkit-scrollbar {
    display: none;
}

.value-slide {
    flex: 0 0 80vw !important;
    width: 80vw !important;
    padding: 0;
    box-sizing: border-box;
    scroll-snap-align: center;
}

.value-col {
    padding: clamp(36px, 5vw, 60px) clamp(24px, 4vw, 36px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    transition: var(--transition-smooth);
    border-radius: 24px;
    height: 100%;
    box-sizing: border-box;
}

.values-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    width: 100%;
}

.value-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #E2D9F3; /* light pastel lavender */
    cursor: pointer;
    transition: all 0.3s ease;
}

.value-dot.active {
    width: 24px;
    height: 8px;
    border-radius: 4px;
    background-color: #00032E; /* active navy pill dot */
}

.col-purple {
    background-color: #d5d0f7;
}

.col-pink {
    background-color: #ffe3f9;
}

.value-icon-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, #500a28 0%, #00032E 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(0, 3, 46, 0.15);
    transition: var(--transition-smooth);
}

.value-col:hover .value-icon-circle {
    transform: scale(1.06);
    box-shadow: 0 6px 20px rgba(235, 17, 75, 0.25);
}

.value-icon-img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    display: block;
}

.value-col-title {
    font-family: var(--font-sub-header);
    font-size: clamp(1.8rem, 2vw, 1.8rem);
    font-weight: 400;
    color: var(--color-bg-deep);
    line-height: 1.25;
    margin-bottom: 6px;
}

.value-col p {
    font-family: var(--font-sub-header);
    font-size: clamp(1rem, 1.4vw, 1.25rem);
    line-height: 1.55;
    color: #1f1f1f;
}

/* Breakpoint: Tablets (min-width: 768px) */
@media (min-width: 768px) {
    .values-container {
        padding: 0 32px;
    }
    
    .values-dots {
        display: none !important;
    }

    .values-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2px !important;
        padding: 0 !important;
        overflow: hidden;
        scroll-snap-type: none;
        border-radius: 24px;
        box-shadow: 0 15px 45px rgba(0, 3, 46, 0.04);
    }
    
    .value-slide {
        flex: none !important;
        width: auto !important;
        padding: 0;
    }
    
    .value-col {
        border-radius: 0;
    }
}

/* Breakpoint: Desktop (min-width: 1024px) */
@media (min-width: 1024px) {
    .values-container {
        padding: 0 40px;
    }
    
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .value-col p {
        font-size: 1.05rem;
    }
}

/* Breakpoint: Wide Desktop (min-width: 1440px) */
@media (min-width: 1440px) {
    .values-container {
        padding: 0 34px;
    }
}

/* ==========================================================================
   5h. Our Menu Section (Mobile default)
   ========================================================================== */
.menu-section {
    background-color: #ffffff;
    padding: clamp(60px, 8vw, 100px) 0;
    width: 100%;
    position: relative;
    z-index: 10;
}

.menu-container {
    max-width: var(--site-max-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.menu-header {
    width: 100%;
    max-width: 1200px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: clamp(36px, 6vw, 60px);
}

.menu-tag-heading {
    font-family: var(--font-sub-header);
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--color-accent-violet);
    letter-spacing: 0.75em;
    text-transform: uppercase;
}

.menu-title {
    font-family: var(--font-header);
    font-size: clamp(2.4rem, 4.8vw, 4.8rem);
    color: var(--color-accent-pink);
    line-height: 1.1;
    text-transform: uppercase;
}

.menu-subtitle {
    font-family: var(--font-sub-header);
    font-size: clamp(1.2rem, 1.5vw, 1.06rem);
    line-height: 1.6;
    color: #a8a8a8;
    max-width: 1000px;
    margin-top: 4px;
}

/* Category Pills */
.menu-categories-wrapper {
    display: flex;
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: flex-start;
    margin-bottom: clamp(32px, 5vw, 54px);
    padding: 4px 10px;
}

.menu-categories-wrapper::-webkit-scrollbar {
    display: none;
}

.menu-mobile-filter-wrapper {
    display: none;
}

.menu-categories {
    display: flex;
    gap: clamp(16px, 2.2vw, 28px);
    width: max-content;
    margin: 0 auto;
}

.menu-cat-btn {
    padding: clamp(16px, 2vw, 20px) clamp(32px, 4vw, 48px);
    border-radius: 100px;
    border: none;
    font-family: var(--font-sub-header);
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    font-weight: 700;
    cursor: pointer;
    background-color: #EAE8FC;
    color: var(--color-bg-deep);
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.menu-cat-btn.active {
    background: linear-gradient(135deg, #3D021E 0%, #00032E 100%);
    color: var(--color-white);
    box-shadow: 0 4px 12px rgba(0, 3, 46, 0.12);
}

.menu-cat-btn:hover:not(.active) {
    transform: translateY(-2px);
    background-color: #DFDCFB;
}

/* Carousel Container */
.menu-carousel-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

/* Slider Track */
.menu-slider-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100%;
    padding: 12px 4px;
    scroll-behavior: smooth;
}

.menu-slider-track::-webkit-scrollbar {
    display: none;
}

/* Menu Card */
.menu-card {
    flex: 0 0 88%;
    scroll-snap-align: center;
    background-color: #F3F1FD;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 24px rgba(0, 3, 46, 0.03);
    transition: var(--transition-smooth);
}

.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 3, 46, 0.09);
}

.menu-card-img-wrapper {
    width: 100%;
    aspect-ratio: 398 / 261;
    overflow: hidden;
    position: relative;
}

.menu-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.menu-card:hover .menu-card-img {
    transform: scale(1.04);
}

.menu-card-content {
    padding: clamp(20px, 3.5vw, 28px);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: left;
}

.menu-card-title {
    font-family: var(--font-sub-header);
    font-size: clamp(1.25rem, 1.9vw, 1.45rem);
    font-weight: 700;
    color: var(--color-bg-deep);
    margin-bottom: 12px;
    line-height: 1.25;
}

.menu-card-desc {
    font-family: var(--font-sub-header);
    font-size: clamp(1.15rem, 1.2vw, 1.35rem);
    line-height: 1.6;
    color: #767575;
    margin-bottom: 20px;
    flex-grow: 1;
}

.menu-card-footer {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: auto;
}

.menu-card-price {
    font-family: var(--font-header) !important;
    font-size: clamp(1.6rem, 2.2vw, 2.3rem);
    color: var(--color-accent-pink);
    font-weight: bold;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Slider Arrows */
.slider-arrow {
    display: none; /* Hidden on mobile/tablets by default */
    position: absolute;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: var(--color-bg-deep);
    color: var(--color-white);
    border: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 3, 46, 0.2);
    z-index: 20;
    transition: var(--transition-smooth);
    top: 50%;
}

.arrow-svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 3px;
    fill: none;
}

.arrow-left {
    left: -27px;
    transform: translateY(-50%);
}

.arrow-right {
    right: -27px;
    transform: translateY(-50%);
}

.slider-arrow:hover {
    background-color: var(--color-accent-pink);
}

.arrow-left:hover {
    transform: translateY(-50%) scale(1.08);
}

.arrow-right:hover {
    transform: translateY(-50%) scale(1.08);
}

/* Mobile and tablet view for menu arrows */
@media (max-width: 1023px) {
    .menu-carousel-container {
        padding-bottom: 74px;
        position: relative;
    }
    
    .menu-carousel-container .slider-arrow {
        display: flex !important;
        position: absolute;
        top: auto !important;
        bottom: 8px !important;
        transform: none !important;
        width: 48px !important;
        height: 48px !important;
        background-color: #000000 !important;
        color: #ffffff !important;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08) !important;
        border: none !important;
        outline: none !important;
    }
    
    .menu-carousel-container .slider-arrow:hover,
    .menu-carousel-container .slider-arrow:active {
        background-color: var(--color-accent-pink) !important;
        color: #ffffff !important;
        transform: scale(1.05) !important;
    }
    
    .menu-carousel-container .arrow-left {
        left: calc(50% - 56px) !important;
        right: auto !important;
    }
    
    .menu-carousel-container .arrow-right {
        left: calc(50% + 8px) !important;
        right: auto !important;
    }
}

/* ==========================================================================
   5h. Our Menu Section Breakpoints
   ========================================================================== */

/* Breakpoint: Small Tablets (min-width: 600px) */
@media (min-width: 600px) {
    .menu-card {
        flex: 0 0 60%;
        scroll-snap-align: center;
    }
}

/* Breakpoint: Tablets (min-width: 768px) */
@media (min-width: 768px) {
    .menu-container {
        padding: 0 32px;
    }
    
    .menu-categories-wrapper {
        justify-content: center;
    }
    
    .menu-card {
        flex: 0 0 calc(50% - 12px);
        scroll-snap-align: start;
    }
}

/* Breakpoint: Desktop (min-width: 1024px) */
@media (min-width: 1024px) {
    .menu-container {
        padding: 0 40px;
    }
    
    .menu-categories-wrapper {
        justify-content: center;
        padding: 4px 0;
    }

    .menu-categories {
        width: 100%;
        max-width: var(--site-max-width);
        gap: clamp(12px, 1.5vw, 24px);
    }

    .menu-cat-btn {
        flex: 1;
        text-align: center;
    }
    
    .menu-card {
        flex: 0 0 calc(25% - 18px);
        scroll-snap-align: start;
    }
    
    .menu-slider-track {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }
    
    .slider-arrow {
        display: flex; /* Always show arrows on desktop to match screenshot design */
    }
}

/* Breakpoint: Wide Desktop (min-width: 1440px) */
@media (min-width: 1440px) {
    .menu-container {
        padding: 0 64px;
    }
}

/* ==========================================================================
   5i. Night Storefront Section (Mobile default)
   ========================================================================== */
.storefront-night-section {
    width: 100%;
    background-color: #ffffff;
    overflow: hidden;
    display: block;
}

.storefront-night-img-wrapper {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
}

.storefront-night-img {
    width: 100%;
    height: 115%; /* Extra height to give the parallax scroll translation buffer */
    object-fit: cover;
    display: block;
}

@media (min-width: 1024px) {
    .storefront-night-img-wrapper {
        aspect-ratio: 21 / 9;
    }
}

/* ==========================================================================
   5j. The Cafe Culture Difference Section (Mobile default)
   ========================================================================== */
.difference-section {
    background: linear-gradient(90deg, #e78a9d 0%, #faf5fb 50%, #9f94e3 100%);
    padding: clamp(60px, 8vw, 100px) 0;
    width: 100%;
    display: block;
    position: relative;
    z-index: 10;
}

.difference-container {
    max-width: var(--site-max-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: clamp(16px, 2.5vw, 14px);
}

.difference-tag {
    font-family: var(--font-sub-header);
    font-weight: 600;
    font-size: 1.15rem;
    color: #5f55d3;
    letter-spacing: 0.75em;
    text-transform: uppercase;
}

.difference-title {
    font-family: var(--font-header);
    font-size: clamp(4rem, 4.8vw, 5.25rem);
    line-height: 0.85;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-transform: uppercase;
    text-align: center;
}

.difference-title .title-pink {
    color: var(--color-accent-pink);
}

.difference-title .title-navy {
    color: var(--color-bg-deep);
}

.difference-text {
    font-family: var(--font-sub-header);
    font-size: clamp(0.85rem, 1.1vw, 1.45rem);
    line-height: 1.5;
    color: #222222;
    max-width: 1160px;
    margin: 0 auto;
}



/* ==========================================================================
   Section 12: Why Choose Us
   ========================================================================== */
.why-section {
    background-color: #ffffff;
    padding: clamp(80px, 10vw, 20px) 0;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.why-header-wrapper {
    position: relative;
    text-align: center;
    margin-bottom: clamp(48px, 6vw, 80px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.why-watermark {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: none;
    opacity: 1.0;
    z-index: 1;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-watermark-img {
    width: 100%;
    height: auto;
    display: block;
}

.why-header-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.why-tag-heading {
    font-family: var(--font-sub-header);
    font-weight: 600;
    font-size: clamp(0.95rem, 1.13vw, 1.15rem);
    color: #5f55d3;
   letter-spacing: 0.75em;
    text-transform: uppercase;
}

.why-title-main {
    font-family: var(--font-header);
    font-size: clamp(2.8rem, 4.8vw, 4.8rem);
    color: #e21b3c;
    text-transform: uppercase;
    line-height: 1.05;
    margin: 0;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.why-title-sub {
    font-family: var(--font-header);
    font-size: clamp(2.8rem, 4.8vw, 4.8rem);
    color: #0c1033;
    text-transform: uppercase;
    line-height: 1.05;
    margin: 0;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.why-container {
    max-width: var(--site-max-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.why-content-card {
    background: linear-gradient(180deg, #e3dff6 0%, #ffffff 100%);
    border-radius: clamp(24px, 4vw, 48px);
    padding: clamp(32px, 5vw, 76px) clamp(20px, 4vw, 60px);
    width: 100%;
    box-sizing: border-box;
}

.why-carousel-container {
    position: relative;
    width: 100%;
}

.why-grid {
    display: flex;
    flex-direction: row;
    overflow-x: hidden;
    scroll-behavior: smooth;
    gap: 0 !important;
    width: 100% !important;
    scroll-snap-type: x mandatory;
}

.why-slide {
    flex: 0 0 100% !important;
    width: 100% !important;
    padding: 0 10px;
    box-sizing: border-box;
    scroll-snap-align: center;
    display: flex;
    justify-content: center;
}

.why-card {
    background: transparent;
    border-radius: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center !important;
    text-align: center !important;
    gap: 12px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: none;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

.why-card:hover {
    transform: none;
    box-shadow: none;
}

.why-arrows {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
    width: 100%;
}

.why-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.25s ease;
}

.why-arrow:active {
    transform: scale(0.9);
}

.prev-why, .next-why {
    background-color: #000000;
}

.why-arrow:hover {
    background-color: var(--color-accent-pink);
    color: #ffffff;
}

.why-arrow svg {
    width: 20px;
    height: 20px;
}

.why-icon-circle {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background: linear-gradient(135deg, #230303 0%, #ff016b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(167, 30, 77, 0.12);
}

.why-icon-svg {
    width: 36px;
    height: 36px;
    stroke: #ffffff;
    fill: none;
}

.why-icon-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.why-card-title {
    font-family: var(--font-sub-header);
    font-size: clamp(1.45rem, 1.8vw, 1.45rem);
    font-weight: 600;
    color: #0c1033;
    margin: 0;
}

.why-card-desc {
    font-family: var(--font-sub-header);
    font-size: clamp(1.05rem, 1.1vw, 1.15rem);
    color: #555555;
    margin: 0;
}

/* ==========================================================================
   Section 13: Transparent Economics
   ========================================================================== */
.economics-section {
    background: #ffffff;
    padding: clamp(12px, 2.5vw, 32px) 0 clamp(56px, 4.6vw, 82px);
    width: 100%;
}

.economics-container {
    max-width: var(--site-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.economics-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: clamp(48px, 6vw, 80px);
}

.economics-tag {
    font-family: var(--font-sub-header);
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--color-accent-violet);
    letter-spacing: 0.75em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.economics-title {
    font-family: var(--font-header);
    font-size: clamp(2.4rem,3.8vw, 3.8rem);
    line-height: 1.05;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 24px;
}

.eco-pink { color: var(--color-accent-pink); }
.eco-navy { color: var(--color-bg-deep); }

.economics-subtitle {
    font-family: var(--font-sub-header);
    font-size: clamp(1.02rem, 1.2vw, 1.25rem);
    line-height: 1.7;
    color: #555555;
    max-width: 800px;
    margin: 0 auto;
}

.economics-cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(38px, 7vw, 56px);
    margin-bottom: clamp(48px, 7vw, 80px);
}

.eco-col-title {
    font-family: var(--font-sub-header);
    font-size: clamp(1.3rem, 2.5vw, 2.6rem);
    line-height: 1.02;
    font-weight: 500;
    color: var(--color-bg-deep);
    letter-spacing: 0;
    margin-bottom: clamp(26px, 2.1vw, 38px);
    text-align:left;
}

.economics-left,
.economics-right {
    min-width: 0;
}

/* Investment Table */
.invest-table {
    width: 100%;
    table-layout: fixed;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #d8d6e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: none;
}

.invest-table thead tr {
    background: transparent;
}

.invest-table th {
    padding: clamp(22px, 1.7vw, 31px) clamp(24px, 2.6vw, 48px);
    text-align: left;
    font-family: var(--font-sub-header);
    font-weight: 400;
    font-size: clamp(1.1rem, 1.45vw, 1.8rem);
    line-height: 1.2;
    color: var(--color-accent-pink);
    background: #e4e3ee;
    border-bottom: 1px solid #d5d3dc;
}

.invest-table th:first-child,
.invest-table td:first-child {
    width: 64%;
}

.invest-table th:last-child,
.invest-table td:last-child {
    width: 36%;
}

.invest-table th:last-child,
.invest-table td:last-child {
    text-align: left;
    font-weight: 400;
    border-left: 1px solid #cbc9d5;
}

.invest-table th:last-child {
    background: #ead4e2;
    padding-left: clamp(26px, 3.1vw, 64px);
}

.invest-table td {
    padding: clamp(24px, 2.4vw, 43px) clamp(24px, 2.6vw, 48px);
    font-family: var(--font-sub-header);
    font-size: clamp(1rem, 1.42vw, 1.78rem);
    line-height: 1.22;
    color: #050505;
    background: #fbfaff;
    border-bottom: 1px solid #d5d3dc;
}

.invest-table td:last-child {
    padding-left: clamp(26px, 3.1vw, 64px);
    color: #050505;
    background: #fde8f2;
    font-weight: 400;
}

.invest-table tbody tr:hover {
    background: transparent;
}

.invest-total td {
    background: var(--color-bg-deep);
    color: #ffffff !important;
    font-weight: 400;
    font-size: clamp(1.08rem, 1.16vw, 1.55rem);
    padding-top: clamp(20px, 1.8vw, 29px);
    padding-bottom: clamp(20px, 1.8vw, 29px);
    border-bottom: 0;
}

.invest-total td:last-child {
    color: var(--color-accent-pink) !important;
    font-size: clamp(1.35rem, 1.85vw, 2.3rem);
    background: var(--color-bg-deep);
}

.invest-note {
    margin-top: clamp(22px, 2.4vw, 39px);
    font-family: var(--font-sub-header);
    font-size: clamp(1rem, 1.22vw, 1.5rem);
    color: #a7a7b3;
    line-height: 1.22;
    max-width: 820px;
    text-align: center;
}

/* ROI Cards */
.roi-cards {
    display: flex;
    flex-direction: column;
    gap: clamp(12px, 0.8vw, 14px);
    margin-bottom: clamp(12px, 0.95vw, 16px);
}

.roi-card {
    background: var(--color-bg-deep);
    border-radius: clamp(14px, 1vw, 20px);
    padding: clamp(28px, 2.6vw, 41px) clamp(28px, 3.2vw, 53px);
    min-height: clamp(132px, 9vw, 184px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: clamp(12px, 0.8vw, 18px);
}

.roi-label {
    font-family: var(--font-sub-header);
    font-size: clamp(1.08rem, 1.38vw, 1.7rem);
    line-height: 1.18;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0;
}

.roi-value {
    font-family: var(--font-sub-header);
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0 clamp(10px, 0.9vw, 16px);
    font-size: clamp(1.05rem, 1.25vw, 1.55rem);
    color: #ffffff;
    line-height: 1.05;
}

.roi-value--large { font-size: clamp(1.1rem, 1.25vw, 1.55rem); }

.roi-highlight,
.roi-highlight-pink {
    font-family: var(--font-header);
    font-size: clamp(2.8rem, 3.05vw, 3.65rem);
    line-height: 0.92;
    font-weight: normal;
    color: var(--color-accent-pink);
    letter-spacing: 0;
}

.roi-sub {
    font-size: clamp(1rem, 1.35vw, 1.72rem);
    color: rgba(255,255,255,0.9);
    line-height: 1.1;
}

.roi-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: clamp(56px, 3.7vw, 74px);
    padding: 16px 24px;
    background: var(--color-accent-pink);
    color: #ffffff;
    font-family: var(--font-sub-header);
    font-size: clamp(1.05rem, 1.18vw, 1.45rem);
    font-weight: 400;
    text-align: center;
    text-decoration: none;
    border-radius: 999px;
    transition: var(--transition-smooth);
}

.roi-cta-btn:hover {
    background: #c70d3e;
    transform: translateY(-2px);
}

/* Fee Includes */
.fee-includes {
    padding-top: clamp(20px, 3vw, 30px);
}

.fee-arrows {
    display: none;
}

.fee-includes-title {
    font-family: var(--font-sub-header);
    font-size: clamp(1.6rem, 2.8vw, 2.8rem);
    font-weight: 600;
    color: var(--color-accent-pink);
    margin-bottom: clamp(32px, 5vw, 52px);
    text-transform: none;
    letter-spacing: -0.02em;
}

.fee-includes-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(24px, 4vw, 40px) clamp(20px, 3vw, 48px);
}

.fee-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: transparent;
    border-radius: 0;
    border-left: none;
    padding: 4px 0;
}

.fee-num {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-accent-pink) 0%, #200424 100%);
    color: #ffffff;
    font-family: var(--font-sub-header);
    font-weight: 500;
    font-size: 1.55rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fee-item p {
    font-family: var(--font-sub-header);
    font-size: clamp(1.15rem, 1.2vw, 1.25rem);
    color: var(--color-bg-deep);
    font-weight: 500;
    line-height: 1.45;
    margin: 0;
    padding-top: 0;
}

/* ==========================================================================
   Section 14: The Journey
   ========================================================================== */
.journey-section {
    background: var(--color-bg-deep);
    padding: clamp(78px, 7.6vw, 120px) 0 clamp(72px, 7.2vw, 132px);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.journey-container {
    --journey-edge: clamp(20px, 5.8vw, 118px);
    max-width: 2048px;
    margin: 0 auto;
    padding: 0 var(--journey-edge);
}

.journey-header {
    margin-bottom: clamp(14px, 1.2vw, 24px);
}

.journey-tag {
    font-family: var(--font-sub-header);
    font-weight: 600;
    font-size: clamp(0.95rem, 1.25vw, 1.55rem);
    color: var(--color-accent-violet);
    letter-spacing: 0.75em;
    text-transform: uppercase;
    display: block;
    margin-bottom: clamp(18px, 1.4vw, 24px);
}

.journey-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: clamp(24px, 4vw, 72px);
    flex-wrap: wrap;
}

.journey-title {
    font-family: var(--font-header);
    font-size: clamp(3.35rem, 4.6vw, 6.2rem);
    line-height: 0.98;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    letter-spacing: 0;
}

.journey-pink { color: var(--color-accent-pink); }
.journey-white { color: var(--color-white); }

.journey-arrows {
    display: flex;
    gap: clamp(18px, 1.8vw, 32px);
    flex-shrink: 0;
    margin-left: auto;
}

.journey-arrow {
    width: clamp(58px, 4.4vw, 88px);
    height: clamp(58px, 4.4vw, 88px);
    border-radius: 50%;
    border: 0;
    background: #ffffff;
    color: var(--color-accent-pink);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.18);
}

.journey-arrow svg {
    width: clamp(20px, 1.4vw, 28px);
    height: clamp(20px, 1.4vw, 28px);
}

.journey-arrow--active {
    background: #ffffff;
    color: var(--color-accent-pink);
}

.journey-arrow:hover,
.journey-arrow--active:hover {
    background: var(--color-accent-pink);
    color: #ffffff;
}

.journey-arrow:disabled {
    opacity: 0.42;
    cursor: default;
    transform: none;
}

.journey-subtitle {
    font-family: var(--font-sub-header);
    font-size: clamp(1.05rem, 1.35vw, 1.72rem);
    color: rgba(255,255,255,0.62);
    margin-top: clamp(18px, 1.45vw, 24px);
    line-height: 1.35;
    font-weight: 400;
}

.journey-track-wrapper {
    overflow: hidden;
    margin: clamp(32px, 3.5vw, 64px) calc(-1 * var(--journey-edge)) clamp(48px, 4.5vw, 88px);
    padding: 0 var(--journey-edge);
}

.journey-track {
    display: flex;
    align-items: center;
    --journey-gap: clamp(16px, 2vw, 36px);
    gap: var(--journey-gap);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    padding: clamp(24px, 2.5vw, 48px) 2px clamp(32px, 3.5vw, 64px);
    position: relative;
}

.journey-track::-webkit-scrollbar { display: none; }

.journey-track::before {
    content: "";
    flex: 0 0 max(20px, calc((100% - calc((100% - 2 * var(--journey-gap)) / 2.8)) / 2));
}

.journey-track::after {
    content: "";
    flex: 0 0 max(20px, calc((100% - calc((100% - 2 * var(--journey-gap)) / 2.8)) / 2));
}

.journey-step {
    flex: 0 0 calc((100% - 2 * var(--journey-gap)) / 2.8);
    aspect-ratio: 1.088;
    scroll-snap-align: center;
    border: 0;
    padding: clamp(56px, 4.6vw, 94px) clamp(56px, 4.6vw, 94px) clamp(48px, 4vw, 78px);
    position: relative;
    transition: var(--transition-smooth);
    z-index: 1;
    cursor: pointer;
    box-sizing: border-box;
}

.journey-logo-card {
    flex: 0 0 calc((100% - 2 * var(--journey-gap)) / 2.8);
    aspect-ratio: 1.088;
    position: relative;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(56px, 4.6vw, 94px) clamp(56px, 4.6vw, 94px) clamp(48px, 4vw, 78px);
}

.journey-logo-wrapper {
    width: 100%;
    max-width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.journey-logo-card .journey-logo-wrapper {
    position: absolute;
    top: 50%;
    left: calc(50% - var(--journey-gap) * 0.85);
    transform: translate(-50%, -50%);
}

.journey-logo-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    opacity: 0.95;
}

.journey-step:hover {
    transform: translateY(-6px);
}

.journey-step-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% + var(--journey-gap));
    height: 100%;
    background: url('assets/Card.png') left center / 100% 100% no-repeat;
    z-index: 0;
    transition: inherit;
}

.journey-step--active {
    transform: rotate(-10deg);
    z-index: 2;
}

.journey-step--active .journey-step-bg {
    background: url('assets/Card2.png') left center / 100% 100% no-repeat;
    box-shadow: none;
}

.journey-step--active:hover {
    transform: rotate(-10deg);
}

.journey-step-icon {
    width: clamp(78px, 5.5vw, 112px);
    height: clamp(78px, 5.5vw, 112px);
    border-radius: 50%;
    background: linear-gradient(135deg, #4a123d 0%, #f1134d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: clamp(22px, 1.8vw, 30px);
    box-shadow: 0 16px 30px rgba(235, 17, 75, 0.18);
    position: relative;
    z-index: 2;
}

.journey-step-icon svg {
    width: clamp(42px, 2.85vw, 58px);
    height: clamp(42px, 2.85vw, 58px);
    stroke: #ffffff;
}

.journey-step-icon img,
.journey-step-img {
    width: clamp(42px, 2.85vw, 58px);
    height: clamp(42px, 2.85vw, 58px);
    object-fit: contain;
}

.journey-step-num {
    position: absolute;
    top: clamp(54px, 4.5vw, 88px);
    right: clamp(94px, 8.5vw, 142px);
    font-family: var(--font-header);
    font-size: clamp(5rem, 6.6vw, 8.5rem);
    color: rgba(160, 150, 255, 0.22);
    line-height: 0.85;
    user-select: none;
    z-index: 1;
}

.journey-step-title {
    font-family: var(--font-sub-header);
    font-size: clamp(1.55rem, 1.8vw, 2.35rem);
    font-weight: 500;
    color: var(--color-bg-deep);
    line-height: 1.12;
    margin-bottom: clamp(18px, 1.8vw, 28px);
    position: relative;
    z-index: 2;
}

.journey-step--active .journey-step-title { color: var(--color-accent-pink); }

.journey-step-desc {
    font-family: var(--font-sub-header);
    font-size: clamp(1.05rem, 1.3vw, 1.58rem);
    color: rgba(0, 3, 46, 0.48);
    line-height: 1.28;
    position: relative;
    max-width: 85%;
    z-index: 2;
}

.journey-step--active .journey-step-desc {
    color: var(--color-bg-deep);
}

.journey-note {
    font-family: var(--font-sub-header);
    font-size: clamp(1.05rem, 1.28vw, 1.55rem);
    color: rgba(255,255,255,0.62);
    line-height: 1.38;
    font-weight: 400;
    max-width: 1320px;
}

@media (max-width: 599px) {
    .journey-section {
        padding-top: 78px;
    }

    .journey-title-row {
        align-items: flex-start;
    }

    .journey-title {
        font-size: clamp(3rem, 14vw, 3.35rem);
    }

    .journey-arrows {
        margin-left: auto;
        gap: 16px;
    }

    .journey-subtitle {
        font-size: 1rem;
        line-height: 1.45;
    }

    .journey-track {
        gap: 44px;
        padding-top: 24px;
    }

    .journey-track::before {
        content: "";
        flex-basis: max(20px, calc((100% - min(78vw, 282px)) / 2));
    }

    .journey-track::after {
        flex-basis: max(20px, calc((100% - min(78vw, 282px)) / 2));
    }

    .journey-step {
        flex-basis: min(78vw, 282px);
        border-radius: 38px;
        padding: 48px 28px 44px;
    }

    .journey-logo-card {
        flex-basis: min(78vw, 282px);
        border-radius: 38px;
        padding: 48px 28px 44px;
    }

    .journey-step::after {
        display: none !important;
    }

    .journey-step--active {
        flex-basis: min(82vw, 292px);
        padding: 52px 28px 44px;
        transform: rotate(-6deg);
    }


    .journey-step--active:hover {
        transform: rotate(-6deg) translateY(-4px);
    }

    .journey-step-num {
        top: 34px;
        right: 38px;
        font-size: 5.1rem;
    }

    .journey-step-icon {
        width: 78px;
        height: 78px;
        margin-bottom: 24px;
    }

    .journey-step-icon svg {
        width: 44px;
        height: 44px;
    }

    .journey-step-title {
        font-size: 1.5rem;
        margin-bottom: 16px;
    }

    .journey-step-desc {
        font-size: 1rem;
    }

    .journey-note {
        font-size: 1rem;
    }
}

/* ==========================================================================
   Section 15: New Testimonials
   ========================================================================== */
.testimonials-new-section {
    background: #ffffff;
    padding: clamp(60px, 8vw, 100px) 0;
    width: 100%;
}

.testimonials-new-container {
    max-width: var(--site-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.testimonials-new-header {
    text-align: center;
    margin-bottom: clamp(36px, 5vw, 56px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.testimonials-new-tag {
    font-family: var(--font-sub-header);
    font-weight: 600;
    font-size: clamp(1rem, 1.28vw, 1.55rem);
    color: var(--color-accent-violet);
    letter-spacing: 0.75em;
    text-transform: uppercase;
}

.testimonials-new-title {
    font-family: var(--font-header);
    font-size: clamp(4rem, 6.8vw, 4.2rem);
    text-transform: uppercase;
    line-height: 1.15;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testi-pink { color: var(--color-accent-pink); }
.testi-navy { color: var(--color-bg-deep); }

.testi-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.testi-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    width: 100%;
    padding: 12px 4px 16px;
}

.testi-track::-webkit-scrollbar { display: none; }

.testi-card-new {
    flex: 0 0 90%;
    scroll-snap-align: center;
    background: #F3F1FD;
    border-radius: 24px;
    padding: clamp(28px, 4vw, 40px);
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: var(--transition-smooth);
}

.testi-card-new:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,3,46,0.08);
    background: #dbd4fd;
}

.testi-card-new:hover .testi-stars {
    color: #ffae00;
}
.testi-card-new:hover .testi-quote-new {
    color: #000000;
}

.testi-stars {
    font-size: 2.2rem;
    color: #f5d069;
    letter-spacing: 3px;
    font-weight: 700;
    transition: color var(--transition-smooth);
}



.testi-quote-new {
    font-family: var(--font-sub-header);
    font-size: clamp(1rem, 1.3vw, 1.3rem);
    line-height: 1.45;
    color: #989898;
    flex-grow: 1;
    font-style: italic;
    width: 80%;
    transition: color var(--transition-smooth);
}

.testi-author-row {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testi-avatar {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3D021E 0%, #00032E 100%);
    color: #ffffff;
    font-family: var(--font-sub-header);
    font-weight: 700;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testi-name-new {
    font-family: var(--font-sub-header);
    font-weight: 600;
    font-size: 1.35rem;
    color: var(--color-bg-deep);
}

.testi-role-new {
    font-family: var(--font-sub-header);
    font-size: 1.12rem;
    color: #888;
}

.testi-arrow {
    display: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-bg-deep);
    color: #ffffff;
    border: none;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    z-index: 10;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.testi-arrow svg { width: 18px; height: 18px; }
.testi-arrow-left { left: -25px; transform: translateY(-50%); }
.testi-arrow-right { right: -25px; transform: translateY(-50%); }
.testi-arrow:hover { background: var(--color-accent-pink); }

/* ==========================================================================
   Section 16: News & Events
   ========================================================================== */
.news-section {
    background: #F8F7FF;
    padding: clamp(60px, 8vw, 100px) 0;
    width: 100%;
}

.news-container {
    max-width: var(--site-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.news-header {
    text-align: center;
    margin-bottom: clamp(36px, 5vw, 56px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.news-tag {
    font-family: var(--font-sub-header);
    font-weight: 600;
    font-size: 1.12rem;
    color: var(--color-accent-violet);
    letter-spacing: 0.75em;
    text-transform: uppercase;
}

.news-title {
    font-family: var(--font-header);
    font-size: clamp(2rem, 3.8vw, 4.2rem);
    line-height: 1.15;
    text-transform: uppercase;
    text-align: center;
}

.news-pink { color: var(--color-accent-pink); }
.news-navy { color: var(--color-bg-deep); }

.news-subtitle {
    font-family: var(--font-sub-header);
    font-size: clamp(1.08rem, 1.2vw, 1.32rem);
    color: #666;
    max-width: 700px;
}

.news-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.news-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    width: 100%;
    padding: 12px 4px 16px;
}

.news-track::-webkit-scrollbar { display: none; }

.news-card {
    flex: 0 0 90%;
    scroll-snap-align: center;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0,3,46,0.06);
    transition: var(--transition-smooth);
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,3,46,0.12);
}

.news-card-img-wrapper {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.news-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.news-card:hover .news-card-img { transform: scale(1.05); }

.news-card-body {
    padding: clamp(20px, 3vw, 28px);
    flex-grow: 1;
    background: var(--color-bg-deep);
}

.news-card-title {
    font-family: var(--font-sub-header);
    font-size: clamp(1.5rem, 2vw, 2.6rem);
    font-weight: 500;
    color: var(--color-accent-pink);
    margin-bottom: 10px;
    line-height: 1.3;
}

.news-card-desc {
    font-family: var(--font-sub-header);
    font-size: clamp(1.05rem, 1.2vw, 1.2rem);
    color: rgba(255,255,255,0.7);
    line-height: 1.65;
}

.news-arrow {
    display: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-bg-deep);
    color: #ffffff;
    border: none;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    z-index: 10;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.news-dots {
    display: none;
}

.news-arrow svg { width: 18px; height: 18px; }
.news-arrow-left { left: -25px; transform: translateY(-50%); }
.news-arrow-right { right: -25px; transform: translateY(-50%); }
.news-arrow:hover { background: var(--color-accent-pink); }

/* ==========================================================================
   Section 17: Experience Gallery
   ========================================================================== */
.gallery-section {
    background: #ffffff;
    padding: clamp(60px, 8vw, 100px) 0;
    width: 100%;
}

.gallery-container {
    max-width: var(--site-max-width);
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.gallery-title {
    font-family: var(--font-header);
    font-size: clamp(4rem, 4.8vw, 4.2rem);
    color: var(--color-accent-pink);
    text-transform: uppercase;
    margin-bottom: 12px;
    line-height: 1.15;
}

.gallery-title-navy { color: var(--color-bg-deep); }

.gallery-subtitle {
    font-family: var(--font-sub-header);
    font-size: clamp(0.88rem, 1.2vw, 1.02rem);
    color: #666;
    line-height: 1.65;
    max-width: 700px;
    margin: 0 auto clamp(36px, 5vw, 54px);
}

.gallery-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.gallery-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    width: 100%;
    padding: 8px 4px 16px;
}

.gallery-track::-webkit-scrollbar { display: none; }

.gallery-item {
    flex: 0 0 80%;
    scroll-snap-align: center;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 9/14.5;
    position: relative;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-img { transform: scale(1.06); }

.gallery-arrow {
    display: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-accent-pink);
    color: #ffffff;
    border: none;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    z-index: 10;
    transition: var(--transition-smooth);
}

.gallery-arrow svg { width: 18px; height: 18px; }
.gallery-arrow-left { left: -25px; transform: translateY(-50%); }
.gallery-arrow-right { right: -25px; transform: translateY(-50%); }
.gallery-arrow:hover { background: var(--color-bg-deep); }

/* ==========================================================================
   Section 18: Enquiry Form
   ========================================================================== */
.enquiry-section {
    background:
        radial-gradient(circle at 40% 0%, rgba(235, 17, 75, 0.16) 0, rgba(235, 17, 75, 0.08) 150px, rgba(235, 17, 75, 0) 360px),
        radial-gradient(circle at 62% 0%, rgba(95, 85, 211, 0.14) 0, rgba(95, 85, 211, 0.07) 170px, rgba(95, 85, 211, 0) 390px),
        #ffffff;
    color: var(--color-bg-deep);
    padding: clamp(28px, 4vw, 38px) 0 var(--footer-curve);
    width: 100%;
    scroll-margin-top: 92px;
}

.enquiry-container {
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 20px;
}

.enquiry-header {
    text-align: center;
    margin-bottom: clamp(26px, 3.2vw, 32px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.enquiry-tag {
    font-family: var(--font-sub-header);
    font-weight: 600;
    font-size: clamp(0.64rem, 1vw, 0.74rem);
    color: #5f55d3;
    letter-spacing: 0.54em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.enquiry-title {
    font-family: 'Sabrine', sans-serif;
    font-size: clamp(2.4rem, 5vw, 3.45rem);
    line-height: 0.92;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 8px;
    letter-spacing: 0;
}

.enquiry-pink {
    background: linear-gradient(90deg, #eb114b 0%, #ff527b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.enquiry-navy { color: var(--color-bg-deep); }

.enquiry-subtitle {
    font-family: var(--font-sub-header);
    font-size: clamp(0.82rem, 1.1vw, 0.9rem);
    color: #929097;
    line-height: 1.38;
    max-width: 910px;
    margin: 0 auto 12px;
}

.enquiry-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(16px, 4vw, 48px);
    margin-top: 4px;

    
}

.enquiry-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-sub-header);
    font-size: clamp(0.74rem, 1vw, 0.84rem);
    font-weight: 400;
    color: var(--color-bg-deep);
    background: transparent;
    padding: 0;
    border-radius: 0;
}

.badge-icon {
    width: 20px;
    height: 20px;
    background-color: var(--color-accent-pink);
    color: #ffffff;
    border-radius: 50%;
    padding: 2px;
    display: inline-block;
    flex-shrink: 0;
}

.enquiry-badge-img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
}

.badge-icon polyline {
    display: block;
}

/* Form */
.enquiry-form {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    background: #f8e7ef;
    border-top-left-radius: 70px;
    border-top-right-radius: 70px;
    padding: clamp(28px, 4.6vw, 50px);
    box-shadow: none;
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.form-step {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-bottom: 0;
}

.form-step:last-of-type { border-bottom: none; }

.form-step-title {
    font-family: var(--font-sub-header);
    font-size: clamp(1.2rem, 1.4vw, 1.35rem);
    font-weight: 700;
    color: var(--color-bg-deep);
    line-height: 1.2;
    margin-bottom: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

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

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

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

.form-group label {
    font-family: var(--font-sub-header);
    font-size: 0.95rem;
    font-weight: 300;
    color: #4a4349;
    line-height: 1.25;
}

.form-group input,
.form-group select,
.form-group textarea {
    min-height: 74px;
    padding: 20px 28px;
    border: 1.5px solid transparent;
    border-radius: 12px;
    font-family: var(--font-sub-header);
    font-size: 0.95rem;
    color: #222;
    background: #ffffff;
    outline: none;
    transition: all 0.2s ease;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 42px;
}

.form-group textarea { resize: vertical; min-height: 124px; line-height: 1.45; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: transparent;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(235,17,75,0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #d2cdd1; }

.form-group.has-error input,
.form-group.has-error textarea,
.form-group.has-error .custom-select-trigger {
    border-color: var(--color-accent-pink);
    box-shadow: 0 0 0 3px rgba(235,17,75,0.14);
}

.form-check.has-error input[type="checkbox"] {
    outline: 2px solid rgba(235,17,75,0.36);
    outline-offset: 2px;
}

.field-error {
    display: none;
    font-family: var(--font-sub-header);
    font-size: 0.68rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-accent-pink);
}

.form-group.has-error .field-error,
.form-check.has-error .field-error {
    display: block;
}

.form-check .field-error {
    margin-top: 4px;
}

.form-status-message {
    display: none;
    margin-top: -26px;
    padding: 12px 14px;
    border-radius: 8px;
    font-family: var(--font-sub-header);
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.35;
}

.form-status-message.is-visible {
    display: block;
}

.form-status-message.is-error {
    color: #9f1239;
    background: #ffe4ee;
}

.form-status-message.is-success {
    color: #064e3b;
    background: #dff7ec;
}

/* Custom Select Dropdown */
.custom-select-wrap {
    position: relative;
    width: 100%;
}

.custom-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 74px;
    padding: 20px 28px;
    border: 1.5px solid transparent;
    border-radius: 12px;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.25s ease;
    gap: 10px;
    user-select: none;
}

.custom-select-trigger:hover {
    background: #ffffff;
}

.custom-select-wrap.open .custom-select-trigger {
    border-color: #f8e7ef;
    background: #ffffff;
    box-shadow: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.custom-select-value {
    font-family: var(--font-sub-header);
    font-size: 0.95rem;
    color: #222;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.custom-select-value.is-placeholder {
    color: #d2cdd1;
}

.custom-select-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-select-arrow svg {
    width: 15px;
    height: 15px;
    stroke: #111111;
    transition: stroke 0.2s ease;
}

.custom-select-wrap.open .custom-select-arrow {
    transform: rotate(180deg);
}

.custom-select-wrap.open .custom-select-arrow svg {
    stroke: var(--color-accent-pink);
}

.custom-select-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 100;
    background: #f8e7ef;
    border: 1px solid #f8e7ef;
    border-top: none;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    box-shadow: 0 16px 34px rgba(0,3,46,0.08);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.25s ease;
    pointer-events: none;
}

.custom-select-wrap.open .custom-select-options {
    max-height: 280px;
    overflow-y: auto;
    opacity: 1;
    pointer-events: auto;
}

/* Custom scrollbar for the dropdown panel */
.custom-select-options::-webkit-scrollbar {
    width: 5px;
}

.custom-select-options::-webkit-scrollbar-track {
    background: transparent;
}

.custom-select-options::-webkit-scrollbar-thumb {
    background: rgba(235,17,75,0.2);
    border-radius: 10px;
}

.custom-select-options::-webkit-scrollbar-thumb:hover {
    background: rgba(235,17,75,0.4);
}

.custom-select-option {
    padding: 16px 28px;
    font-family: var(--font-sub-header);
    font-size: 0.95rem;
    color: #444;
    background: #f8e7ef;
    cursor: pointer;
    transition: all 0.15s ease;
    border-left: 3px solid transparent;
    position: relative;
}

.custom-select-option:not(:last-child) {
    border-bottom: 1px solid #ead8e0;
}

.custom-select-option:hover {
    background: #f3dbe6;
    color: var(--color-bg-deep);
    border-left-color: var(--color-accent-pink);
    padding-left: 32px;
}

.custom-select-option.active {
    background: #efd2df;
    color: var(--color-accent-pink);
    font-weight: 600;
    border-left-color: var(--color-accent-pink);
}

.custom-select-option.active::after {
    content: '✓';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.82rem;
    color: var(--color-accent-pink);
    font-weight: 700;
}

.form-consent {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-check {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 12px;
    cursor: pointer;
}

.form-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border: 1px solid rgba(0,3,46,0.22);
    border-radius: 2px;
    flex-shrink: 0;
    margin-top: 3px;
    cursor: pointer;
    accent-color: var(--color-accent-pink);
}

.form-check span {
    font-family: var(--font-sub-header);
    font-size: 0.95rem;
    color: #4a4349;
    line-height: 1.38;
    flex: 1 1 calc(100% - 30px);
}

.form-check.has-error span {
    color: #6f1d3a;
}

.form-check .field-error {
    flex: 0 0 100%;
    margin-left: 24px;
}

.enquiry-submit-btn {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    display: block;
    min-height: 64px;
    padding: 18px 28px;
    background: var(--color-accent-pink);
    color: #ffffff;
    font-family: var(--font-sub-header);
    font-size: 1.05rem;
    font-weight: 800;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: var(--transition-smooth);
    letter-spacing: 0.02em;
    text-align: center;
}

.enquiry-submit-btn:hover:not(:disabled) {
    background: #c70d3e;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(235,17,75,0.3);
}

.enquiry-submit-btn:disabled { opacity: 0.85; cursor: default; }

.enquiry-privacy {
    font-family: var(--font-sub-header);
    font-size: 0.85rem;
    color: #777777;
    text-align: left;
    line-height: 1.45;
}

.enquiry-address {
    font-family: var(--font-sub-header);
    font-size: 0.7rem;
    color: #a89fa6;
    text-align: left;
    line-height: 1.45;
    margin-top: -18px;
}

/* ==========================================================================
   Section 19: Footer
   ========================================================================== */
.site-footer {
    background: var(--color-bg-deep);
    border-radius: var(--footer-curve) var(--footer-curve) 0 0;
    position: relative;
    margin-top: calc(-1 * var(--footer-curve));
    padding: clamp(80px, 8vw, 160px) 0 0;
    width: 100%;
}

.footer-container {
    max-width: none;
    margin: 0 auto;
}

.footer-logo-card {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: transparent;
    width: clamp(118px, 12vw, 244px);
    height: clamp(84px, 7.6vw, 165px);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    z-index: 10;
}

.footer-logo-img {
    width: clamp(64px, 6.8vw, 138px);
    height: auto;
    object-fit: contain;
}

.footer-intro {
    text-align: center;
    margin-top: 0;
    margin-bottom: clamp(28px, 3vw, 48px);
}

.footer-tagline {
    font-family: var(--font-sub-header);
    font-size: clamp(1.35rem, 1.65vw, 2.08rem);
    font-weight: 400;
    color: #ffffff;
    line-height: 1.24;
    max-width: min(1040px, 78vw);
    margin: 0 auto;
    padding-top: 20px;
}

.footer-social {
    display: flex;
    gap: clamp(14px, 1.2vw, 24px);
    margin-top: clamp(26px, 3vw, 44px);
}

.footer-social-desktop {
    display: flex;
}

.footer-social-mobile {
    display: none;
}

.footer-social-link {
    width: clamp(32px, 2.5vw, 50px);
    height: clamp(32px, 2.5vw, 50px);
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
    border-radius: 50%;
    background: #ffffff;
    color: var(--color-bg-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-link svg {
    width: 48%;
    height: 48%;
    fill: currentColor;
}

.footer-social-link[aria-label="Instagram"] svg,
.footer-social-link[aria-label="Facebook"] svg,
.footer-social-link[aria-label="YouTube"] svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.footer-social-link:hover {
    background: var(--color-accent-pink);
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-main-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px 20px;
    padding-bottom: clamp(36px, 3.5vw, 60px);
    border-bottom: none;
    margin-bottom: 0;
}

.footer-col-title {
    font-family: var(--font-sub-header);
    font-weight: 500;
    font-size: clamp(1.1rem, 1.35vw, 1.76rem);
    color: var(--color-accent-pink);
    margin-bottom: clamp(20px, 2.3vw, 34px);
    text-transform: none;
    letter-spacing: 0;
}

.footer-col-no-title {
    padding-top: 0;
}

.accordion-arrow {
    display: none;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: clamp(14px, 1.55vw, 26px);
}

.footer-links a {
    font-family: var(--font-sub-header);
    font-size: clamp(1rem, 1.28vw, 1.72rem);
    font-weight: 400;
    color: rgba(255,255,255,0.88);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover { color: #ffffff; }

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: clamp(18px, 1.95vw, 31px);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: clamp(12px, 1.25vw, 20px);
    font-family: var(--font-sub-header);
    font-size: clamp(1rem, 1.28vw, 1.72rem);
    font-weight: 400;
    color: rgba(255,255,255,0.9);
    line-height: 1.35;
}

.footer-contact-badge {
    width: clamp(28px, 2vw, 40px);
    height: clamp(28px, 2vw, 40px);
    border-radius: 50%;
    background: var(--color-accent-pink);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-icon-img {
    width: clamp(28px, 2vw, 40px);
    height: clamp(28px, 2vw, 40px);
    object-fit: contain;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-badge svg {
    width: 48%;
    height: 48%;
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
}

.footer-contact-text {
    font-size: clamp(1rem, 1.28vw, 1.72rem);
    font-weight: 400;
    color: rgba(255,255,255,0.9);
}

.footer-contact-link {
    text-decoration: none;
    color: rgba(255,255,255,0.9);
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.footer-contact-link:hover {
    color: var(--color-accent-pink);
    text-decoration: none;
    text-underline-offset: 3px;
}

.footer-hours {
    display: flex;
    align-items: center;
    gap: clamp(8px, 1vw, 16px);
    color: rgba(255,255,255,0.9) !important;
    font-size: clamp(1rem, 1.24vw, 1.62rem) !important;
    font-weight: 400;
}

.footer-hours svg.chevron-icon {
    width: clamp(14px, 1.05vw, 21px);
    height: clamp(14px, 1.05vw, 21px);
    stroke: #ffffff;
    stroke-width: 2.5;
    margin-left: 2px;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    padding: clamp(20px, 1.9vw, 31px) 0;
    text-align: center;
    background: rgba(0, 0, 0, 0.32);
    box-shadow: 0 0 0 100vmax rgba(0, 0, 0, 0.32);
    clip-path: inset(0 -100vmax);
}

.footer-copy {
    font-family: var(--font-sub-header);
    font-size: clamp(0.86rem, 1.05vw, 1.38rem);
    color: rgba(255,255,255,0.62);
}

.footer-bottom-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    align-items: center;
}

.footer-bottom-links a {
    font-family: var(--font-sub-header);
    font-size: clamp(0.86rem, 1.05vw, 1.38rem);
    color: rgba(255,255,255,0.62);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom-links a:hover { color: #ffffff; }
.footer-bottom-links span { color: rgba(255,255,255,0.2); }

/* ==========================================================================
   Responsive Breakpoints — Sections 12–19
   ========================================================================== */

/* Tablet (768px+) */
@media (min-width: 768px) {
    .why-arrows {
        display: none !important;
    }

    .why-grid { 
        display: grid;
        grid-template-columns: repeat(2, 1fr); 
        gap: 48px 32px !important;
        overflow: visible;
        scroll-snap-type: none;
    }

    .why-slide {
        flex: none !important;
        width: 100% !important;
        padding: 0;
    }

    .why-card {
        align-items: flex-start !important;
        text-align: left !important;
    }

    .why-card:hover {
        transform: translateY(-4px);
    }

    .economics-cols { grid-template-columns: 1fr; }
    .fee-includes-grid { grid-template-columns: repeat(2, 1fr); }

    .testi-card-new { flex: 0 0 calc(50% - 12px); scroll-snap-align: start; }
    .news-card { flex: 0 0 calc(50% - 12px); scroll-snap-align: start; }
    .gallery-item { flex: 0 0 calc(33.333% - 12px); aspect-ratio: 9/14.5; }

    .form-row { grid-template-columns: 1fr 1fr; }
    .form-row--three { grid-template-columns: repeat(3, 1fr); }

    .footer-main-grid {
        grid-template-columns: 1fr 1fr;
        gap: 42px 56px;
    }
    .footer-main-grid .footer-accordion:first-child .footer-links {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: clamp(14px, 1.55vw, 26px) 28px;
    }
    .site-footer {
        border-radius: var(--footer-curve) var(--footer-curve) 0 0;
        margin-top: calc(-1 * var(--footer-curve));
    }
    .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    .why-content-card {
        padding: clamp(32px, 5vw, 76px);
    }

    .why-grid { 
        display: grid;
        grid-template-columns: repeat(3, minmax(280px, 350px));
        justify-content: space-between;
        gap: 60px 20px !important;
    }
    .economics-cols {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.04fr);
        align-items: start;
        gap: clamp(32px, 3.25vw, 56px);
    }
    .fee-includes-grid { grid-template-columns: repeat(3, 1fr); }

    .testi-card-new { flex: 0 0 calc(33.333% - 16px); }
    .testi-arrow { display: flex; }

    .news-card { flex: 0 0 calc(33.333% - 16px); }
    .news-arrow { display: flex; }

    .gallery-item { flex: 0 0 calc(33.333% - 12px); aspect-ratio: 9/14.5; }
    .gallery-arrow { display: flex; }

    .footer-main-grid {
        grid-template-columns: minmax(340px, 1.44fr) minmax(220px, 0.86fr) minmax(560px, 2fr);
        gap: clamp(42px, 4.4vw, 88px);
    }

    .footer-col-no-title {
        padding-top: clamp(46px, 3.6vw, 74px);
    }

    .footer-hours span {
        white-space: nowrap;
    }
}

/* Wide Desktop (1280px+) */
@media (min-width: 1280px) {
    .why-container { padding: 0 40px; }
    .economics-container { padding: 0 40px; }
    .journey-container { padding: 0 var(--journey-edge); }
    .testimonials-new-container { padding: 0 40px; }
    .news-container { padding: 0 40px; }
    .gallery-container { padding: 0 40px; }
    .gallery-item { flex: 0 0 calc(33.333% - 12px); aspect-ratio: 9/14.5; }
    .footer-container { padding: 0 64px; }
}

/* ==========================================================================
   Section 17: Experience Gallery Videos & Mute Buttons
   ========================================================================== */
.gallery-video-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.gallery-item .video-mute-btn {
    position: absolute;
    bottom: 16px;
    right: 16px;
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 3, 46, 0.6);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.gallery-item .video-mute-btn:hover {
    background: var(--color-accent-pink);
    transform: scale(1.1);
    border-color: var(--color-accent-pink);
}

.gallery-item .video-mute-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    display: block;
}

.gallery-item .video-mute-btn .hidden {
    display: none;
}

/* ==========================================================================
   Responsive Container Spacing Standardizer (Matching Navbar alignment)
   ========================================================================== */
.header-container,
.hero-container,
.story-container,
.founder-container,
.awards-container,
.vision-mission-container,
.values-container,
.menu-container,
.why-container,
.economics-container,
.testimonials-new-container,
.news-container,
.gallery-container,
.enquiry-container,
.footer-container {
    padding-left: 20px !important;
    padding-right: 20px !important;
}

@media (min-width: 768px) {
    .header-container,
    .hero-container,
    .story-container,
    .founder-container,
    .awards-container,
    .vision-mission-container,
    .values-container,
    .menu-container,
    .why-container,
    .economics-container,
    .testimonials-new-container,
    .news-container,
    .gallery-container,
    .enquiry-container,
    .footer-container {
        padding-left: 32px !important;
        padding-right: 32px !important;
    }
}

@media (min-width: 1024px) {
    .header-container,
    .hero-container,
    .story-container,
    .founder-container,
    .awards-container,
    .vision-mission-container,
    .values-container,
    .menu-container,
    .why-container,
    .economics-container,
    .testimonials-new-container,
    .news-container,
    .gallery-container,
    .enquiry-container,
    .footer-container {
        padding-left: 40px !important;
        padding-right: 40px !important;
    }
}

@media (min-width: 1440px) {
    .header-container,
    .hero-container,
    .story-container,
    .founder-container,
    .awards-container,
    .vision-mission-container,
    .values-container,
    .menu-container,
    .why-container,
    .economics-container,
    .testimonials-new-container,
    .news-container,
    .gallery-container,
    .enquiry-container,
    .footer-container {
        padding-left: 64px !important;
        padding-right: 64px !important;
    }
}

/* Form reference lockup override */
.enquiry-container {
    max-width: 950px;
    padding-left: clamp(18px, 3vw, 30px) !important;
    padding-right: clamp(18px, 3vw, 30px) !important;
}

@media (min-width: 1440px) {
    .footer-container {
        padding-left: clamp(84px, 5.5vw, 116px) !important;
        padding-right: clamp(84px, 5.5vw, 116px) !important;
    }
}

@media (min-width: 1024px) {
    .enquiry-container {
        max-width: 1200px;
    }

    .enquiry-form {
        max-width: 1100px;
        padding-left: clamp(50px, 4.4vw, 64px);
        padding-right: clamp(50px, 4.4vw, 64px);
    }
}

@media (min-width: 1441px) {
    .enquiry-container {
        max-width: 1450px;
    }

    .enquiry-tag {
        font-size: 1.15rem;
        font-weight: 600;
    }

    .enquiry-title {
        font-size: 6.14rem;
    }

    .enquiry-subtitle {
        font-size: 1.38rem;
    }

    .enquiry-badge {
        font-size: 1.61rem;
    }

    .enquiry-form {
        max-width: 1350px;
        padding-left: clamp(64px, 4.8vw, 88px);
        padding-right: clamp(64px, 4.8vw, 88px);
    }

    .form-step-title {
        font-size: 1.6rem;
    }

    .form-group label,
    .form-check span {
        font-size: 1.2rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea,
    .custom-select-value,
    .custom-select-option {
        font-size: 1.25rem;
    }

    .enquiry-submit-btn {
        font-size: 1.35rem;
    }
    .enquiry-privacy {
        font-size: 1.14rem;
    }

    .enquiry-address {
        font-size: 1.14rem;
    }

}

/* Mobile hero lockup to match the provided reference */
@media (max-width: 767px) {
    .announcement-bar {
        display: none;
    }

    .site-header {
        position: sticky;
        top: 0;
        box-shadow: none;
        z-index: 999;
    }

    :root {
        --scroll-padding-top: 95px;
    }

    .header-container {
        height: 95px;
        padding-left: 24px !important;
        padding-right: 24px !important;
        border-bottom: 0;
        justify-content: flex-end;
    }

    .logo-box {
        left: 24px;
        top: 6.5px;
        transform: none;
        width: 94px;
        height: 82px;
        border-radius: 0;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
    }

    .logo-img {
        width: 72px;
    }

    .mobile-menu-toggle {
        width: 34px;
        height: 26px;
        margin-left: auto;
        filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.5));
    }

    .mobile-menu-toggle .bar {
        height: 4px;
        border-radius: 999px;
        background-color: var(--color-white);
    }

    .mobile-menu-toggle .bar:nth-child(3) {
        width: 58%;
        align-self: flex-end;
    }

    .mobile-menu-toggle.active .bar:nth-child(1) {
        transform: translateY(11px) rotate(45deg);
    }

    .mobile-menu-toggle.active .bar:nth-child(3) {
        width: 100%;
        transform: translateY(-11px) rotate(-45deg);
    }

    .mobile-nav {
        padding-top: 112px;
    }

    .hero-section {
        min-height: auto;
        padding: 28px 0 42px;
    }

    .hero-container {
        padding-left: 24px !important;
        padding-right: 24px !important;
        gap: 34px;
    }

    .hero-content {
        gap: 22px;
    }

    .location-badge {
        white-space: nowrap;
        font-size: clamp(0.78rem, 3vw, 0.95rem);
        line-height: 1.1;
        padding: 9px 18px;
        border-radius: 999px;
        font-weight: 500;
        letter-spacing: 0;
    }

    .hero-title {
        width: 100%;
        font-size: clamp(1.86rem, 7.7vw, 2.08rem);
        line-height: 1.03;
        text-shadow: 0 3px 0 rgba(0, 0, 0, 0.45);
    }

    .hero-title .title-line:nth-child(2) {
        white-space: nowrap;
    }

    .stats-card {
        flex-direction: row;
        justify-content: center;
        width: min(70vw, 760px);
        padding: 15px 16px;
        gap: clamp(14px, 4.8vw, 26px);
        border-radius: 8px;
        border-width: 1.5px;
    }

    .stat-block {
        gap: 6px;
        min-width: 0;
    }

    .stat-value {
        font-size: clamp(2.45rem, 10vw, 2.78rem);
        line-height: 0.9;
        text-shadow: 0 3px 0 rgba(0, 0, 0, 0.55);
        white-space: nowrap;
    }

    .stat-label {
        font-size: clamp(0.82rem, 3.65vw, 1.02rem);
        line-height: 1;
        text-transform: none;
        letter-spacing: 0;
    }

    .stat-divider {
        width: 1px;
        height: 44px;
        background-color: rgba(255, 255, 255, 0.62);
    }

    .hero-actions {
        flex-direction: row;
        justify-content: center;
        width: min(86vw, 920px);
        gap: 12px;
    }

    .hero-actions .btn {
        width: auto;
        min-height: 45px;
        padding: 0 12px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: clamp(0.78rem, 3.45vw, 1rem);
        line-height: 1.05;
        white-space: nowrap;
    }

    .hero-actions .btn-primary {
        flex: 1.35 1 0;
    }

    .hero-actions .btn-secondary {
        flex: 1 1 0;
        border-width: 1px;
        box-shadow: inset 0 -1px 0 rgba(160, 150, 255, 0.85);
    }

    .hero-visual {
        max-width: none;
        width: 100%;
    }

    .storefront-card {
        aspect-ratio: 947 / 667;
        border-radius: 20px;
        padding: 1.5px;
    }

    .storefront-card:hover {
        transform: none;
    }

    .storefront-parallax-wrapper {
        border-radius: 18.5px;
    }

    .carousel-indicators {
        margin-top: 38px;
        gap: 12px;
    }

    .indicator-dot {
        width: 14px;
        height: 14px;
        background-color: rgba(160, 150, 255, 0.35);
    }

    .indicator-dot.active {
        width: 32px;
        height: 14px;
        border-radius: 999px;
        background-color: var(--color-white);
    }

    /* Keep the floating action buttons visible on mobile screens too */
    /*
    .floating-actions-bar {
        display: none;
    }
    */

    .journey-track-wrapper {
        overflow: hidden;
        margin-left: calc(-1 * var(--journey-edge));
        margin-right: calc(-1 * var(--journey-edge));
        padding-left: var(--journey-edge);
        padding-right: var(--journey-edge);
    }

    .journey-track {
        --journey-gap: clamp(70px, 19vw, 92px);
        gap: var(--journey-gap);
        padding-top: 28px;
        padding-bottom: 58px;
        scroll-snap-type: x mandatory;
    }

    .journey-track::after {
        display: none;
        content: none;
    }

    .journey-step,
    .journey-step--active {
        flex: 0 0 min(78vw, 340px);
        max-width: min(78vw, 340px);
    }

    .journey-step-bg,
    .journey-step--active .journey-step-bg {
        width: 100%;
    }

    .journey-step-num {
        right: clamp(126px, 34vw, 158px);
    }
}

/* Mobile-only Journey composition matching the supplied reference */
@media (max-width: 767px) {
    .journey-section {
        padding: clamp(76px, 14.4vw, 108px) 0 clamp(28px, 4vw, 34px);
        overflow: hidden;
    }

    .journey-container {
        --journey-edge: clamp(20px, 4.8vw, 36px);
        padding: 0 var(--journey-edge);
    }

    .journey-header {
        margin-bottom: 0;
        text-align: center;
    }

    .journey-tag {
        font-size: clamp(0.98rem, 3.25vw, 1.55rem);
        letter-spacing: 0.55em;
        margin-bottom: clamp(14px, 2.7vw, 20px);
        padding-left: 0.55em;
    }

    .journey-title-row {
        display: block;
    }

    .journey-title {
        width: 100%;
        align-items: center;
        font-size: clamp(1.8rem, 8.7vw, 3.15rem);
        line-height: 1.02;
        text-align: center;
    }

    .journey-title span {
        white-space: nowrap;
    }

    .journey-arrows {
        display: none;
    }

    .journey-subtitle {
        max-width: min(92vw, 660px);
        margin: clamp(16px, 3.1vw, 23px) auto 0;
        font-size: clamp(1rem, 3.55vw, 1.78rem);
        line-height: 1.28;
        text-align: center;
        color: rgba(255, 255, 255, 0.72);
    }

    .journey-track-wrapper {
        overflow: hidden;
        margin: clamp(68px, 11.6vw, 87px) calc(-1 * var(--journey-edge)) clamp(40px, 6.4vw, 48px);
        padding: 0;
    }

    .journey-track {
        --journey-card-width: clamp(220px, 57.3vw, 431px);
        --journey-gap: clamp(54px, 14.9vw, 112px);
        gap: var(--journey-gap);
        align-items: center;
        padding: 0;
        scroll-snap-type: x mandatory;
        overflow-x: auto;
    }

    .journey-track::before,
    .journey-track::after {
        content: "";
        display: block;
        flex: 0 0 max(0px, calc((100% - var(--journey-card-width)) / 2));
    }

    .journey-logo-card {
        display: none;
    }

    .journey-step,
    .journey-step--active {
        flex: 0 0 var(--journey-card-width);
        max-width: var(--journey-card-width);
        height: calc(var(--journey-card-width) * 1.16);
        aspect-ratio: auto;
        padding: clamp(34px, 8.35vw, 63px) clamp(32px, 8.25vw, 62px) clamp(48px, 11vw, 80px);
        transform: none;
        cursor: default;
    }

    .journey-step--last {
        overflow: hidden;
    }

    .journey-step:hover,
    .journey-step--active:hover {
        transform: none;
    }

    .journey-step-bg,
    .journey-step--active .journey-step-bg {
        width: calc(100% + var(--journey-gap));
        height: 100%;
        background-position: left center;
        background-size: 100% 100%;
    }

    .journey-step-bg {
        background-image: url('assets/Card.png');
    }

    .journey-step--active .journey-step-bg {
        background-image: url('assets/Card2.png');
    }

    .journey-step-icon {
        width: clamp(50px, 12.8vw, 96px);
        height: clamp(50px, 12.8vw, 96px);
        margin-bottom: clamp(19px, 3.45vw, 26px);
        box-shadow: none;
    }

    .journey-step-icon img,
    .journey-step-img {
        width: 56%;
        height: 56%;
    }

    .journey-step-num {
        top: clamp(36px, 8.5vw, 64px);
        right: clamp(24px, 6.5vw, 49px);
        font-size: clamp(3.3rem, 12.1vw, 5.7rem);
        color: rgba(160, 150, 255, 0.18);
    }

    .journey-step-title {
        font-size: clamp(1.05rem, 4vw, 1.9rem);
        line-height: 1.08;
        margin-bottom: clamp(16px, 3.2vw, 24px);
        font-weight: 700;
    }

    .journey-step-desc {
        max-width: 85%;
        font-size: clamp(0.86rem, 3.55vw, 1.68rem);
        line-height: 1.18;
        color: var(--color-bg-deep);
    }

    .journey-note {
        max-width: min(92vw, 700px);
        margin: 0 auto;
        font-size: clamp(0.95rem, 3.45vw, 1.65rem);
        line-height: 1.28;
        text-align: center;
        color: rgba(255, 255, 255, 0.72);
    }
}

/* ==========================================================================
   Premium Scroll & Animations System
   ========================================================================== */

/* Title & Element Fade-Up Animations */
.fade-up-element {
    opacity: 0;
    transform: translateY(30px);
    will-change: opacity, transform;
    transition: opacity 1.0s cubic-bezier(0.215, 0.61, 0.355, 1), 
                transform 1.0s cubic-bezier(0.215, 0.61, 0.355, 1);
}

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

/* Cascading Delays for Staggered Entries */
.fade-delay-1 { transition-delay: 0.1s; }
.fade-delay-2 { transition-delay: 0.2s; }
.fade-delay-3 { transition-delay: 0.3s; }
.fade-delay-4 { transition-delay: 0.4s; }
.fade-delay-5 { transition-delay: 0.5s; }
.fade-delay-6 { transition-delay: 0.6s; }

/* Smooth Image Lazy-Loading */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    will-change: opacity;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Parallax Optimization */
.parallax-container {
    overflow: hidden;
    position: relative;
}

.parallax-img {
    will-change: transform;
}

/* Custom Alternating Animations for Narrative Text */
.fade-in-left-element {
    opacity: 0;
    transform: translateX(-30px);
    will-change: opacity, transform;
    transition: opacity 1.0s cubic-bezier(0.25, 1, 0.5, 1), 
                transform 1.0s cubic-bezier(0.25, 1, 0.5, 1);
}

.fade-in-left-element.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right-element {
    opacity: 0;
    transform: translateX(30px);
    will-change: opacity, transform;
    transition: opacity 1.0s cubic-bezier(0.25, 1, 0.5, 1), 
                transform 1.0s cubic-bezier(0.25, 1, 0.5, 1);
}

.fade-in-right-element.is-visible {
    opacity: 1;
    transform: translateX(0);
}


/* Mobile-only Vision Card layout (logo left, text right) and Section background gradient */
@media (max-width: 767px) {
    .vision-mission-section {
        background: 
            linear-gradient(to bottom, transparent 15%, #ffffff 85%),
            linear-gradient(to right, rgba(244, 11, 73, 0.35) 0%, rgba(108, 92, 231, 0.38) 100%),
            #ffffff !important;
    }

    .testimonials-new-title {
    font-size: clamp(2.6rem, 4.6vw, 5.1rem);
}

    .vision-card {
        display: grid !important;
        grid-template-columns: auto 1fr;
        column-gap: 20px;
        row-gap: 15px;
        align-items: center;
        padding: 30px 20px;
    }
    
    .vision-card-icon {
        grid-column: 1;
        grid-row: 1;
        margin-bottom: 0 !important;
        width: 60px !important;
    }
    
    .vision-card-title {
        grid-column: 2;
        grid-row: 1;
        margin-bottom: 0 !important;
        font-size: clamp(2.2rem, 8vw, 2.8rem) !important;
    }
    
    .vision-card p {
        grid-column: 1 / span 2;
        font-size: clamp(1.1rem, 2vw, 1.3rem) !important;
    }

    .values-title {
        font-size: clamp(2.2rem, 8vw, 3rem) !important;
        text-align: center !important;
    }

    .why-title-main,
    .why-title-sub {
        font-size: clamp(2.2rem, 8.2vw, 2.8rem) !important;
    }

    .fee-includes-title {
        text-align: center !important;
    }

    .fee-includes-grid {
        display: flex !important;
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        scrollbar-width: none;
        gap: 16px;
        padding: 10px 20px 20px;
        margin: 0 -20px;
        -webkit-overflow-scrolling: touch;
    }
    
    .fee-includes-grid::-webkit-scrollbar {
        display: none;
    }
    
    .fee-item {
        flex: 0 0 clamp(260px, 75vw, 320px);
        scroll-snap-align: center;
        flex-direction: column !important;
        align-items: flex-start !important;
        text-align: left !important;
        background-color: #f2ebfa !important;
        border-radius: 20px !important;
        padding: 35px 24px !important;
        gap: 16px !important;
        box-shadow: 0 8px 24px rgba(167, 30, 77, 0.04);
        box-sizing: border-box;
    }
    
    .fee-num {
        margin-bottom: 8px !important;
    }
    
    .fee-item p {
        font-size: 1.15rem !important;
        color: #0c1033 !important;
        font-weight: 500 !important;
        text-align: left !important;
    }
    
    .fee-arrows {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 16px;
        margin-top: 24px;
        width: 100%;
    }
    
    .fee-arrow {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff !important;
        background-color: #000000 !important;
        cursor: pointer;
        transition: all 0.25s ease;
    }
    
    .fee-arrow:active {
        transform: scale(0.9);
    }
    
    .fee-arrow:hover {
        background-color: var(--color-accent-pink) !important;
        color: #ffffff !important;
    }
    
    .fee-arrow svg {
        width: 20px;
        height: 20px;
    }

    .vision-title {
        font-size: clamp(2.8rem, 2.9vw, 3rem) !important;
    }

    .difference-title {
        font-size: clamp(2.4rem, 2.2vw, 2.5rem) !important;
        line-height: 1.2 !important;
    }

    .gallery-title {
        font-size: clamp(2rem, 3.8vw, 3.2rem) !important;
    }

    /* Standardize all section tags in mobile view to 1rem and 0.5em letter-spacing */
    .story-tag-heading,
    .founder-tag-heading,
    .awards-tag-heading,
    .vision-tag-heading,
    .menu-tag-heading,
    .difference-tag,
    .why-tag-heading,
    .enquiry-tag,
    .economics-tag,
    .journey-tag,
    .testimonials-new-tag,
    .news-tag {
        font-size: 1rem !important;
        letter-spacing: 0.5em !important;
    }

    .journey-tag {
        padding-left: 0.3em !important;
    }

    .menu-categories-wrapper {
        display: none !important;
    }
    
    .menu-mobile-filter-wrapper {
        display: block;
        position: relative;
        width: 100%;
        max-width: 320px;
        margin: 0 auto clamp(24px, 4vw, 36px);
        z-index: 50;
    }
    
    .menu-mobile-filter-trigger {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #EAE6FE;
        border-radius: 999px;
        padding: 8px 24px 8px 8px;
        cursor: pointer;
        user-select: none;
        box-shadow: 0 4px 12px rgba(108, 92, 231, 0.1);
    }
    
    .menu-mobile-filter-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        background: #3B006B;
        color: #ffffff;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        flex-shrink: 0;
    }
    
    .menu-mobile-filter-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .menu-mobile-filter-label {
        font-family: var(--font-sub-header);
        font-size: 0.98rem;
        font-weight: 500;
        color: #4a4349;
        flex: 1;
        text-align: left;
        padding-left: 14px;
    }
    
    .menu-mobile-filter-arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 18px;
        height: 18px;
        color: #111111;
        transition: transform 0.25s ease;
    }
    
    .menu-mobile-filter-arrow svg {
        width: 16px;
        height: 16px;
    }
    
    .menu-mobile-filter-wrapper.open .menu-mobile-filter-arrow {
        transform: rotate(180deg);
    }
    
    .menu-mobile-filter-options {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: 0;
        background: #ffffff;
        border: 1.5px solid #EAE6FE;
        border-radius: 20px;
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
        pointer-events: none;
    }
    
    .menu-mobile-filter-wrapper.open .menu-mobile-filter-options {
        max-height: 350px;
        opacity: 1;
        pointer-events: auto;
    }
    
    .menu-mobile-option {
        padding: 14px 24px;
        font-family: var(--font-sub-header);
        font-size: 0.98rem;
        color: #444;
        cursor: pointer;
        transition: all 0.15s ease;
        text-align: left;
    }
    
    .menu-mobile-option:not(:last-child) {
        border-bottom: 1px solid #f1eeff;
    }
    
    .menu-mobile-option:hover {
        background: #f1eeff;
        color: #3B006B;
        padding-left: 28px;
    }
    
    .menu-mobile-option.active {
        background: #EAE6FE;
        color: #3B006B;
        font-weight: 600;
    }

    .eco-col-title {
        text-align: center !important;
    }

    .testi-arrow {
        display: flex !important;
        background: #000000 !important;
        color: #ffffff !important;
        width: 44px !important;
        height: 44px !important;
    }
    
    .testi-arrow-left {
        left: 10px !important;
        transform: translateY(-50%) !important;
    }
    
    .testi-arrow-right {
        right: 10px !important;
        transform: translateY(-50%) !important;
    }

    .testi-arrow:hover,
    .testi-arrow:active {
        background: var(--color-accent-pink) !important;
        color: #ffffff !important;
    }

    /* News Section slider dots */
    .news-dots {
        display: flex !important;
        justify-content: center;
        align-items: center;
        gap: 8px;
        margin-top: 24px;
        width: 100%;
    }
    
    .news-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: #d1c9ef;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .news-dot.active {
        width: 24px;
        height: 8px;
        border-radius: 4px;
        background-color: var(--color-accent-pink);
    }

    /* Testimonials Mobile Sizing & Alignment Override */
    .testi-card-new {
        padding: 40px 50px !important;
    }
    
    .testi-quote-new {
        text-align: left !important;
        width: 100% !important;
    }

    .enquiry-form {
        border-top-left-radius: 36px !important;
        border-top-right-radius: 36px !important;
    }

    /* Mobile-only site-footer styling and accordion animations */
    .site-footer {
        padding-top: clamp(60px, 12vw, 100px);
        border-radius: 32px 32px 0 0 !important;
    }
    
    .footer-intro {
        margin-bottom: 30px;
    }
    
    .footer-tagline {
        text-align: center !important;
        max-width: 100% !important;
        font-size: 1.4rem !important;
        padding-top: 40px !important;
    }

    .footer-main-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        padding-bottom: 30px !important;
    }

    .footer-grid-col {
        padding-bottom: 16px;
    }

    /* Accordion Arrow chevron icon on mobile */
    .accordion-arrow {
        display: inline-block;
        width: 8px;
        height: 8px;
        border-right: 2px solid var(--color-accent-pink);
        border-bottom: 2px solid var(--color-accent-pink);
        transform: rotate(45deg);
        transition: transform 0.3s ease;
        margin-left: 10px;
        vertical-align: middle;
    }
    
    .footer-accordion.open .accordion-arrow {
        transform: rotate(-135deg) translateY(-2px) translateX(-2px);
    }

    /* Center align headers */
    .footer-col-title {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        margin-bottom: 0 !important;
        padding: 12px 0;
        cursor: pointer;
    }

    /* Accordion collapsible content */
    .footer-accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        text-align: center;
    }

    .footer-accordion.open .footer-accordion-content {
        /* JS handles exact max-height dynamically, but CSS fallback is good */
        padding-top: 16px;
        padding-bottom: 16px;
    }

    /* Centering the link lists on mobile */
    .footer-links {
        align-items: center !important;
        text-align: center !important;
        gap: 16px !important;
    }

    .footer-links li {
        width: 100%;
        text-align: center;
    }

    /* Center-aligning contact info lists on mobile */
    .footer-contact {
        align-items: center !important;
        text-align: center !important;
        gap: 20px !important;
    }

    .footer-contact li {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 8px !important;
    }

    .footer-contact-icon-img {
        margin-top: 0 !important;
    }

    .footer-hours {
        justify-content: center !important;
        width: 100%;
    }

    /* Social visibility override for mobile */
    .footer-social-desktop {
        display: none !important;
    }

    .footer-social-mobile {
        display: flex !important;
        justify-content: center !important;
        margin: 24px auto 0 !important;
        gap: 16px !important;
    }

    /* Footer Bottom alignments */
    .footer-bottom {
        text-align: center !important;
        padding: 24px 0 !important;
    }

    .footer-copy {
        font-size: 0.95rem !important;
        line-height: 1.5;
        text-align: center !important;
    }
    
    .footer-copy a {
        display: block;
        text-align: center !important;
        margin-top: 6px;
    }

    .footer-bottom-links {
        justify-content: center !important;
        flex-wrap: wrap;
        gap: 8px 12px !important;
        margin-top: 10px;
    }
}

/* Specific compact adjustments for 1440px+ displays only */
@media (min-width: 1440px) {
    .site-footer {
        padding-top: clamp(100px, 8.5vw, 130px) !important;
    }

    .footer-logo-card {
        width: clamp(120px, 9vw, 160px) !important;
        height: clamp(80px, 6.5vw, 110px) !important;
    }

    .footer-logo-img {
        width: clamp(80px, 6.5vw, 115px) !important;
    }

    .footer-intro {
        margin-bottom: clamp(24px, 2.5vw, 36px) !important;
    }

    .footer-tagline {
        padding-top: 14px !important;
        font-size: clamp(1.3rem, 1.55vw, 1.85rem) !important;
    }

    .footer-main-grid {
        gap: clamp(38px, 4.2vw, 68px) !important;
        padding-bottom: clamp(30px, 2.8vw, 45px) !important;
    }

    .footer-col-title {
        margin-bottom: clamp(22px, 2.3vw, 32px) !important;
        font-size: clamp(1.15rem, 1.3vw, 1.65rem) !important;
    }

    .footer-links,
    .footer-contact {
        gap: clamp(14px, 1.5vw, 24px) !important;
    }

    .footer-links a,
    .footer-contact li {
        font-size: clamp(1rem, 1.22vw, 1.5rem) !important;
    }

    .footer-contact-badge,
    .footer-contact-icon-img {
        width: clamp(28px, 2vw, 38px) !important;
        height: clamp(28px, 2vw, 38px) !important;
    }

    .footer-bottom {
        padding: clamp(16px, 1.3vw, 22px) 0 !important;
    }
}

/* Mobile view overrides for all section subtitles to match the awards subtitle style */
@media (max-width: 767px) {
    .vision-subtitle,
    .menu-subtitle,
    .economics-subtitle,
    .news-subtitle,
    .gallery-subtitle,
    .enquiry-subtitle {
        font-size: clamp(0.88rem, 1.2vw, 1.05rem) !important;
        color: #555555 !important;
        line-height: 1.6 !important;
    }
    
    .journey-subtitle {
        font-size: clamp(0.88rem, 1.2vw, 1.05rem) !important;
        line-height: 1.6 !important;
        color: rgba(255, 255, 255, 0.62) !important; /* Keep readable light color on dark background */
    }
    
    .form-group input,
    .form-group select,
    .custom-select-trigger {
        min-height: 52px !important;
        padding: 14px 20px !important;
    }
}

/* ==========================================================================
   Preloader Styles
   ========================================================================== */
body.preloader-active {
    overflow: hidden !important;
    height: 100vh !important;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-bg-deep, #00032e);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.8s;
    opacity: 1;
    visibility: visible;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    z-index: 2;
    text-align: center;
}

.preloader-glow {
    position: absolute;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(244, 11, 73, 0.28) 0%, rgba(108, 92, 231, 0.22) 50%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(12px);
    z-index: -1;
    animation: preloaderGlowPulse 3s infinite ease-in-out;
}

.preloader-logo-container {
    width: clamp(110px, 15vw, 140px);
    height: clamp(110px, 15vw, 140px);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: preloaderLogoFloat 2.5s infinite ease-in-out;
}

.preloader-logo {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(244, 11, 73, 0.35));
}

.preloader-loader-wrapper {
    width: 160px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.preloader-bar {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--color-accent-pink, #f40b49) 0%, var(--color-accent-violet, #6c5ce7) 100%);
    border-radius: 4px;
    transform: translateX(-100%);
    animation: preloaderLoadProgress 2.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.preloader-text {
    font-family: var(--font-sub-header, 'Outfit', sans-serif);
    font-size: clamp(0.78rem, 2vw, 0.88rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin: 0;
    animation: preloaderTextFade 1.8s infinite ease-in-out;
}

/* Preloader Animations */
@keyframes preloaderGlowPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }
}

@keyframes preloaderLogoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes preloaderLoadProgress {
    0% {
        transform: translateX(-100%);
    }
    55% {
        transform: translateX(-35%);
    }
    100% {
        transform: translateX(0%);
    }
}

@keyframes preloaderTextFade {
    0%, 100% {
        opacity: 0.55;
    }
    50% {
        opacity: 1;
    }
}

/* ==========================================================================
   Privacy Policy Modal Styles
   ========================================================================== */
.privacy-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 3, 46, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 10000; /* Over everything including sticky headers & FABs */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.privacy-modal-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.privacy-modal-container {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(192, 132, 252, 0.15) 50%, rgba(235, 17, 75, 0.15) 100%) border-box;
    border: 2px solid transparent;
    background-color: #ffffff;
    border-radius: 24px;
    width: 100%;
    max-width: 650px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 60px -12px rgba(0, 0, 0, 0.18), 0 0 40px rgba(156, 138, 248, 0.08);
    transform: scale(0.92);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.privacy-modal-overlay.is-active .privacy-modal-container {
    transform: scale(1);
}

.privacy-modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f9fafb;
}

.privacy-modal-title {
    font-family: var(--font-header, sans-serif);
    font-size: 1.8rem;
    color: #111827;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.5px;
}

.privacy-modal-title svg {
    width: 24px;
    height: 24px;
    color: var(--color-accent-pink, #EB114B);
}

.privacy-modal-close-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    color: #6b7280;
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth, all 0.3s ease);
}

.privacy-modal-close-btn:hover {
    color: var(--color-accent-pink, #EB114B);
    background-color: rgba(0, 0, 0, 0.05);
    transform: rotate(90deg);
}

.privacy-modal-close-btn svg {
    width: 20px;
    height: 20px;
}

.privacy-modal-body {
    flex: 1 1 auto;
    min-height: 0;
    padding: 24px;
    overflow-y: auto;
    font-family: var(--font-sub-header, sans-serif);
    font-size: 0.95rem;
    line-height: 1.6;
    color: #374151;
}

.privacy-modal-body strong {
    color: #111827;
}

/* Custom Scrollbar */
.privacy-modal-body::-webkit-scrollbar {
    width: 6px;
}
.privacy-modal-body::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 10px;
}
.privacy-modal-body::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.15);
    border-radius: 10px;
}
.privacy-modal-body::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent-pink, #EB114B);
}

.privacy-intro {
    font-weight: 500;
    font-size: 1.05rem;
    color: #111827;
    margin-bottom: 20px;
}

.privacy-last-updated {
    font-size: 0.8rem;
    color: #4f46e5;
    margin-bottom: 8px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.privacy-section {
    margin-bottom: 24px;
}

.privacy-section-title {
    font-family: var(--font-sub-header, sans-serif);
    font-weight: 700;
    font-size: 1.1rem;
    color: #111827;
    margin-bottom: 10px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.12);
    padding-bottom: 4px;
}

.privacy-list {
    margin-left: 20px;
    margin-bottom: 12px;
    list-style-type: none;
}

.privacy-list li {
    position: relative;
    margin-bottom: 6px;
}

.privacy-list li::before {
    content: "•";
    color: var(--color-accent-pink, #EB114B);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.privacy-modal-footer {
    padding: 16px 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: flex-end;
    background-color: #f9fafb;
}

.privacy-modal-btn-close {
    background-color: var(--color-accent-pink, #EB114B);
    color: var(--color-white, #ffffff);
    border: none;
    padding: 10px 24px;
    font-family: var(--font-sub-header, sans-serif);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(235, 17, 75, 0.2);
    transition: var(--transition-smooth, all 0.3s ease);
}

.privacy-modal-btn-close:hover {
    background-color: #f61a55;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(235, 17, 75, 0.35);
}

.privacy-modal-btn-close:active {
    transform: translateY(-1px);
}

@media (max-width: 576px) {
    .privacy-modal-container {
        max-height: 90vh;
        border-radius: 20px;
    }
    .privacy-modal-title {
        font-size: 1.5rem;
    }
    .privacy-modal-body {
        padding: 16px 20px;
    }
    .privacy-modal-header,
    .privacy-modal-footer {
        padding: 14px 20px;
    }
}

