/* ===== Root Variables ===== */
:root {
    /* Warm Beige + Gold theme derived from the reference image */
    --black-jet: #0E0E0E;
    --black-deep: #1A1A1A;
    --navy-primary: #4A2F20; /* repurposed as deep brown for headings */
    --navy-secondary: #2E1E14; /* deep brown backgrounds */
    --navy-dark: #1B120D;
    --antique-gold: #D4AF37; /* metallic gold */
    --antique-gold-light: #EED37A; /* lighter gold */
    --antique-gold-dark: #B89325; /* deep gold */
    --gold-glow: rgba(212, 175, 55, 0.55);
    --beige-soft: #F5E6C8; /* champagne */
    --beige-warm: #EAD9BA; /* warm background */
    --sand: #E4D5B7;
    --matte-gold: #CBB677;
    --garnet: #8B1E1E;
    --white: #FFFFFF;
    --pearl-white: #FEF9EE;
    --soft-gray: #E6DCC5;
    --text-dark: #4A2F20; /* deep brown for dark text */
    --text-light: #3B2B1F; /* dark-on-light text */
    --text-contrast: #FFFFFF; /* light on dark */
    --text-gray: #7A6051;

    /* Fonts */
    --font-elegant: 'Playfair Display', serif; /* headings */
    --font-script: 'Cinzel', serif; /* optional accent */
    --font-body: 'Montserrat', sans-serif; /* body */

    /* Layout & spacing */
    --max-container-width: 1200px;
    --container-padding: 0 clamp(1rem, 3vw, 2.5rem);
    --section-padding: clamp(3rem, 2rem + 4vw, 6rem) 0;
    --space-xs: clamp(0.5rem, 0.4rem + 0.4vw, 0.85rem);
    --space-sm: clamp(0.75rem, 0.6rem + 0.5vw, 1.2rem);
    --space-md: clamp(1.25rem, 1rem + 0.75vw, 1.9rem);
    --space-lg: clamp(2.5rem, 2rem + 1.5vw, 3.75rem);
    --space-xl: clamp(3rem, 2.5rem + 2.5vw, 5rem);

    /* Fluid typography */
    --font-size-body: clamp(0.95rem, 0.9rem + 0.25vw, 1.05rem);
    --font-size-h1: clamp(2.5rem, 1.7rem + 3.5vw, 3.75rem);
    --font-size-h2: clamp(2rem, 1.5rem + 2.2vw, 3rem);
    --font-size-h3: clamp(1.6rem, 1.3rem + 1.4vw, 2.25rem);
    --font-size-h4: clamp(1.25rem, 1rem + 0.9vw, 1.6rem);
    --font-size-small: clamp(0.85rem, 0.8rem + 0.2vw, 0.95rem);
}

/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-light);
    font-size: var(--font-size-body);
    background: var(--pearl-white);
    line-height: 1.6;
    overflow-x: hidden;
    background-attachment: fixed;
    padding-top: 0;
}

/* Off-white vintage borders at the very top and bottom */
body::before,
body::after {
    content: '';
    position: fixed;
    left: 0;
    right: 0;
    height: 12px;
    background: #F5E6C8;
    box-shadow: 0 2px 0 rgba(212, 175, 55, 0.35), inset 0 -1px 0 rgba(212, 175, 55, 0.35);
    z-index: 0;
    pointer-events: none;
}

body::before { top: 0; }
body::after { bottom: 0; }

/* ===== Scrolling Marquee Banner ===== */
.marquee-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(180deg, #000000 0%, #1C1C1C 100%);
    border-bottom: 2px solid var(--antique-gold);
    z-index: 1001;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.marquee-wrapper {
    display: flex;
    width: fit-content;
    animation: marquee 30s linear infinite;
    will-change: transform;
}

.marquee-content {
    display: flex;
    align-items: center;
    height: 40px;
    white-space: nowrap;
    gap: 20px;
    flex-shrink: 0;
}

.marquee-content span {
    color: var(--pearl-white);
    font-size: clamp(0.7rem, 0.65rem + 0.3vw, 0.85rem);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0 10px;
    display: inline-block;
    flex-shrink: 0;
}

.marquee-content span:nth-child(even) {
    color: var(--antique-gold);
    font-weight: 400;
}

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

.container {
    width: min(100%, var(--max-container-width));
    margin: 0 auto;
    padding: var(--container-padding);
}

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

iframe {
    max-width: 100%;
    border: 0;
}

/* ===== Navigation ===== */
.navbar {
    background: var(--pearl-white);
    padding: clamp(8px, 1vw, 12px) 0;
    position: fixed;
    top: 40px;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 6px 30px rgba(180, 135, 40, 0.25);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border-bottom: 2px solid var(--antique-gold);
    border-top: none;
    min-height: 60px;
    max-height: 80px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

.navbar.scrolled {
    padding: clamp(6px, 0.8vw, 10px) 0;
    box-shadow: 0 4px 30px rgba(176, 141, 87, 0.5);
}


/* Navbar placement when no marquee banner is present (e.g., collections page) */
body.no-marquee .navbar {
    top: 0;
}

.nav-container {
    width: min(100%, var(--max-container-width));
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2.5rem);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: clamp(1rem, 2vw, 2.5rem);
    position: relative;
    height: 100%;
}

.nav-brand {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-decoration: none;
    margin-left: auto;
    margin-right: 0;
    padding-right: clamp(0.5rem, 1.5vw, 1.5rem);
    min-width: 0;
    height: 100%;
    flex-shrink: 0;
}

.nav-brand__title {
    font-family: var(--font-elegant);
    font-size: clamp(0.95rem, 0.9rem + 0.6vw, 1.35rem);
    font-weight: 600;
    color: var(--antique-gold);
    letter-spacing: 0.045em;
    line-height: 1.2;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.nav-brand:hover .nav-brand__title,
.nav-brand:focus-visible .nav-brand__title {
    color: var(--antique-gold);
}

.nav-brand:focus-visible {
    outline: 2px solid var(--antique-gold);
    outline-offset: 4px;
    border-radius: 4px;
}


.nav-brand__tagline {
    font-family: var(--font-body);
    font-size: clamp(0.56rem, 0.54rem + 0.15vw, 0.7rem);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-gray);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: clamp(0.75rem, 1.6vw, 1.75rem);
    align-items: center;
    flex-wrap: nowrap;
    margin-right: auto;
}

body.nav-open {
    overflow: hidden;
}

.nav-menu a {
    color: var(--navy-primary);
    text-decoration: none;
    font-weight: 400;
    font-size: clamp(0.85rem, 0.8rem + 0.2vw, 0.95rem);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: inline-block;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--antique-gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--antique-gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: 0;
    padding: 0;
    transition: transform 0.3s ease;
}

.hamburger:focus-visible {
    outline: 2px solid var(--antique-gold);
    outline-offset: 4px;
}

/* Logo inside carousel */
.hero-carousel-logo {
	position: absolute;
	top: clamp(0.25rem, 1.5vw, 0.75rem);
	left: clamp(0.25rem, 1.5vw, 0.75rem);
	width: clamp(16rem, 24vw, 30rem);
	max-width: 50vw;
	height: auto;
	z-index: 10;
	filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.5));
	pointer-events: none;
	transition: transform 0.3s ease;
	object-fit: contain;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--antique-gold);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ===== Hero Section with Carousel ===== */
