/* Base styles and design tokens (Light Theme Redesign) */
:root {
    --color-background: #ffffff;
    --color-surface: #f9f9f9;
    --color-foreground: #111111;
    --color-border: #eaeaea;
    --color-gold: #c5a059;
    --color-gold-soft: #a8813a;
    --color-muted: #666666;
    --color-peach: #FDF6F3;

    --radius-full: 9999px;
    --radius-2xl: 1.25rem;
    --radius-3xl: 2rem;

    --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;

    --container-padding: 1.25rem;
    --container-max: 1280px;

    /* Animation easing */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html,
body {
    font-family: var(--font-sans);
    background-color: var(--color-background);
    color: var(--color-foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;

    max-width: 100%;
    overflow-x: clip;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Layout */
.app-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container-x {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

@media (min-width: 768px) {
    :root {
        --container-padding: 2rem;
    }
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    transition: transform 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4.5rem;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    font-family: var(--font-display);
}

.desktop-nav {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 1150px) {
    .desktop-nav {
        display: flex;
    }
}

.desktop-nav .nav-link {
    position: relative;
    padding: 0.5rem 0;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.7);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.desktop-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 2px;
    background-color: var(--color-gold);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center;
}

.desktop-nav .nav-link:hover::after,
.desktop-nav .nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

.desktop-nav .nav-link:hover,
.desktop-nav .nav-link.active {
    color: var(--color-gold);
}

/* Fallback for general links */
.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.7);
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-foreground);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.icon-btn {
    display: grid;
    place-items: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: transparent;
    border: none;
    color: rgba(0, 0, 0, 0.8);
    cursor: pointer;
    transition: all 0.2s ease;
}

.icon-btn:hover {
    background-color: var(--color-surface);
    color: var(--color-foreground);
}

.icon-btn i {
    width: 1.25rem;
    height: 1.25rem;
}

.mobile-menu-toggle {
    display: block;
}

@media (min-width: 1150px) {
    .mobile-menu-toggle {
        display: none;
    }
}

/* Mobile Nav Styles */
.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 1000;
    pointer-events: none;
    visibility: hidden;
}

.mobile-nav.active {
    pointer-events: auto;
    visibility: visible;
}

.mobile-nav-backdrop {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.mobile-nav.active .mobile-nav-backdrop {
    opacity: 1;
}

.mobile-nav-content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 85%;
    max-width: 320px;
    background: rgba(18, 18, 18, 0.98);
    border-left: 1px solid rgba(212, 175, 55, 0.15);
    z-index: 2;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    padding: 1.75rem;
    box-shadow: -15px 0 40px rgba(0, 0, 0, 0.5);
}

.mobile-nav.active .mobile-nav-content {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav-logo {
    height: 48px;
    object-fit: contain;
}

.mobile-menu-close {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: var(--color-gold);
    color: var(--color-black);
    border-color: var(--color-gold);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
    overflow-y: auto;
    margin-bottom: 1.5rem;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.mobile-nav-link i {
    width: 1.15rem;
    height: 1.15rem;
    color: var(--color-gold);
    transition: transform 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: #ffffff;
    background: rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.2);
}

.mobile-nav-link:hover i,
.mobile-nav-link.active i {
    transform: translateX(3px);
}

.mobile-nav-footer {
    margin-top: auto;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-book-mobile {
    width: 100%;
    padding: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    background: var(--color-gold);
    color: var(--color-black);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.mobile-nav-socials {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
}

.mobile-nav-socials a {
    color: rgba(255, 255, 255, 0.5);
    width: 2.25rem;
    height: 2.25rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: all 0.3s ease;
}

.mobile-nav-socials a:hover {
    color: var(--color-gold);
    background: rgba(212, 175, 55, 0.08);
    border-color: var(--color-gold);
    transform: translateY(-2px);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: var(--radius-full);
    padding: 0.75rem 1.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s var(--ease-out-expo);
    border: none;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background-color: var(--color-foreground);
    color: var(--color-background);
}

.btn-primary:hover {
    box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.5);
    transform: translateY(-2px);
}

.btn-black {
    background-color: #111;
    color: #fff;
}

.btn-black:hover {
    background-color: #222;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.5);
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background-color: #20BA56;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(37, 211, 102, 0.5);
}

.hidden-mobile {
    display: none;
}

@media (min-width: 1150px) {
    .hidden-mobile {
        display: inline-flex;
    }
}

/* Typography Overhaul */
.eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.eyebrow::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background-color: var(--color-gold);
}

.headline-xl {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.headline-lg {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.text-gold {
    color: var(--color-gold);
}

/* Animations (Scroll Reveal) */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

/* Sections Global */
.section-pad {
    padding: 6rem 0;
}

@media (min-width: 768px) {
    .section-pad {
        padding: 8rem 0;
    }
}

.bg-surface {
    background-color: var(--color-surface);
}

.bg-background {
    background-color: var(--color-background);
}

.bg-peach {
    background-color: var(--color-peach);
    color: #111;
}

.bg-black {
    background-color: #111111;
    color: #ffffff;
}

/* bg-light-pink utility class */
.bg-light-pink {
    background-color: #fff0f5;
}

/* Page Hero (Unified for Inner Pages) */
.page-hero {
    padding-top: 10rem;
    padding-bottom: 6rem;
    text-align: center;
}

/* Testimonials Split Section */
.testimonials-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .testimonials-split {
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
    }
}

.testimonials-header {
    position: relative;
}

@media (min-width: 1024px) {
    .testimonials-header {
        position: sticky;
        top: 15vh;
    }
}

/* Vertical Scrolling Container */
.testimonials-scroller-wrapper {
    height: 600px;
    overflow: hidden;
    position: relative;
    /* Fade masks at top and bottom for smooth appearance */
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
}

.testimonials-scroller {
    display: flex;
    flex-direction: column;
    animation: verticalScroll 30s linear infinite;
}

.testimonials-scroller-wrapper:hover .testimonials-scroller {
    animation-play-state: paused;
}

.testimonials-group {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-bottom: 2rem; /* gap between duplicate groups */
}

@keyframes verticalScroll {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-50%);
    }
}

.testimonial-card {
    background: #ffffff;
    border: 1px solid rgba(255, 192, 203, 0.5); /* subtle pink border */
    border-radius: 1.5rem;
    padding: 2.5rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(197, 160, 89, 0.4);
    box-shadow: 0 15px 40px rgba(197, 160, 89, 0.15);
}

.quote-icon {
    color: var(--color-gold);
    width: 2.5rem;
    height: 2.5rem;
    opacity: 0.8;
}

.testimonial-card .stars {
    color: var(--color-gold);
    font-size: 1.25rem;
    letter-spacing: 2px;
}

.review-text {
    font-size: 1.1rem;
    color: rgba(0, 0, 0, 0.7);
    font-style: italic;
    line-height: 1.6;
    flex-grow: 1;
}

.client-name {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: #111111;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Stats Section */
/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    width: 100%;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transform: scale(1.05);
    /* Slight zoom for image */
    animation: slowZoom 20s ease-out forwards;
}

@keyframes slowZoom {
    0% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.9));
}

.hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
}



.hero-content h1 {
    color: #ffffff;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-text-wrapper {
    max-width: 50rem;
    margin: 0 auto;
}

.hero-desc {
    margin-top: 1.5rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.hero-buttons {
    margin-top: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.btn-white {
    background-color: #ffffff;
    color: #111111;
    padding: 0.875rem 1.75rem;
}

.btn-white:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(255, 255, 255, 0.3);
}

.btn-outline-white {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    backdrop-filter: blur(8px);
    padding: 0.875rem 1.75rem;
}

.btn-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Offset Section Headers */
.section-header {
    margin-bottom: 4rem;
    max-width: 42rem;
}

.section-header.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-header.center .eyebrow {
    justify-content: center;
}

.section-header.center .eyebrow::before,
.section-header.center .eyebrow::after {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background-color: var(--color-gold);
}

/* Family / Brands (Asymmetrical) */
.family-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .family-grid {
        grid-template-columns: repeat(3, 1fr);
        align-items: start;
    }

    /* Asymmetrical offset */
    .family-card:nth-child(2) {
        margin-top: 3rem;
    }

    .family-card:nth-child(3) {
        margin-top: 1.5rem;
    }
}