.hero {
    position: relative;
    width: 100%;
    margin-top: clamp(5.75rem, 11vw, 7.5rem);
    padding-inline: clamp(0.75rem, 4vw, 4rem);
    padding-bottom: clamp(1rem, 4vw, 2.25rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(0.75rem, 3vw, 1.75rem);
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(234, 217, 186, 0.45) 100%);
}
 
.hero::after { content: none; }

.hero-carousel {
    position: relative;
    width: min(100%, var(--max-container-width));
    max-width: min(1150px, calc(100vw - clamp(2rem, 12vw, 6rem)));
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: clamp(0.75rem, 2vw, 1.35rem);
    background: var(--pearl-white);
    box-shadow: 0 30px 80px rgba(10, 31, 68, 0.25);
    z-index: 1;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
}

.carousel-slide img::before {
    content: none;
}

.carousel-slide img::after {
    content: none;
}

.carousel-overlay {
    display: none !important;
}

.carousel-brand {
    display: none !important;
}

.brand-name {
    font-family: var(--font-elegant);
    font-size: 3.6rem;
    color: var(--antique-gold);
    margin-bottom: 10px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 3px;
    font-weight: 700;
}

.brand-subtitle {
    font-family: var(--font-script);
    font-size: 3rem;
    color: var(--navy-primary);
    margin-bottom: 15px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
    font-weight: 400;
}

.brand-tagline {
    font-size: 1.2rem;
    color: var(--pearl-white);
    font-style: italic;
    letter-spacing: 2px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
}

@media (max-width: 767px) {
    .hero-carousel-logo {
        top: clamp(0.2rem, 1.25vw, 0.5rem);
        left: clamp(0.2rem, 1.25vw, 0.5rem);
        width: clamp(6rem, 26vw, 9rem);
        max-width: 40vw;
        filter: drop-shadow(0 2px 6px rgba(212, 175, 55, 0.4));
    }

    .marquee-banner {
        height: 32px;
    }

    .marquee-content span {
        font-size: clamp(0.65rem, 1.5vw, 0.85rem);
        padding: 0 clamp(0.35rem, 1.2vw, 0.5rem);
    }

    .navbar {
        top: 32px;
    }

    .hero {
        margin-top: clamp(4.5rem, 14vw, 6.5rem);
        padding-inline: clamp(0.65rem, 6vw, 1.5rem);
        padding-bottom: clamp(1.25rem, 6vw, 2rem);
        gap: var(--space-sm);
    }

    .hero-carousel {
        border-radius: clamp(0.55rem, 4vw, 0.85rem);
        max-width: calc(100vw - clamp(1.5rem, 14vw, 3rem));
        box-shadow: 0 24px 46px rgba(10, 31, 68, 0.26);
    }
    
    .hero-popup-message {
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .popup-content {
        width: clamp(6.5rem, 24vw, 7.5rem);
        height: clamp(6.5rem, 24vw, 7.5rem);
        font-size: clamp(0.75rem, 1.6vw, 0.85rem);
        padding: clamp(0.6rem, 1.8vw, 0.85rem);
    }

    .carousel-prev,
    .carousel-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        box-shadow: 0 14px 28px rgba(10, 31, 68, 0.22);
    }

    .carousel-indicators {
        bottom: clamp(0.75rem, 5vw, 1.25rem);
        padding: 0 clamp(0.75rem, 5vw, 1.75rem);
    }
}

.carousel-nav {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 clamp(0.75rem, 2vw, 2rem);
    z-index: 4;
    pointer-events: none;
}

.carousel-nav button {
    pointer-events: auto;
}

.carousel-prev,
.carousel-next {
    width: clamp(44px, 4vw, 56px);
    height: clamp(44px, 4vw, 56px);
    background: rgba(255, 255, 255, 0.92);
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    color: var(--navy-primary);
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    box-shadow: 0 18px 35px rgba(15, 27, 45, 0.18);
}

.carousel-prev:hover,
.carousel-next:hover {
    background: var(--antique-gold);
    color: var(--navy-primary);
    transform: translateY(-2px) scale(1.07);
    box-shadow: 0 20px 40px rgba(176, 141, 87, 0.45);
}

.carousel-indicators {
    position: absolute;
    bottom: clamp(1rem, 3vw, 1.65rem);
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    display: flex;
    justify-content: center;
    gap: clamp(0.5rem, 1.4vw, 0.85rem);
    padding: 0 clamp(1rem, 4vw, 2.2rem);
    z-index: 4;
}

.indicator {
    width: clamp(8px, 2vw, 12px);
    height: clamp(8px, 2vw, 12px);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--antique-gold);
    transform: scale(1.35);
    box-shadow: 0 0 12px rgba(176, 141, 87, 0.55);
}

/* ===== Hero Pop-up Message ===== */
.hero-popup-message {
    position: absolute;
    bottom: 20px;
    right: 20px;
    transform: none;
    z-index: 100;
    pointer-events: none;
}

.popup-content {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.95) 0%, rgba(184, 147, 37, 0.95) 100%);
    color: var(--navy-primary);
    width: 130px;
    height: 130px;
    border-radius: 50%;
    padding: 16px;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5),
                0 0 0 3px rgba(255, 255, 255, 0.3),
                inset 0 2px 10px rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    font-weight: 700;
    font-size: 0.9rem;
    line-height: 1.2;
    letter-spacing: 0.5px;
    white-space: normal;
    animation: popupPulse 3s ease-in-out infinite;
    backdrop-filter: blur(10px);
    font-family: var(--font-body);
}

.popup-content i { display: none; }

@keyframes popupPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5),
                    0 0 0 3px rgba(255, 255, 255, 0.3),
                    inset 0 2px 10px rgba(255, 255, 255, 0.2);
    }
    50% {
        transform: scale(1.15);
        box-shadow: 0 12px 40px rgba(212, 175, 55, 0.7),
                    0 0 0 5px rgba(255, 255, 255, 0.5),
                    inset 0 2px 15px rgba(255, 255, 255, 0.3);
    }
}