.family-card {
    border-radius: var(--radius-3xl);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    background-color: var(--color-background);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s var(--ease-out-expo);
    height: 100%;
}

.family-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
}

.family-icon {
    color: var(--color-gold);
    width: 2rem;
    height: 2rem;
}

.family-label {
    margin-top: 2rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--color-muted);
}

.family-title {
    margin-top: 0.5rem;
    font-size: 1.75rem;
    font-weight: 700;
}

.family-desc {
    margin-top: 1rem;
    font-size: 0.9375rem;
    color: var(--color-muted);
    flex: 1;
}

.family-link {
    margin-top: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    position: relative;
}

.family-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: var(--color-gold);
    transition: width 0.3s ease;
}

.family-card:hover .family-link::after {
    width: 100%;
}

/* Services Layout */
.service-tabs {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: var(--radius-full);
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    background-color: var(--color-background);
    color: var(--color-foreground);
    border: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    border-color: rgba(0, 0, 0, 0.3);
}

.tab-btn.active {
    background-color: var(--color-foreground);
    color: var(--color-background);
    border-color: var(--color-foreground);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-card {
    border-radius: var(--radius-2xl);
    background-color: var(--color-background);
    padding: 2rem;
    transition: all 0.4s var(--ease-out-expo);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 0, 0, 0.05);
    box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.05);
}

.service-icon {
    color: var(--color-gold);
    width: 1.75rem;
    height: 1.75rem;
}

.service-title {
    margin-top: 1.5rem;
    font-size: 1.125rem;
    font-weight: 700;
}

.service-price {
    margin-top: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-gold);
}

.service-desc {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-muted);
}

/* Why Choose Us */
/* 2x2 Floating Glass Grid (Why Choose Us) */
.glass-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 4rem;
}

@media (min-width: 768px) {
    .glass-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

.glass-card {
    position: relative;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 2rem;
    padding: 3rem 2rem;
    text-align: center;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), background 0.5s ease, border-color 0.5s ease;
    z-index: 1;
    box-shadow: 0 10px 40px rgba(0,0,0,0.02);
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 250px;
    height: 250px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.8s ease;
    z-index: -1;
    filter: blur(60px);
}

.glass-card.glow-pink::before {
    background: #E5097F;
}

.glass-card.glow-gold::before {
    background: var(--color-gold);
}

.glass-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

.glass-card:hover::before {
    opacity: 0.15;
}

.glass-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111111;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), color 0.5s ease;
}

.glass-icon svg {
    width: 32px;
    height: 32px;
}

.glass-card.glow-pink:hover .glass-icon {
    color: #E5097F;
    transform: scale(1.1);
}

.glass-card.glow-gold:hover .glass-icon {
    color: var(--color-gold);
    transform: scale(1.1);
}

.glass-card h3 {
    font-size: 1.5rem;
    font-family: var(--font-display);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #111111;
}

.glass-card p {
    color: var(--color-muted);
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Advanced Reveal Animation: Scale and Blur */
.reveal-blur {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    filter: blur(10px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1), filter 1s ease;
}

.reveal-blur.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

/* Promo Section */
.promo-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .promo-grid {
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
    }
}

.promo-headline {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 1rem 0;
    text-transform: uppercase;
    background: linear-gradient(90deg, var(--color-gold), #e8c678);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (min-width: 1024px) {
    .promo-headline {
        font-size: 4.5rem;
    }
}

.promo-desc {
    font-size: 1.125rem;
    color: var(--color-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.promo-brand {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: #111111;
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.promo-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.promo-image-wrapper {
    position: relative;
}

.promo-image-container {
    position: relative;
    border-radius: 50% 50% 0 0; /* Dome shape like the flyer */
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.promo-image {
    width: 100%;
    height: auto;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.promo-badge {
    position: absolute;
    top: 2rem;
    left: -2rem;
    background: white;
    border: 4px solid var(--color-gold);
    border-radius: 50%;
    width: 160px;
    height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    z-index: 2;
}

.promo-badge .stars {
    color: var(--color-gold);
    font-size: 1.5rem;
    line-height: 1;
}

.promo-badge .badge-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-gold);
    line-height: 1.1;
    margin: 0.25rem 0;
}

.promo-badge .badge-text {
    font-size: 0.8rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    color: #111111;
}

.promo-features {
    display: flex;
    justify-content: space-between;
    background: white;
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-top: -3rem;
    position: relative;
    z-index: 3;
}

.feature-mini {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.feature-mini span {
    font-size: 0.8rem;
    font-weight: 600;
    color: #111111;
    line-height: 1.2;
}

/* Services Strip */
.services-strip {
    margin-top: 6rem;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 2rem;
    padding: 2rem;
}

.strip-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.strip-line {
    height: 2px;
    flex: 1;
    max-width: 150px;
    background: var(--color-gold);
}

.strip-header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.strip-icons {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.strip-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    flex: 1;
    min-width: 100px;
}

.strip-item i {
    width: 48px;
    height: 48px;
    padding: 12px;
    border: 2px solid var(--color-border);
    border-radius: 50%;
    color: #111111;
    transition: all 0.3s ease;
}

.strip-item:hover i {
    border-color: var(--color-gold);
    color: var(--color-gold);
    background: rgba(197, 160, 89, 0.05);
}

.strip-item span {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-muted);
}

/* Academy Section */
.academy-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .academy-grid {
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
    }
}

.academy-image-wrapper {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.academy-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: -1px;
    right: -1px;
    background: var(--color-gold);
    color: white;
    padding: 2rem;
    border-radius: 2rem 0 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: -10px -10px 30px rgba(0,0,0,0.1);
}

.exp-number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    font-family: var(--font-display);
}

.exp-text {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    margin-top: 0.5rem;
    letter-spacing: 0.05em;
}

.academy-list {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.academy-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.academy-list .icon-wrapper {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.academy-list span {
    font-size: 1.05rem;
    color: rgba(0,0,0,0.8);
    line-height: 1.5;
    font-weight: 500;
}

/* Results (Sliders) */
.results-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .results-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.result-card {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    background-color: var(--color-background);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.4s var(--ease-out-expo);
}

.result-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.05);
}

.slider-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    user-select: none;
    touch-action: pan-y;
    overflow: hidden;
}

.slider-image-before,
.slider-image-after {
    position: absolute;
    inset: 0;
}

.slider-image-after {
    width: 100%;
    clip-path: polygon(0 0, 10% 0, 10% 100%, 0 100%);
    z-index: 2;
}

.slider-image-before img,
.slider-image-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.badge {
    position: absolute;
    top: 1rem;
    z-index: 10;
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
}

.before-badge {
    left: 1rem;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--color-foreground);
    backdrop-filter: blur(4px);
}

.after-badge {
    right: 1rem;
    background-color: rgba(17, 17, 17, 0.9);
    color: var(--color-background);
    backdrop-filter: blur(4px);
}

.slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 10%;
    width: 2px;
    background-color: white;
    z-index: 3;
    transform: translateX(-50%);
    cursor: ew-resize;
    pointer-events: none;
}

.handle-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: var(--color-background);
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: grid;
    place-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.handle-icon i {
    width: 1rem;
    height: 1rem;
}

.result-info {
    padding: 1.25rem;
}

.result-category {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold);
    font-weight: 700;
}

.result-title {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 0.25rem;
}

/* Bridal Specialization */
.bridal-grid {
    display: grid;
    gap: 4rem;
}

@media (min-width: 768px) {
    .bridal-grid {
        grid-template-columns: 1fr 1.2fr;
        align-items: center;
    }
}

.bridal-list {
    margin-top: 2rem;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bridal-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.8);
}

.bridal-list i {
    color: var(--color-gold);
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.bridal-images {
    position: relative;
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 1rem;
}

.bridal-img-main {
    aspect-ratio: 3/4;
    border-radius: var(--radius-3xl);
    overflow: hidden;
}

.bridal-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bridal-img-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 4rem;
}