@keyframes iconRotate {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(5deg) scale(1.1);
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: clamp(18rem, 70vw, 28rem);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 40px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: var(--antique-gold);
    color: #412A1C;
    box-shadow: 0 6px 22px rgba(212, 175, 55, 0.35);
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
    background: var(--antique-gold-light);
}

.btn-secondary {
    background: transparent;
    color: var(--navy-primary);
    border: 2px solid var(--antique-gold);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: var(--antique-gold);
    color: var(--navy-primary);
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(176, 141, 87, 0.5);
}

.ornamental-border-top,
.ornamental-border-bottom {
    position: absolute;
    left: 0;
    right: 0;
    height: 60px;
    background: repeating-linear-gradient(
        90deg,
        var(--antique-gold) 0px,
        var(--antique-gold) 20px,
        transparent 20px,
        transparent 40px
    );
    z-index: 2;
    opacity: 0.3;
}

.ornamental-border-top {
    top: 0;
}

.ornamental-border-bottom {
    bottom: 0;
}

.shimmer-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    animation: shimmer 3s infinite;
    z-index: 3;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* ===== Features Section ===== */
.features-section {
    padding: var(--section-padding);
    background: var(--pearl-white);
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--antique-gold), transparent);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: clamp(1.5rem, 1.2rem + 1.2vw, 2.5rem);
    margin-top: var(--space-md);
}

.feature-card {
    text-align: center;
    padding: clamp(1.75rem, 1.25rem + 1vw, 2.5rem) clamp(1.25rem, 0.9rem + 1vw, 1.75rem);
    background: var(--sand);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    border: 2px solid var(--matte-gold);
    border-top: 4px solid var(--antique-gold);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(176, 141, 87, 0.3);
    border-color: var(--antique-gold);
    background: var(--pearl-white);
}

.feature-icon {
    font-size: clamp(2.5rem, 2rem + 1vw, 3rem);
    color: var(--antique-gold);
    margin-bottom: 20px;
}

.feature-icon img {
    width: clamp(6.5rem, 6.5rem + 2vw, 9rem);
    height: clamp(6.5rem, 6.5rem + 2vw, 9rem);
    object-fit: contain;
    display: inline-block;
}

.feature-card h3 {
    font-family: var(--font-elegant);
    font-size: clamp(1.2rem, 1rem + 0.8vw, 1.6rem);
    color: var(--navy-primary);
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-dark);
    font-size: 0.95rem;
}

/* ===== Footer Global Colors (for all pages) ===== */
.footer {
    background-color: #111111;
    color: #f5f5f5;
}
.footer a { color: #f5f5f5; text-decoration: none; }
.footer a:hover { color: #ffffff; }
.footer h3, .footer h4, .footer p, .footer li { color: #f5f5f5; }
.footer .social-links a { color: #f5f5f5; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.15); }

/* ===== Quick Links Section ===== */
.quick-links-section {
    padding: var(--section-padding);
    background: var(--pearl-white);
    position: relative;
}

.section-title {
    font-family: var(--font-elegant);
    font-size: var(--font-size-h2);
    text-align: center;
    color: var(--antique-gold);
    margin-bottom: var(--space-lg);
    position: relative;
    padding-bottom: var(--space-sm);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--antique-gold);
}

.section-lead {
    text-align: center;
    margin: 0 auto var(--space-lg);
    color: var(--text-dark);
    font-size: clamp(1rem, 0.95rem + 0.3vw, 1.15rem);
    max-width: clamp(32rem, 70vw, 45rem);
    line-height: 1.7;
}

.section-lead--light {
    color: var(--pearl-white);
}

.section-lead--compact {
    margin-bottom: var(--space-md);
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: clamp(1.5rem, 1.2rem + 1.2vw, 2.5rem);
}

.quick-link-card {
    text-decoration: none;
    color: inherit;
    background: var(--sand);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    display: block;
    border: 2px solid var(--matte-gold);
}

.quick-link-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(176, 141, 87, 0.4);
    border-color: var(--antique-gold);
}

.quick-link-image {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.quick-link-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, transparent 0%, rgba(0, 0, 0, 0.55) 100%);
}

.quick-link-card h3 {
    font-family: var(--font-elegant);
    font-size: 1.8rem;
    padding: 25px 25px 10px;
    color: var(--navy-primary);
}

.quick-link-card p {
    padding: 0 25px 25px;
    color: var(--text-dark);
    font-style: italic;
}

/* ===== Footer ===== */
.footer {
    background: var(--pearl-white);
    color: var(--white);
    padding: 60px 0 20px;
    margin-top: 80px;
    border-top: 2px solid rgba(176, 141, 87, 0.3);
    box-shadow: 0 -5px 30px rgba(176, 141, 87, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    font-family: var(--font-elegant);
    color: var(--antique-gold);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.footer-section h4 {
    font-size: 1.2rem;
}

.footer-section p {
    margin-bottom: 15px;
    color: var(--pearl-white);
    line-height: 1.8;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--pearl-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--antique-gold);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(176, 141, 87, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--antique-gold);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--antique-gold);
    color: var(--navy-primary);
    transform: translateY(-3px);
}

.footer-section i {
    margin-right: 10px;
    color: var(--antique-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(176, 141, 87, 0.2);
    color: var(--pearl-white);
}

/* ===== WhatsApp Float ===== */
.whatsapp-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 0;
}

.whatsapp-text {
    background: rgba(10, 31, 68, 0.9);
    color: var(--pearl-white);
    padding: 10px 20px 10px 25px;
    border-radius: 25px 0 0 25px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: -4px 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(176, 141, 87, 0.3);
    border-right: none;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    pointer-events: none;
    margin-right: -20px;
}

.whatsapp-container:hover .whatsapp-text {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-float {
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    flex-shrink: 0;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.7);
}

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

/* ===== Page Specific Styles ===== */
.page-header {
    padding: 150px 0 80px;
    background: var(--pearl-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="page-ornament" x="0" y="0" width="150" height="150" patternUnits="userSpaceOnUse"><circle cx="75" cy="75" r="50" fill="none" stroke="rgba(212,175,55,0.1)" stroke-width="2"/><circle cx="75" cy="75" r="30" fill="none" stroke="rgba(212,175,55,0.15)" stroke-width="1"/></pattern></defs><rect width="100%25" height="100%25" fill="url(%23page-ornament)"/></svg>');
    background-size: 300px;
    opacity: 0.3;
}

.page-header h1 {
    font-family: var(--font-elegant);
    font-size: clamp(2.6rem, 2rem + 2.5vw, 3.5rem);
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: clamp(1rem, 0.95rem + 0.4vw, 1.2rem);
    color: var(--text-dark);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ===== Gallery Styles ===== */
.gallery-section {
    padding: var(--section-padding);
    background: var(--pearl-white);
    position: relative;
}

.page-offset {
    padding-top: clamp(6rem, 4rem + 6vw, 9rem);
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--antique-gold), transparent);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: clamp(1.5rem, 1.2rem + 1.2vw, 2.5rem);
    margin-top: var(--space-md);
}

.collection-subsection {
    margin-bottom: var(--space-lg);
}

.collection-subsection + .collection-subsection {
    margin-top: var(--space-lg);
}

.collection-title {
    font-family: var(--font-elegant);
    font-size: var(--font-size-h3);
    color: var(--antique-gold);
    text-align: center;
    margin-bottom: var(--space-sm);
    position: relative;
    padding-bottom: var(--space-xs);
}

.collection-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--antique-gold);
}