.bridal-img-small {
    aspect-ratio: 1;
    border-radius: var(--radius-2xl);
    overflow: hidden;
}

.bridal-img-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 480px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
}

.stat-card::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background-color: rgba(0, 0, 0, 0.05);
    display: none;
}

@media (min-width: 480px) {
    .stat-card::after {
        display: block;
    }

    .stat-card:nth-child(2n)::after {
        display: none;
    }
}

@media (min-width: 768px) {
    .stat-card:nth-child(2n)::after {
        display: block;
    }

    .stat-card:nth-child(4n)::after {
        display: none;
    }
}

.stat-icon {
    color: var(--color-gold);
    width: 2rem;
    height: 2rem;
}

.stat-number {
    margin-top: 1rem;
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-display);
}

.stat-label {
    margin-top: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-muted);
}

/* Academy Banner */
.academy-banner {
    border-radius: var(--radius-3xl);
    background-color: #111111;
    color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
    background-image: linear-gradient(rgba(17, 17, 17, 0.9), rgba(17, 17, 17, 0.9)), url('https://images.unsplash.com/photo-1521590832167-7bfc1748b565?w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

@media (min-width: 768px) {
    .academy-banner {
        padding: 6rem;
    }
}

/* Glow & Co / Rentals */
.rental-section {
    position: relative;
}

.rental-content {
    max-width: 48rem;
    margin: 0 auto;
}

.tag-list {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.tag {
    display: inline-flex;
    align-items: center;
    border-radius: var(--radius-full);
    background-color: var(--color-background);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

/* Footer (Light White Theme) */
.footer {
    background-color: #ffffff;
    color: #111111;
    padding: 6rem 0 2rem;
}

.footer-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
}

/* Footer Brand */
.footer-logo {
    max-width: 160px;
    margin-bottom: 1.5rem;
}

.footer-desc {
    font-size: 0.95rem;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 24rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.05);
    color: #111111;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--color-gold);
    color: #ffffff;
    transform: translateY(-3px);
}

.social-icon i {
    width: 20px;
    height: 20px;
}

/* Footer Columns */
.footer-col h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #111111;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    font-size: 0.95rem;
    color: rgba(0, 0, 0, 0.7);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-gold);
}

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 0.95rem;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.5;
}

.contact-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(197, 160, 89, 0.1);
    color: var(--color-gold);
    border-radius: 50%;
}

.contact-icon i {
    width: 14px;
    height: 14px;
}

.footer-contact-list a {
    color: inherit;
    transition: color 0.3s ease;
}

.footer-contact-list a:hover {
    color: var(--color-gold);
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.5);
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.footer-legal a {
    color: rgba(0, 0, 0, 0.5);
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--color-gold);
}

/* Hero Highlights */
.hero-highlights {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .hero-highlights {
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
    }
}

.highlight-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.8);
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.highlight-item i {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--color-gold);
}

/* Sub-tabs */
.sub-tab-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    background-color: transparent;
    color: var(--color-muted);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.2s ease;
}

.sub-tab-btn:hover {
    color: var(--color-foreground);
    border-color: rgba(0, 0, 0, 0.2);
}

.sub-tab-btn.active {
    background-color: rgba(0, 0, 0, 0.8);
    color: var(--color-background);
    border-color: rgba(0, 0, 0, 0.8);
}

/* Services Layout */
.services-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .services-layout {
        flex-direction: row;
        align-items: flex-start;
        gap: 3rem;
    }

    .services-sidebar {
        width: 280px;
        flex-shrink: 0;
        position: sticky;
        top: 6rem;
    }

    .services-content {
        flex: 1;
        min-width: 0;
    }

    .service-tabs {
        flex-direction: column;
        align-items: stretch;
        margin-top: 0;
    }

    .tab-btn {
        justify-content: flex-start;
        border-radius: 0.75rem;
        border: 1px solid transparent;
        background: transparent;
        padding: 1rem 1.25rem;
        font-size: 1rem;
    }

    .tab-btn:hover {
        background: var(--color-surface);
        border-color: rgba(0, 0, 0, 0.05);
    }

    .tab-btn.active {
        background: var(--color-foreground);
        color: var(--color-background);
        border-color: var(--color-foreground);
    }

    .services-grid {
        margin-top: 1.5rem;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1280px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Logos */
.nav-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.footer-logo {
    height: 80px;
    width: auto;
    border-radius: 4px;
}

/* Gallery Layout (Masonry) */
.gallery-grid {
    column-count: 2;
    column-gap: 1rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .gallery-grid {
        column-count: 3;
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        column-count: 4;
    }
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 1rem;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

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

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

/* Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    transform: scale(0.95);
    transition: transform 0.3s ease;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: white;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.1);
    transition: background 0.2s;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Google Reviews styles */
.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.review-card {
    background-color: var(--color-background);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all 0.4s var(--ease-out-expo);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.review-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    color: #ffffff;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 1rem;
}

.review-meta {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.review-name {
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 700;
}

.review-rating {
    display: flex;
    gap: 2px;
}

.review-rating i {
    width: 14px;
    height: 14px;
}

.fill-gold {
    fill: var(--color-gold);
    color: var(--color-gold);
}

.review-google-logo {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background-color: #f1f3f4;
    color: #4285F4;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 0.75rem;
    margin-left: auto;
}

.review-text {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--color-muted);
    font-style: italic;
}

.review-date {
    font-size: 0.75rem;
    color: #999999;
    margin-top: auto;
}

/* Instagram Feed Grid */
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.instagram-item {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    display: block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
}

.instagram-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #ffffff;
}

.instagram-overlay i {
    width: 2rem;
    height: 2rem;
}

.instagram-overlay .likes {
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.instagram-overlay .likes i {
    width: 1rem;
    height: 1rem;
    fill: #ffffff;
    stroke: none;
}

.instagram-item:hover img {
    transform: scale(1.05);
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

/* FAQ Split Section */
.faq-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .faq-split {
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
    }
}

.faq-header {
    position: relative;
}

@media (min-width: 1024px) {
    .faq-header {
        position: sticky;
        top: 15vh;
    }
}

/* Accordion FAQs */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: var(--color-background);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item.active {
    border-color: var(--color-gold);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    padding: 1.5rem;
    text-align: left;
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-foreground);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}

.faq-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--color-gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out-expo);
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    font-size: 0.9375rem;
    color: var(--color-muted);
    line-height: 1.6;
}

/* Services Page Styles */
.category-nav-wrapper {
    position: sticky;
    top: 70px;
    background-color: var(--color-background);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 90;
    padding: 0.75rem 0;
}

@media (min-width: 1150px) {
    .category-nav-wrapper {
        display: none;
        /* Hidden on desktop because sidebar is used */
    }
}

.category-scroll-nav {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.category-scroll-nav::-webkit-scrollbar {
    display: none;
}

.category-chip {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--color-surface);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-muted);
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-chip:hover,
.category-chip.active {
    background-color: var(--color-gold);
    color: var(--color-foreground);
    border-color: var(--color-gold);
}

.services-sidebar-nav {
    width: 260px;
    position: sticky;
    top: 110px;
    flex-shrink: 0;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
    scrollbar-width: none;
}

.services-sidebar-nav::-webkit-scrollbar {
    display: none;
}

.sticky-nav-card {
    background-color: var(--color-surface);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-2xl);
    padding: 1.5rem;
}

.sticky-nav-card h4 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-foreground);
}

.sticky-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.sidebar-link {
    display: block;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-muted);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
}

.sidebar-link:hover,
.sidebar-link.active {
    background-color: rgba(226, 196, 142, 0.1);
    color: var(--color-gold);
    font-weight: 600;
}

.service-category-section {
    padding-bottom: 3.5rem;
    margin-bottom: 3.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.category-header h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-foreground);
}

.category-header .header-icon {
    color: var(--color-gold);
    width: 1.75rem;
    height: 1.75rem;
}