.collection-description {
    text-align: center;
    color: var(--text-dark);
    font-size: clamp(0.95rem, 0.9rem + 0.2vw, 1.05rem);
    font-style: italic;
    margin-bottom: var(--space-md);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(10, 31, 68, 0.2);
    cursor: pointer;
    background: var(--white);
    aspect-ratio: 1;
    border: 2px solid var(--soft-gray);
    transition: all 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(0, 0, 0, 0.45) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(176, 141, 87, 0.4);
    border-color: var(--antique-gold);
}

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

.gallery-item:hover::after {
    opacity: 1;
}

/* ===== Collection Carousel ===== */
.collection-carousel-wrapper {
    position: relative;
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    overflow: hidden;
}

.collection-carousel {
    flex: 1;
    overflow: hidden;
    position: relative;
    max-width: 100%;
    min-width: 0;
}

.collection-carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.collection-carousel-track .gallery-item {
    flex: 0 0 clamp(200px, 23vw, 280px);
    min-width: 0;
    flex-shrink: 0;
}

.collection-carousel-btn {
    background: var(--antique-gold);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: var(--navy-primary);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 3px 15px rgba(212, 175, 55, 0.3);
    z-index: 10;
    flex-shrink: 0;
}

.collection-carousel-btn:hover {
    background: var(--antique-gold-dark);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 5px 25px rgba(212, 175, 55, 0.5);
}

.collection-carousel-btn:active {
    transform: scale(0.95);
}

.collection-carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.view-more-container {
    margin-top: var(--space-lg);
    text-align: center;
}

.view-more-btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--antique-gold);
    color: var(--navy-primary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.view-more-btn:hover {
    background: var(--antique-gold-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

@media (max-width: 767px) {
    .collection-carousel-wrapper {
        gap: clamp(0.5rem, 2vw, 1rem);
        width: 100%;
        overflow: hidden;
    }
    
    .collection-carousel {
        flex: 1;
        overflow: hidden !important;
        position: relative;
        min-width: 0;
        width: auto !important;
        max-width: none !important;
    }
    
    .collection-carousel-btn {
        width: clamp(36px, 8vw, 40px);
        height: clamp(36px, 8vw, 40px);
        font-size: clamp(0.9rem, 2vw, 1rem);
        flex-shrink: 0;
    }
    
    .collection-carousel-track {
        gap: clamp(0.75rem, 2vw, 1.5rem);
        display: flex;
    }
    
    .collection-carousel-track .gallery-item {
        flex: 0 0 100%;
        flex-shrink: 0;
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }
    
    .view-more-btn {
        padding: clamp(0.75rem, 2.5vw, 0.9rem) clamp(1.5rem, 5vw, 2rem);
        font-size: clamp(0.95rem, 2.5vw, 1rem);
    }
}

@media (max-width: 480px) {
    .co-founders-section {
        padding: 0 clamp(0.75rem, 2.5vw, 1.5rem);
    }
    
    .subsection-title-compact {
        font-size: clamp(1.4rem, 3.5vw, 1.6rem);
    }
    
    .subsection-description-compact {
        font-size: clamp(0.85rem, 2.2vw, 0.95rem);
        padding: 0 clamp(0.25rem, 1.5vw, 0.75rem);
    }
    
    .co-founders-grid {
        gap: clamp(1rem, 2.5vw, 1.5rem);
    }
    
    .co-founder-image {
        height: clamp(12rem, 48vw, 16rem);
        max-height: 280px;
    }
    
    .co-founder-info {
        padding: clamp(0.9rem, 2vw, 1.1rem);
    }
    
    .co-founder-name {
        font-size: clamp(1rem, 3vw, 1.2rem);
    }
    
    .co-founder-description {
        font-size: clamp(0.8rem, 2vw, 0.9rem);
    }
    
    .collection-carousel-wrapper {
        gap: clamp(0.4rem, 2vw, 0.75rem);
        width: 100%;
        overflow: hidden;
    }
    
    .collection-carousel {
        flex: 1;
        overflow: hidden !important;
        position: relative;
        min-width: 0;
        width: auto !important;
        max-width: none !important;
    }
    
    .collection-carousel-track {
        gap: clamp(0.5rem, 2vw, 1rem);
        display: flex;
    }
    
    .collection-carousel-track .gallery-item {
        flex: 0 0 100%;
        flex-shrink: 0;
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }
    
    .collection-carousel-btn {
        width: clamp(32px, 7vw, 35px);
        height: clamp(32px, 7vw, 35px);
        font-size: clamp(0.85rem, 2vw, 0.9rem);
        flex-shrink: 0;
    }
}

/* ===== Lightbox ===== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 50px rgba(212, 175, 55, 0.3);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 3rem;
    color: var(--white);
    cursor: pointer;
    background: rgba(212, 175, 55, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: var(--antique-gold);
    transform: rotate(90deg);
}

/* ===== Silver Page Styles ===== */
.silver-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--silver-light) 0%, var(--ivory) 100%);
}

.silver-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: clamp(1.5rem, 1.2rem + 1.2vw, 2.5rem);
    margin-top: var(--space-md);
}

.silver-item {
    background: var(--white);
    border-radius: 10px;
    padding: clamp(1.75rem, 1.3rem + 1.2vw, 2.5rem);
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.silver-item:hover {
    transform: translateY(-5px);
    border-color: var(--silver);
    box-shadow: 0 10px 30px rgba(192, 192, 192, 0.3);
}

.silver-icon {
    font-size: clamp(2.8rem, 2.2rem + 1.8vw, 4rem);
    color: var(--silver);
    margin-bottom: 20px;
}

.silver-item h3 {
    font-family: var(--font-elegant);
    font-size: clamp(1.2rem, 1rem + 0.8vw, 1.5rem);
    color: var(--text-dark);
    margin-bottom: 15px;
}

.silver-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ===== Pooja Page Styles ===== */
.pooja-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, 
        rgba(255, 153, 51, 0.05) 0%, 
        rgba(255, 204, 102, 0.1) 50%,
        var(--ivory) 100%);
}

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

.pooja-item {
    background: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(255, 153, 51, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid var(--saffron);
}

.pooja-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 153, 51, 0.3);
}

.pooja-icon {
    font-size: 4rem;
    color: var(--saffron);
    margin-bottom: 20px;
}

.pooja-item h3 {
    font-family: var(--font-elegant);
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.pooja-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ===== About Us Section Styles ===== */
.about-section {
    padding: 60px 0;
    background: var(--navy-secondary);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--antique-gold), transparent);
}

.founder-card {
    max-width: 900px;
    margin: 0 auto 80px;
    display: flex;
    gap: 40px;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(176, 141, 87, 0.2);
    backdrop-filter: blur(10px);
}

.founder-image {
    position: relative;
    width: 300px;
    height: 300px;
    flex-shrink: 0;
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid var(--antique-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.35) 100%);
}

.founder-info {
    flex: 1;
}

.founder-name {
    font-family: var(--font-elegant);
    font-size: clamp(2rem, 1.6rem + 1.5vw, 2.5rem);
    color: var(--antique-gold);
    margin-bottom: 10px;
}

.founder-role {
    font-size: clamp(1rem, 0.95rem + 0.3vw, 1.2rem);
    color: var(--pearl-white);
    font-style: italic;
    margin-bottom: 20px;
    font-weight: 300;
}

.founder-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--pearl-white);
    text-align: justify;
}

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

.team-member {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(176, 141, 87, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(176, 141, 87, 0.3);
    border-color: var(--antique-gold);
}

.team-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .team-image img {
    transform: scale(1.1);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
}

.team-info {
    padding: 30px 25px;
}

.team-name {
    font-family: var(--font-elegant);
    font-size: 1.8rem;
    color: var(--antique-gold);
    margin-bottom: 8px;
}

.team-role {
    font-size: 1rem;
    color: var(--pearl-white);
    font-style: italic;
    margin-bottom: 15px;
    font-weight: 300;
}

.team-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--pearl-white);
    text-align: justify;
}

/* ===== Compact About Us Section ===== */
.store-intro {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
}

.store-intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--pearl-white);
    margin: 0;
}

.store-intro-text strong {
    color: var(--antique-gold);
    font-size: 1.3rem;
}

/* Compact Founder Card */
.founder-card.compact {
    max-width: 1000px;
    margin: 0 auto 40px;
    gap: 25px;
    padding: 25px;
}

.founder-image.compact {
    width: 200px;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--antique-gold);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.founder-image.compact img {
    width: 100%;
    height: 120%;
    object-fit: cover;
}

.founder-info.compact {
    flex: 1;
}

.founder-name.compact {
    font-size: 2rem;
    margin-bottom: 5px;
}

.founder-role.compact {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.founder-description.compact {
    font-size: 0.95rem;
    line-height: 1.7;
    text-align: left;
}

/* Co-Founders Section */
.co-founders-section {
    max-width: 1200px;
    margin: 0 auto 40px;
}

.subsection-title-compact {
    font-family: var(--font-elegant);
    font-size: 1.8rem;
    color: var(--antique-gold);
    text-align: center;
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 15px;
}

.subsection-title-compact::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: var(--antique-gold);
}

.subsection-description-compact {
    text-align: center;
    color: var(--pearl-white);
    font-size: 1rem;
    margin-bottom: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.co-founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.co-founder-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(176, 141, 87, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.co-founder-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(176, 141, 87, 0.3);
    border-color: var(--antique-gold);
}

.co-founder-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.co-founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.co-founder-card:hover .co-founder-image img {
    transform: scale(1.1);
}

.co-founder-info {
    padding: 18px;
}

.co-founder-name {
    font-family: var(--font-elegant);
    font-size: clamp(1.2rem, 1.05rem + 0.6vw, 1.4rem);
    color: var(--antique-gold);
    margin-bottom: 10px;
}

.co-founder-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--pearl-white);
    text-align: left;
    margin: 0;
}

/* Third Generation Section */
.third-generation-section {
    max-width: 1200px;
    margin: 0 auto 40px;
}

.third-gen-grid {
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

.third-gen-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(176, 141, 87, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    max-width: calc((1200px - 40px) / 3);
    margin: 0 auto;
}

.third-gen-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(176, 141, 87, 0.3);
    border-color: var(--antique-gold);
}

.third-gen-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.third-gen-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.3s ease;
}

.third-gen-card:hover .third-gen-image img {
    transform: scale(1.1);
}

.third-gen-info {
    padding: 18px;
}

.third-gen-name {
    font-family: var(--font-elegant);
    font-size: clamp(1.2rem, 1.05rem + 0.6vw, 1.4rem);
    color: var(--antique-gold);
    margin-bottom: 10px;
}

.third-gen-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--pearl-white);
    text-align: left;
    margin: 0;
}

@media (max-width: 767px) {
    .founder-card.compact {
        flex-direction: column;
        text-align: center;
        padding: clamp(1.5rem, 1.2rem + 1vw, 2rem);
    }
    
    .founder-image.compact {
        width: clamp(9rem, 35vw, 11rem);
        height: clamp(9rem, 35vw, 11rem);
        margin: 0 auto;
    }
    
    .founder-description.compact {
        text-align: center;
    }
    
    .co-founders-section {
        padding: 0 clamp(1rem, 3vw, 2rem);
    }
    
    .subsection-title-compact {
        font-size: clamp(1.5rem, 4vw, 1.8rem);
        margin-bottom: clamp(0.5rem, 1.5vw, 0.75rem);
    }
    
    .subsection-description-compact {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
        margin-bottom: clamp(1rem, 2.5vw, 1.5rem);
        padding: 0 clamp(0.5rem, 2vw, 1rem);
    }
    
    .co-founders-grid {
        grid-template-columns: 1fr;
        gap: clamp(1.25rem, 3vw, 1.75rem);
        margin-top: clamp(1rem, 2.5vw, 1.5rem);
    }
    
    .co-founder-card {
        border-radius: clamp(0.75rem, 2vw, 1rem);
    }
    
    .co-founder-image {
        height: clamp(14rem, 50vw, 18rem);
        max-height: 300px;
    }
    
    .co-founder-info {
        padding: clamp(1rem, 2.5vw, 1.25rem);
    }
    
    .co-founder-name {
        font-size: clamp(1.1rem, 3.5vw, 1.3rem);
        margin-bottom: clamp(0.5rem, 1.5vw, 0.75rem);
    }
    
    .co-founder-description {
        font-size: clamp(0.85rem, 2.2vw, 0.95rem);
        line-height: 1.7;
    }
    
    .third-gen-grid {
        margin-top: clamp(1rem, 2.5vw, 1.5rem);
    }
    
    .third-gen-card {
        border-radius: clamp(0.75rem, 2vw, 1rem);
        max-width: 100%;
    }
    
    .third-gen-image {
        height: clamp(14rem, 50vw, 18rem);
        max-height: 300px;
    }
    
    .third-gen-info {
        padding: clamp(1rem, 2.5vw, 1.25rem);
    }
    
    .third-gen-name {
        font-size: clamp(1.1rem, 3.5vw, 1.3rem);
        margin-bottom: clamp(0.5rem, 1.5vw, 0.75rem);
    }
    
    .third-gen-description {
        font-size: clamp(0.85rem, 2.2vw, 0.95rem);
        line-height: 1.7;
    }
    
    .store-intro-text {
        font-size: clamp(0.95rem, 0.9rem + 0.2vw, 1rem);
    }
}