.sub-category-block {
    margin-bottom: 2rem;
}

.sub-category-block h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-foreground);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
}

.service-items-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-xl);
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-item-row:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229, 9, 127, 0.08);
    border-color: rgba(229, 9, 127, 0.2);
}

.service-item-name {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-foreground);
    flex: 1;
}

.service-item-price-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-item-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-gold);
    font-family: var(--font-display);
}

.add-to-cart-btn {
    background: rgba(229, 9, 127, 0.05) !important;
    color: #E5097F !important;
    border: 1px solid rgba(229, 9, 127, 0.2) !important;
    border-radius: 50% !important;
    width: 36px !important;
    height: 36px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.add-to-cart-btn:hover {
    background: #E5097F !important;
    color: #ffffff !important;
    transform: scale(1.1) !important;
}

/* Pricing Matrices */
.table-container {
    overflow-x: auto;
    width: 100%;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-xl);
    background-color: var(--color-surface);
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.875rem;
}

.price-table th,
.price-table td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.price-table th {
    background-color: rgba(226, 196, 142, 0.05);
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--color-foreground);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

.price-table tr:last-child td {
    border-bottom: none;
}

.price-table tbody tr:hover {
    background-color: rgba(226, 196, 142, 0.02);
}

.price-table td:not(:first-child) {
    font-weight: 600;
    color: var(--color-gold);
}

/* Responsive Overrides */
@media (max-width: 1149px) {
    .hidden-tablet-mobile {
        display: none !important;
    }
}

/* Shopping Cart Widget & Drawer Styles */
.cart-sticky-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--color-gold);
    color: var(--color-foreground);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-full);
    box-shadow: 0 10px 30px rgba(226, 196, 142, 0.3);
    cursor: pointer;
    z-index: 99;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform: scale(0.9);
    opacity: 0;
    pointer-events: none;
    display: none;
}

.cart-sticky-widget.show {
    display: block;
    transform: scale(1);
    opacity: 1;
    pointer-events: auto;
}

.cart-sticky-widget:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(226, 196, 142, 0.4);
}

.cart-widget-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
}

.cart-widget-content i {
    width: 1.25rem;
    height: 1.25rem;
}

.cart-count {
    background-color: var(--color-foreground);
    color: var(--color-gold);
    font-size: 0.75rem;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 800;
}

/* Cart Drawer */
.cart-drawer {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    max-width: 100vw;
    height: 100vh;
    background-color: var(--color-background);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
    z-index: 200;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer.active {
    right: 0;
}

.cart-drawer-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--color-surface);
}

.cart-drawer-header h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
}

.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.empty-cart-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 5rem;
    color: var(--color-muted);
}

.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: var(--color-surface);
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: var(--radius-xl);
}

.cart-item-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
    padding-right: 1rem;
}

.cart-item-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-foreground);
    line-height: 1.4;
}

.cart-item-price {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-gold);
}

.cart-item-remove {
    background: transparent;
    border: none;
    color: var(--color-muted);
    cursor: pointer;
    padding: 0.25rem;
    transition: color 0.2s ease;
}

.cart-item-remove:hover {
    color: #ef4444;
}

.cart-drawer-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    background-color: var(--color-surface);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.125rem;
    font-weight: 700;
}

.cart-total-val {
    color: var(--color-gold);
}