/* ===== What is Unique About Us Section ===== */
.unique-section {
    padding: var(--section-padding);
    background: var(--pearl-white);
    position: relative;
}

.unique-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--antique-gold), transparent);
}

.quote-section {
    max-width: 800px;
    margin: 0 auto 80px;
    text-align: center;
}

.quote-container {
    background: linear-gradient(135deg, #1C1C1C 0%, #000000 100%);
    padding: 60px 40px;
    border-radius: 20px;
    border: 3px solid var(--antique-gold);
    box-shadow: 0 10px 40px rgba(176, 141, 87, 0.3);
    position: relative;
}

.quote-icon {
    font-size: clamp(2.3rem, 1.8rem + 1vw, 3rem);
    color: var(--antique-gold);
    opacity: 0.5;
    position: absolute;
}

.quote-icon:first-of-type {
    top: 20px;
    left: 30px;
}

.quote-icon:last-of-type {
    bottom: 20px;
    right: 30px;
}

.quote-text {
    font-family: var(--font-elegant);
    font-size: clamp(2.4rem, 2rem + 2.5vw, 3.5rem);
    color: var(--antique-gold);
    margin: 20px 0 15px;
    font-weight: 700;
    letter-spacing: 2px;
}

.quote-subtext {
    font-size: clamp(1rem, 0.95rem + 0.4vw, 1.2rem);
    color: var(--pearl-white);
    font-style: italic;
    margin: 0;
}

.making-charges-section {
    max-width: 1200px;
    margin: 0 auto;
}

.subsection-title {
    font-family: var(--font-elegant);
    font-size: clamp(1.8rem, 1.4rem + 1.2vw, 2.2rem);
    color: var(--navy-primary);
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 20px;
}

.subsection-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 3px;
    background: var(--antique-gold);
}

.subsection-description {
    text-align: center;
    color: var(--text-dark);
    font-size: clamp(1rem, 0.95rem + 0.3vw, 1.1rem);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.charges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: clamp(1.5rem, 1.2rem + 1.2vw, 2.5rem);
    margin-bottom: var(--space-lg);
}

.charge-card {
    background: var(--white);
    border-radius: 15px;
    padding: clamp(1.75rem, 1.3rem + 1.2vw, 2.5rem);
    text-align: center;
    box-shadow: 0 5px 20px rgba(10, 31, 68, 0.1);
    border: 2px solid var(--soft-gray);
    border-top: 4px solid var(--antique-gold);
    transition: all 0.3s ease;
}

.charge-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(176, 141, 87, 0.3);
    border-color: var(--antique-gold);
}

.charge-card.highlight-card {
    background: linear-gradient(135deg, rgba(176, 141, 87, 0.1) 0%, rgba(176, 141, 87, 0.05) 100%);
    border-color: var(--antique-gold);
}

.charge-icon {
    font-size: 3.5rem;
    color: var(--antique-gold);
    margin-bottom: 20px;
}

.charge-card h4 {
    font-family: var(--font-elegant);
    font-size: clamp(1.3rem, 1.1rem + 0.7vw, 1.6rem);
    color: var(--navy-primary);
    margin-bottom: 15px;
}

.charge-amount {
    font-size: clamp(1.4rem, 1.2rem + 0.9vw, 1.8rem);
    font-weight: 700;
    color: var(--antique-gold);
    margin-bottom: 10px;
}

.charge-description {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-style: italic;
}

.charge-details {
    list-style: none;
    text-align: left;
    padding: 0;
    margin: 20px 0 0;
}

.charge-details li {
    color: var(--text-dark);
    font-size: 0.9rem;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.charge-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--antique-gold);
    font-weight: bold;
    font-size: 1.1rem;
}

.transparency-note {
    max-width: 900px;
    margin: var(--space-lg) auto 0;
    background: linear-gradient(135deg, rgba(176, 141, 87, 0.1) 0%, rgba(176, 141, 87, 0.05) 100%);
    padding: clamp(1.75rem, 1.4rem + 1.5vw, 2.75rem);
    border-radius: 15px;
    border: 2px solid var(--antique-gold);
}

.note-content {
    display: flex;
    gap: var(--space-sm);
    align-items: flex-start;
}

.note-content i {
    font-size: 2rem;
    color: var(--antique-gold);
    flex-shrink: 0;
    margin-top: 5px;
}

.note-content p {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
}

/* ===== Offers Section ===== */
.offers-section {
    max-width: 1200px;
    margin: 0 auto;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: clamp(1.5rem, 1.2rem + 1.2vw, 2.5rem);
    margin-top: var(--space-md);
}

.offer-card {
    background: var(--white);
    border-radius: 15px;
    padding: clamp(1.75rem, 1.3rem + 1.2vw, 2.5rem);
    text-align: center;
    box-shadow: 0 5px 20px rgba(10, 31, 68, 0.1);
    border: 2px solid var(--soft-gray);
    border-top: 4px solid var(--antique-gold);
    transition: all 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(176, 141, 87, 0.3);
    border-color: var(--antique-gold);
}

.offer-icon {
    font-size: 3rem;
    color: var(--antique-gold);
    margin-bottom: 20px;
}

.offer-card h4 {
    font-family: var(--font-elegant);
    font-size: clamp(1.4rem, 1.2rem + 0.8vw, 1.8rem);
    color: var(--navy-primary);
    margin-bottom: 15px;
}

.offer-description {
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.offer-images {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    margin-top: 20px;
}

.offer-images img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.offer-images img:hover {
    transform: scale(1.1);
}

/* ===== Customizable Section ===== */
.customizable-section {
    max-width: 1200px;
    margin: 0 auto;
}

.customizable-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: clamp(1.5rem, 1.2rem + 1.2vw, 2.5rem);
    margin-top: var(--space-md);
}

.customizable-image-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(10, 31, 68, 0.2);
    cursor: pointer;
    aspect-ratio: 1;
    border: 2px solid var(--soft-gray);
    transition: all 0.3s ease;
}

.customizable-image-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(176, 141, 87, 0.4);
    border-color: var(--antique-gold);
}

.customizable-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    cursor: pointer;
}

.customizable-image-item:hover img {
    transform: scale(1.1);
}

@media (max-width: 767px) {
    .offers-grid {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }
    
    .offer-images {
        flex-direction: column;
        align-items: center;
    }
    
    .customizable-images-grid {
        grid-template-columns: 1fr;
    }
}

.note-content strong {
    color: var(--navy-primary);
    font-weight: 600;
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-text {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--pearl-white);
    margin-bottom: 40px;
    text-align: justify;
}

.values-section {
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 2px solid rgba(176, 141, 87, 0.2);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: clamp(1.5rem, 1.2rem + 1.2vw, 2.5rem);
}

.story-timeline {
    position: relative;
    padding: 40px 0;
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--antique-gold);
    border: 4px solid var(--navy-secondary);
    box-shadow: 0 0 0 4px var(--antique-gold);
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: 9px;
    top: 20px;
    width: 2px;
    height: calc(100% + 20px);
    background: linear-gradient(180deg, var(--antique-gold), transparent);
}

.timeline-item:last-child::after {
    display: none;
}

.timeline-year {
    font-family: var(--font-elegant);
    font-size: clamp(1.2rem, 1rem + 0.6vw, 1.5rem);
    color: var(--antique-gold);
    margin-bottom: 10px;
}

.timeline-content {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--pearl-white);
}

/* ===== Branches Page Styles ===== */
.branches-section {
    padding: var(--section-padding);
    background: var(--pearl-white);
    position: relative;
}

.branches-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--antique-gold), transparent);
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: clamp(1.75rem, 1.4rem + 1.5vw, 2.75rem);
    margin-top: var(--space-md);
}

.branch-card {
    background: var(--sand);
    border-radius: 15px;
    padding: clamp(1.75rem, 1.4rem + 1.5vw, 2.75rem);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    border: 2px solid var(--matte-gold);
    border-top: 4px solid var(--antique-gold);
}

.branch-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(176, 141, 87, 0.4);
    border-color: var(--antique-gold);
}

.branch-card h3 {
    font-family: var(--font-elegant);
    font-size: clamp(1.6rem, 1.3rem + 1.2vw, 2rem);
    color: var(--navy-primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.branch-card h3 i {
    color: var(--antique-gold);
    font-size: 1.8rem;
}

.branch-info {
    margin-bottom: 25px;
}

.branch-info p {
    margin-bottom: 10px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.branch-info i {
    color: var(--antique-gold);
    width: 20px;
}

.branch-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    margin-bottom: 20px;
    padding: 12px 25px;
    background: #25D366;
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(37, 211, 102, 0.3);
}

.branch-whatsapp-btn:hover {
    background: #20BA5A;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

.branch-whatsapp-btn i {
    font-size: 1.2rem;
}

.branch-map {
    margin-top: var(--space-sm);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    aspect-ratio: 4 / 3;
    min-height: clamp(220px, 45vw, 360px);
}

.branch-map iframe,
.branch-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    display: block;
}

.branch-map img {
    cursor: pointer;
}

.branch-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: var(--antique-gold);
    color: var(--navy-primary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.branch-btn:hover {
    background: var(--antique-gold-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(176, 141, 87, 0.4);
}

/* ===== Contact Form Styles ===== */
.contact-section {
    padding: var(--section-padding);
    background: var(--navy-secondary);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--antique-gold), transparent);
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    background: var(--sand);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
    border: 2px solid var(--matte-gold);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--navy-primary);
    font-weight: 600;
    font-family: var(--font-elegant);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--soft-gray);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--pearl-white);
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--antique-gold);
    box-shadow: 0 0 0 3px rgba(176, 141, 87, 0.2);
    background: var(--white);
}

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

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--antique-gold) 0%, var(--antique-gold-dark) 100%);
    color: var(--navy-primary);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(176, 141, 87, 0.4);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(176, 141, 87, 0.6);
    background: linear-gradient(135deg, var(--antique-gold-light) 0%, var(--antique-gold) 100%);
}

.reviews-section {
    padding: var(--section-padding);
    background: var(--pearl-white);
    position: relative;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: clamp(1.5rem, 1.2rem + 1.2vw, 2.5rem);
    margin-top: var(--space-md);
}

.review-card {
    background: var(--sand);
    padding: clamp(1.75rem, 1.3rem + 1.2vw, 2.5rem);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
    border-left: 4px solid var(--antique-gold);
    border: 2px solid var(--matte-gold);
    border-left: 4px solid var(--antique-gold);
    transition: all 0.3s ease;
}

.review-card:hover {
    box-shadow: 0 10px 40px rgba(176, 141, 87, 0.3);
    border-color: var(--antique-gold);
    transform: translateY(-5px);
}