.btn-whatsapp-cart {
    width: 100%;
    background-color: #25D366;
    color: #ffffff;
    border: none;
    padding: 1rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-whatsapp-cart:hover {
    background-color: #20BA56;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(37, 211, 102, 0.5);
}

.cart-drawer-backdrop {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 199;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.cart-drawer-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

/* Add to Cart Button Interactions */
.add-to-cart-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background-color: var(--color-surface);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--color-foreground);
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.add-to-cart-btn:hover {
    background-color: var(--color-gold);
    color: var(--color-foreground);
    border-color: var(--color-gold);
    transform: scale(1.05);
}

.add-to-cart-btn.added {
    background-color: var(--color-gold);
    color: var(--color-foreground);
    border-color: var(--color-gold);
}

.add-to-cart-btn.added i {
    transform: rotate(45deg);
    color: var(--color-foreground);
}

.btn-variant {
    width: auto;
    height: auto;
    padding: 0.35rem 0.65rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.btn-variant.added i {
    transform: rotate(45deg);
}

/* Align Action Area in rows */
.service-item-action {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.variant-btn-group {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

/* All Services Button & Hover Styles */
.btn-all-services {
    border: 1px solid rgba(0, 0, 0, 0.15);
    background: transparent;
    color: var(--color-foreground);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-all-services:hover {
    background: var(--color-gold);
    color: var(--color-black) !important;
    border-color: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 6.5rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-whatsapp:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    color: white;
}

@media (max-width: 767px) {
    .floating-whatsapp {
        display: none !important;
    }
}

/* Floating Cart Bar (Cart Logo Widget) */
.floating-cart-bar {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    color: #111111;
    border-radius: 100px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0,0,0,0.05);
    padding: 0.75rem 1.5rem 0.75rem 1.25rem;
    display: flex; /* Will be toggled via JS */
    flex-direction: row;
    align-items: center;
    gap: 1.25rem;
    z-index: 1000;
    width: auto;
    animation: slideUpWidget 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-cart-bar:hover {
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

@keyframes slideUpWidget {
    from { opacity: 0; transform: translate(-50%, 30px) scale(0.95); }
    to { opacity: 1; transform: translate(-50%, 0) scale(1); }
}

.cart-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(229, 9, 127, 0.05);
    padding: 0.5rem;
    border-radius: 50%;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #E5097F;
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid #ffffff;
}

.cart-info {
    display: flex;
    flex-direction: column;
}

.cart-label {
    font-size: 0.65rem;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: 0.1rem;
}

.cart-total {
    font-size: 1.2rem;
    font-weight: 700;
    color: #E5097F;
    font-family: var(--font-display);
    line-height: 1.1;
}

@media (max-width: 768px) {
    .floating-cart-bar {
        bottom: 1.5rem;
        padding: 0.6rem 1.25rem 0.6rem 1rem;
    }
}

/* Signature Services Grid */
.signature-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .signature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .signature-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.signature-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 300px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    color: #ffffff;
}

.signature-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(229, 9, 127, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), inset 0 0 0 1px rgba(229, 9, 127, 0.2);
}

.signature-bg-icon {
    position: absolute;
    right: -2rem;
    bottom: -2rem;
    width: 200px;
    height: 200px;
    color: rgba(255, 255, 255, 0.02);
    transition: all 0.5s ease;
    z-index: 0;
}

.signature-card:hover .signature-bg-icon {
    color: rgba(229, 9, 127, 0.05);
    transform: scale(1.1) rotate(-10deg);
}

.signature-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.signature-top .icon-wrap {
    width: 50px;
    height: 50px;
    background: rgba(229, 9, 127, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--color-gold);
    transition: all 0.3s ease;
}

.signature-card:hover .icon-wrap {
    background: #E5097F;
    color: #ffffff;
    transform: scale(1.1);
}

.signature-top .signature-icon {
    width: 24px;
    height: 24px;
}

.signature-title {
    font-size: 1.5rem;
    font-weight: 600;
    font-family: var(--font-display);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.signature-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.signature-link {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-gold);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.signature-card:hover .signature-link {
    color: #ffffff;
    gap: 1rem;
}

.signature-link i {
    width: 16px;
    height: 16px;
    transition: all 0.3s ease;
}

/* Cart Drawer Styles */
.cart-drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-drawer-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 100%;
    max-width: 400px;
    background: #ffffff;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
}

.cart-drawer.active {
    transform: translateX(0);
}

.cart-drawer-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #fdfdfd;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: var(--radius-lg);
}

.cart-item-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.cart-item-title {
    font-weight: 600;
    color: #111;
}

.cart-item-price {
    color: var(--color-gold);
    font-weight: 500;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--color-muted);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-remove:hover {
    background: rgba(229, 9, 127, 0.1);
    color: #E5097F;
}

.cart-drawer-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.05);
    background: #fdfdfd;
}