.review-stars {
    color: var(--antique-gold);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.review-text {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 15px;
    font-style: italic;
}

.review-author {
    color: var(--navy-primary);
    font-weight: 600;
}

/* ===== Google Review Links ===== */
.google-review-links {
    margin-top: var(--space-lg);
    text-align: center;
    padding: clamp(1.75rem, 1.4rem + 1.5vw, 2.75rem) clamp(1.5rem, 1.1rem + 1vw, 2.25rem);
    background: linear-gradient(135deg, rgba(176, 141, 87, 0.05) 0%, rgba(176, 141, 87, 0.02) 100%);
    border-radius: 15px;
    border: 2px solid var(--matte-gold);
}

.review-links-title {
    font-family: var(--font-elegant);
    font-size: var(--font-size-h3);
    color: var(--navy-primary);
    margin-bottom: 10px;
}

.review-links-description {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.review-links-container {
    display: flex;
    justify-content: center;
    gap: clamp(1.25rem, 1rem + 1vw, 2rem);
    flex-wrap: wrap;
}

.google-review-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 35px;
    background: linear-gradient(135deg, #4285F4 0%, #34A853 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: clamp(1rem, 0.95rem + 0.3vw, 1.1rem);
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(66, 133, 244, 0.3);
    border: 2px solid transparent;
}

.google-review-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(66, 133, 244, 0.5);
    border-color: var(--white);
    background: linear-gradient(135deg, #34A853 0%, #4285F4 100%);
}

.google-review-btn i {
    font-size: 1.3rem;
}

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

@media (max-width: 767px) {
    .review-links-container {
        flex-direction: column;
        align-items: center;
        gap: var(--space-sm);
    }
    
    .google-review-btn {
        width: 100%;
        max-width: 20rem;
        justify-content: center;
    }
    
    .review-links-title {
        font-size: clamp(1.4rem, 3.5vw, 1.6rem);
    }
    
    .review-links-description {
        font-size: clamp(0.95rem, 0.9rem + 0.2vw, 1rem);
    }
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    body {
        background-attachment: scroll;
    }

    .container,
    .nav-container {
        padding: 0 clamp(0.75rem, 2.5vw, 2rem);
    }

    .nav-menu {
        gap: clamp(0.5rem, 1.2vw, 1.25rem);
    }

    .nav-menu a {
        font-size: clamp(0.75rem, 0.7rem + 0.2vw, 0.85rem);
    }

    .nav-brand__title {
        font-size: clamp(0.9rem, 0.85rem + 0.5vw, 1.2rem);
    }

    .features-grid,
    .quick-links-grid,
    .reviews-grid,
    .offers-grid,
    .charges-grid,
    .customizable-images-grid {
        gap: clamp(1.25rem, 1rem + 1vw, 2rem);
    }

    .branch-card,
    .feature-card,
    .offer-card,
    .charge-card,
    .review-card {
        padding: clamp(1.5rem, 1.2rem + 1vw, 2.25rem);
    }
}

@media (max-width: 767px) {
    .nav-container {
        gap: clamp(0.5rem, 2vw, 1rem);
    }

    .nav-brand {
        gap: 0;
    }

    .nav-brand__title {
        font-size: clamp(0.85rem, 3.5vw, 1rem);
        letter-spacing: 0.04em;
    }

    .nav-brand__tagline {
        display: none;
    }

    .hamburger {
        display: flex;
        position: relative;
        right: 0;
        top: 0;
        transform: none;
        margin-left: auto;
        z-index: 1100;
    }

    .nav-menu {
        position: fixed;
        inset: 0;
        background: rgba(26, 18, 13, 0.95);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: var(--space-sm);
        padding: clamp(4.5rem, 18vw, 6rem) clamp(1.5rem, 8vw, 3rem);
        height: 100vh;
        transform: translateY(-100%);
        transition: transform 0.3s ease-in-out;
        z-index: 1090;
        overflow-y: auto;
        pointer-events: none;
    }

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

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        font-size: clamp(1rem, 0.9rem + 0.6vw, 1.2rem);
        color: var(--pearl-white);
    }

    .nav-menu a::after {
        display: none;
    }

    .footer-content,
    .features-grid,
    .quick-links-grid,
    .gallery-grid,
    .branches-grid,
    .reviews-grid,
    .offers-grid,
    .charges-grid,
    .customizable-images-grid,
    .co-founders-grid,
    .team-grid,
    .values-grid,
    .silver-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        gap: var(--space-md);
    }

    .quote-container {
        padding: clamp(2rem, 8vw, 2.75rem);
    }

    .quote-text {
        font-size: clamp(2rem, 6vw, 2.6rem);
    }

    .quote-icon {
        font-size: clamp(2rem, 5vw, 2.4rem);
    }

    .subsection-title {
        font-size: clamp(1.6rem, 4.5vw, 1.8rem);
    }

    .whatsapp-container {
        bottom: clamp(1rem, 5vw, 1.5rem);
        right: clamp(1rem, 5vw, 1.5rem);
    }

    .whatsapp-text {
        display: none;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        font-size: 1.6rem;
    }

    .founder-card {
        flex-direction: column;
        text-align: center;
        padding: clamp(1.5rem, 1.2rem + 1vw, 2rem);
    }

    .founder-image {
        width: clamp(11rem, 45vw, 13rem);
        height: clamp(11rem, 45vw, 13rem);
        margin: 0 auto var(--space-sm);
    }

    .founder-info {
        text-align: center;
    }

    .hero {
        min-height: 560px;
    }

    .section-lead {
        margin-bottom: var(--space-md);
    }

    .story-timeline {
        padding: var(--space-md) 0;
    }

    .timeline-item {
        padding-left: 45px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: clamp(10px, 2.5vw, 12px) 0;
    }

    .hero {
        min-height: 468px;
        padding-bottom: clamp(0.25rem, 4vw, 0.6rem);
    }

    .hero-popup-message {
        bottom: clamp(0.2rem, 4vw, 0.55rem);
    }

    .hero-carousel-logo {
        top: clamp(0.4rem, 2vw, 0.8rem);
        left: clamp(0.4rem, 2vw, 0.8rem);
        width: clamp(5.5rem, 28vw, 7.5rem);
        max-width: 38vw;
    }

    .btn {
        padding: clamp(0.65rem, 2.5vw, 0.8rem) clamp(1.5rem, 8vw, 2.5rem);
        font-size: clamp(0.85rem, 3vw, 0.95rem);
    }

    .contact-form {
        padding: clamp(1.5rem, 6vw, 1.9rem);
    }

    .quote-container {
        padding: clamp(1.75rem, 8vw, 2.2rem);
    }

    .quote-text {
        font-size: clamp(1.8rem, 7vw, 2.2rem);
    }

    .quote-icon {
        font-size: clamp(1.8rem, 6vw, 2.1rem);
    }

    .marquee-banner {
        height: 30px;
    }

    .marquee-content span {
        font-size: clamp(0.6rem, 2.4vw, 0.75rem);
    }
}

@media (max-width: 767px) {
    .hero {
        margin-top: clamp(6.5rem, 22vw, 9rem);
        padding-inline: clamp(0.5rem, 5vw, 1.5rem);
        padding-bottom: 0;
        gap: clamp(0.3rem, 2.5vw, 0.75rem);
    }

    .hero-carousel {
        border-radius: clamp(0.5rem, 4vw, 0.8rem);
        max-width: calc(100vw - clamp(1.2rem, 12vw, 2.8rem));
        box-shadow: 0 20px 40px rgba(10, 31, 68, 0.22);
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: auto;
        padding-bottom: 0;
    }

    .hero-carousel-logo {
        top: clamp(0.15rem, 1.2vw, 0.35rem);
        left: clamp(0.15rem, 1.2vw, 0.35rem);
        width: clamp(5.5rem, 28vw, 7.5rem);
        max-width: 38vw;
    }
}

