/* ===================================
   BEHOLDEN VISUALS - CSS
   Design inspired by Norman & Young
   =================================== */

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Beholden Visuals Brand Colors */
    --beholden-black: #2E2927;
    --rich-gold: #BC9A52;
    --elegant-cream: #F2E8DB;
    --luxury-gold: #A98845;
    --white: #ffffff;
    --dark-overlay: rgba(46, 41, 39, 0.5);
    --gold-vignette: rgba(188, 154, 82, 0.2);

    /* Typography */
    --font-display: 'Cinzel', serif;
    --font-body: 'Open Sans', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    /* Prevent layout jump when header becomes fixed */
    padding-top: 97px;
    /* 81px logo + 0.5rem top/bottom padding approx */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ===== HEADER / NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 0.5rem 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: padding 0.3s ease, box-shadow 0.3s ease;
}

/* Scrolled state - smaller header */
.header.scrolled {
    padding: 0.25rem 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    position: relative;
    height: 81px;
    transition: height 0.3s ease;
}

.header.scrolled .logo {
    height: 49px;
}

.logo-image {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: auto;
    display: block;
    transition: opacity 0.3s ease;

    /* Hardware acceleration to prevent glitching/flicker during resize */
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Full logo - visible by default */
.logo-full {
    opacity: 1;
    z-index: 2;
    /* Entrance animation */
    animation: slideInFromRight 1s ease-out;
}

/* Compact logo - hidden by default */
.logo-compact {
    opacity: 0;
    z-index: 1;
}

/* When scrolled - swap opacity */
.header.scrolled .logo-full {
    opacity: 0;
    pointer-events: none;
    animation: none;
}

.header.scrolled .logo-compact {
    opacity: 1;
    pointer-events: auto;
    height: 90%;
    top: 5%;
}

/* Navigation & Hamburger */
.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
    animation: slideInFromRight 1s ease-out 0.2s backwards;
}

.hamburger-menu {
    display: none;
    cursor: pointer;
    background: transparent;
    border: none;
    z-index: 1001;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--beholden-black);
    transition: all 0.3s ease-in-out;
}

/* Animate Hamburger to X */
.hamburger-menu.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-menu.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav-link {
    color: var(--beholden-black);
    text-decoration: none;
    font-weight: 900;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--rich-gold);
}

.nav-link-cta {
    background: var(--rich-gold);
    padding: 0.75rem 2rem;
    border-radius: 6px;
    color: #ffffff;
    font-weight: 900;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.nav-link-cta:hover {
    background: var(--luxury-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(188, 154, 82, 0.3);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--dark-overlay);
    z-index: 1;
}

/* Gold Vignette Effect */
.hero-vignette {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: inset 0 0 200px 60px var(--gold-vignette);
    z-index: 2;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 3;
}

.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
}

.hero-subtitle {
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: var(--rich-gold);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
    text-shadow:
        2px 2px 8px rgba(0, 0, 0, 0.9),
        0 0 20px rgba(0, 0, 0, 0.8);
    background: rgba(0, 0, 0, 0.4);
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    display: inline-block;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    text-shadow:
        3px 3px 12px rgba(0, 0, 0, 0.9),
        0 0 25px rgba(0, 0, 0, 0.7);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: var(--spacing-md);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--rich-gold);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--luxury-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(188, 154, 82, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--beholden-black);
}

.btn-gold {
    background: var(--rich-gold);
    color: var(--white);
}

.btn-gold:hover {
    background: var(--luxury-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(188, 154, 82, 0.4);
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

/* ===== SERVICES SECTION ===== */
.services {
    position: relative;
    padding: var(--spacing-xl) 0;
    background: var(--elegant-cream);
    overflow: hidden;
}

/* Hexagonal Background Pattern */
.hexagon-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 70px, var(--beholden-black) 70px, var(--beholden-black) 72px),
        repeating-linear-gradient(60deg, transparent, transparent 70px, var(--beholden-black) 70px, var(--beholden-black) 72px),
        repeating-linear-gradient(120deg, transparent, transparent 70px, var(--beholden-black) 70px, var(--beholden-black) 72px);
    pointer-events: none;
}

.services-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--beholden-black);
    margin-bottom: var(--spacing-sm);
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    position: relative;
    z-index: 1;
}

.service-content {
    padding: var(--spacing-md);
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--beholden-black);
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
}

.service-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: var(--spacing-md);
}

.service-showcase {
    position: relative;
}

.service-image-wrapper {
    position: relative;
    height: 400px;
    background: url('service_showcase.png') center/cover no-repeat;
    border-radius: 8px;
    overflow: hidden;
}

.service-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(46, 41, 39, 0.8), rgba(46, 41, 39, 0.6));
}

.service-image-text {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--rich-gold);
    text-align: center;
    line-height: 1.2;
    letter-spacing: 2px;
}

/* ===== VALUE PROPOSITION SECTION ===== */
.value-prop {
    background: var(--elegant-cream);
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

.value-prop-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Custom slide-up animation for value prop */
.value-prop-content {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-prop-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.value-prop-text {
    font-size: 1.3rem;
    line-height: 1.9;
    color: var(--beholden-black);
    font-weight: 400;
}

.value-prop-text strong {
    color: var(--rich-gold);
    font-weight: 700;
}



/* ===== DETAILED SERVICES GRID SECTION ===== */
.detailed-services {
    position: relative;
    padding: var(--spacing-lg) 0;
    background: var(--white);
    overflow: hidden;
}

.detailed-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.service-card {
    position: relative;
    background: var(--white);
    border: 2px solid rgba(46, 41, 39, 0.1);
    padding: 1.5rem 1.25rem;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 180px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--rich-gold), var(--luxury-gold));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(188, 154, 82, 0.2);
    border-color: var(--rich-gold);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card-title {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--beholden-black);
    margin-bottom: 0.75rem;
    letter-spacing: 1px;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(46, 41, 39, 0.1);
}

.service-card-description {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.service-card-arrow {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--beholden-black), #3d3632);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.service-card:hover .service-card-arrow {
    background: linear-gradient(135deg, var(--rich-gold), var(--luxury-gold));
    transform: scale(1.15) rotate(45deg);
    box-shadow: 0 4px 16px rgba(188, 154, 82, 0.4);
}

/* Services Section Title & Subtitle */
.services-title {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--beholden-black);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: var(--spacing-lg);
    font-weight: 400;
}

/* Services CTA */
.services-cta {
    text-align: center;
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-md);
}

/* Section Transition Dividers */
.detailed-services::after,
.why-choose-us::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--rich-gold), transparent);
    opacity: 0.5;
}



/* ===== WHY CHOOSE US SECTION ===== */
.why-choose-us {
    position: relative;
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--beholden-black), #3d3632);
    color: var(--white);
    overflow: hidden;
}

.why-choose-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.why-choose-vignette {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: inset 0 0 150px 40px var(--gold-vignette);
    z-index: 2;
    pointer-events: none;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    position: relative;
    z-index: 3;
}

.why-item {
    text-align: center;
    padding: var(--spacing-md);
}

.why-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.why-item h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.why-item p {
    font-size: 1.05rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* ===== STATS SECTION ===== */
.stats-section {
    position: relative;
    padding: var(--spacing-xl) 0;
    background: var(--elegant-cream);
    overflow: hidden;
}

.stats-section .section-title {
    text-align: center;
    margin-bottom: var(--spacing-sm);
}

.stats-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: var(--spacing-lg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.stat-card {
    background: var(--white);
    padding: var(--spacing-lg) var(--spacing-md);
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(188, 154, 82, 0.2);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--rich-gold);
    line-height: 1;
    margin-bottom: var(--spacing-sm);
}

.stat-label {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--beholden-black);
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

/* ===== CTA SECTION ===== */
.cta-section {
    position: relative;
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--beholden-black), #3d3632);
    color: var(--white);
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.cta-vignette {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: inset 0 0 200px 60px var(--gold-vignette);
    z-index: 2;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--white);
    opacity: 1;
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    color: var(--white);
    opacity: 1;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.cta-info {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    opacity: 1;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--beholden-black);
    color: var(--white);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.footer-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.5px;
}

.footer-text {
    opacity: 0.85;
    line-height: 1.6;
}

.footer-heading {
    font-family: var(--font-display);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.footer-links,
.footer-contact {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.5rem;
}

.footer-links a,
.footer-contact a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    opacity: 1;
    color: var(--rich-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 0.9rem;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet */
/* Tablet & Mobile Navigation */
@media (max-width: 900px) {

    /* Tighten gap for intermediate screens */
    .nav {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .hamburger-menu {
        display: block;
    }

    .nav {
        display: flex;
        /* Ensure it's display flex for the column layout */
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 100%;
        /* Full width on mobile for better usability */
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        padding-top: 60px;
        /* Space for the header */
    }

    .nav.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.5rem;
        /* Larger touch targets */
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .detailed-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .section-title {
        font-size: 2rem;
    }

    .service-title {
        font-size: 1.5rem;
    }

    /* Removed the display: none for nav since we use hamburger now */

    .logo-image {
        height: 50px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .detailed-services-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Scroll Reveal Animation Classes */
.reveal-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger Delays for Why Choose Us items */
/* Exit State (Reverse Order: 3 -> 2 -> 1) */
.why-item:nth-child(1) {
    transition-delay: 0.5s;
}

.why-item:nth-child(2) {
    transition-delay: 0.3s;
}

.why-item:nth-child(3) {
    transition-delay: 0.1s;
}

/* Enter State (Normal Order: 1 -> 2 -> 3) */
.why-item.visible:nth-child(1) {
    transition-delay: 0.1s;
}

.why-item.visible:nth-child(2) {
    transition-delay: 0.3s;
}

.why-item.visible:nth-child(3) {
    transition-delay: 0.5s;
}

/* Slide In From Right (Reveal Left) */
.reveal-left {
    opacity: 0;
    transform: translateX(100px);
    transition: all 1s cubic-bezier(0.2, 1, 0.3, 1);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Stats Staggering */
.stats-subtitle.reveal-left {
    transition-delay: 0.2s;
}

/* 3D Flip Reveal */
.reveal-flip {
    opacity: 0;
    transform: perspective(1000px) rotateY(-90deg);
    transition: all 0.3s ease-out;
    /* Fast exit/reset */
}

.reveal-flip.visible {
    opacity: 1;
    transform: perspective(1000px) rotateY(0);
    transition: all 1.0s ease-out;
    /* Smooth enter */
}

/* Stagger Delays for Stat Cards */
/* Enter State (Normal Order) */
.stat-card.visible:nth-child(1) {
    transition-delay: 0.1s;
}

.stat-card.visible:nth-child(2) {
    transition-delay: 0.3s;
}

.stat-card.visible:nth-child(3) {
    transition-delay: 0.5s;
}

.stat-card.visible:nth-child(4) {
    transition-delay: 0.7s;
}

/* Service Card Reveal Animation */
.reveal-card {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Delays for Service Cards */
.reveal-card:nth-child(1).visible {
    transition-delay: 0.1s;
}

.reveal-card:nth-child(2).visible {
    transition-delay: 0.15s;
}

.reveal-card:nth-child(3).visible {
    transition-delay: 0.2s;
}

.reveal-card:nth-child(4).visible {
    transition-delay: 0.25s;
}

.reveal-card:nth-child(5).visible {
    transition-delay: 0.3s;
}

.reveal-card:nth-child(6).visible {
    transition-delay: 0.35s;
}

.reveal-card:nth-child(7).visible {
    transition-delay: 0.4s;
}

.reveal-card:nth-child(8).visible {
    transition-delay: 0.45s;
}

.reveal-card:nth-child(9).visible {
    transition-delay: 0.5s;
}

.reveal-card:nth-child(10).visible {
    transition-delay: 0.55s;
}

/* ===== PRICING PAGE STYLES ===== */

/* Pricing Hero */
.pricing-hero {
    background: var(--elegant-cream);
    padding: 20px 0 var(--spacing-md) 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.pricing-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.pricing-hero-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--beholden-black);
    margin-bottom: 1rem;
}

.pricing-hero-subtitle {
    font-size: 1.1rem;
    color: #666;
    font-weight: 600;
    margin-bottom: 1rem;
}

.pricing-hero-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* Bundle Packages Section */
.pricing-bundles {
    padding: calc(var(--spacing-xl) - 30px) 0 var(--spacing-xl) 0;
    background: var(--white);
}

.pricing-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: var(--spacing-lg);
    font-weight: 400;
}

.bundles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.bundle-card {
    background: var(--white);
    border-radius: 8px;
    padding: var(--spacing-md);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--rich-gold);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    /* Flexbox for equal height alignment */
    display: flex;
    flex-direction: column;
}

.bundle-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.bundle-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Featured Bundle */
.bundle-featured {
    border-left: 4px solid var(--luxury-gold);
    background: linear-gradient(135deg, #fffbf5 0%, var(--white) 100%);
}

.bundle-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--rich-gold), var(--luxury-gold));
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(188, 154, 82, 0.3);
}

.bundle-header {
    text-align: center;
    margin-bottom: var(--spacing-sm);
    padding-top: 0.5rem;
}

.bundle-name {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--beholden-black);
    margin-bottom: 0.5rem;
    letter-spacing: 3px;
}

.bundle-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #666;
    font-style: italic;
    font-weight: 400;
}

.bundle-description {
    margin: var(--spacing-md) 0;
    padding: 0;
    flex-grow: 1;
    /* Push price and button to bottom */
}

.bundle-description p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--beholden-black);
    margin: 0;
}

.bundle-price-simple {
    text-align: center;
    margin: var(--spacing-md) 0;
    padding: var(--spacing-sm) 0;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.bundle-price-simple .price-amount {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--rich-gold);
}

.bundle-price-simple .price-tax {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--rich-gold);
}

.bundle-price {
    text-align: center;
    margin: var(--spacing-sm) 0;
    padding: var(--spacing-sm);
    background: var(--elegant-cream);
    border-radius: 6px;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--rich-gold);
}

.bundle-features {
    margin: var(--spacing-sm) 0;
    padding: var(--spacing-sm) 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.feature-item {
    padding: 0.4rem 0;
    color: var(--beholden-black);
    font-size: 0.9rem;
    line-height: 1.5;
}

.feature-item::before {
    content: '✓';
    color: var(--rich-gold);
    font-weight: 700;
    margin-right: 0.75rem;
}

.bundle-pricing-tiers {
    margin: var(--spacing-sm) 0;
}

.tier-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--beholden-black);
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tier-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.35rem 0;
    font-size: 0.85rem;
    border-bottom: 1px solid #f5f5f5;
}

.tier-item:last-child {
    border-bottom: none;
}

.tier-sqft {
    color: #666;
}

.tier-price {
    font-weight: 700;
    color: var(--beholden-black);
}

.bundle-cta {
    width: 100%;
    text-align: center;
    margin-top: var(--spacing-sm);
    padding: 0.75rem;
    font-size: 0.95rem;
}

/* A La Carte Section */
.pricing-alacarte {
    padding: var(--spacing-xl) 0;
    background: var(--elegant-cream);
    position: relative;
    overflow: hidden;
}

.alacarte-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.alacarte-card {
    background: var(--white);
    border-radius: 6px;
    padding: var(--spacing-md);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.alacarte-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.alacarte-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.alacarte-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--beholden-black);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.alacarte-price-range {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--rich-gold);
    margin-bottom: var(--spacing-sm);
}

.alacarte-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
}

.alacarte-options {
    margin-top: var(--spacing-sm);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.alacarte-option-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: var(--white);
    border: 2px solid var(--elegant-cream);
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.alacarte-option-btn:hover {
    border-color: var(--rich-gold);
    background: var(--elegant-cream);
    transform: translateX(5px);
}

.alacarte-option-btn .option-name {
    font-size: 0.9rem;
    color: var(--beholden-black);
    font-weight: 600;
}

.alacarte-option-btn .option-price {
    font-size: 1rem;
    color: var(--rich-gold);
    font-weight: 700;
}

.alacarte-option-btn.special {
    background: var(--elegant-cream);
    border-color: var(--rich-gold);
}

.alacarte-option-btn.special .option-price {
    color: var(--beholden-black);
    font-size: 0.85rem;
}

.alacarte-details {
    list-style: none;
    padding: 0;
    margin: var(--spacing-sm) 0 0 0;
    font-size: 0.85rem;
    color: #666;
}

.alacarte-details li {
    padding: 0.4rem 0;
    border-bottom: 1px solid #f5f5f5;
}

.alacarte-details li:last-child {
    border-bottom: none;
}

/* Add-Ons Section */
.pricing-addons {
    padding: var(--spacing-lg) 0;
    background: var(--white);
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
}

.addon-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--elegant-cream);
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.addon-item:hover {
    background: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.addon-name {
    font-size: 0.9rem;
    color: var(--beholden-black);
    font-weight: 600;
}

.addon-price {
    font-weight: 700;
    color: var(--rich-gold);
    font-size: 1rem;
}

/* Pricing CTA Section */
.pricing-cta-section {
    background: linear-gradient(135deg, var(--beholden-black), #3d3632);
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .bundles-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .alacarte-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .pricing-hero-title {
        font-size: 1.8rem;
    }

    .pricing-hero {
        padding: calc(var(--spacing-md) + 80px) 0 var(--spacing-md) 0;
    }

    .pricing-hero-description {
        font-size: 0.95rem;
    }

    .bundle-name {
        font-size: 1.5rem;
    }

    .price-amount {
        font-size: 2rem;
    }

    .alacarte-grid {
        grid-template-columns: 1fr;
    }

    .addons-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== BOOKING PAGE STYLES ===== */

/* Booking Hero */
.booking-hero {
    background: var(--elegant-cream);
    padding: calc(var(--spacing-md) + 80px) 0 var(--spacing-md) 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.booking-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.booking-hero-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--beholden-black);
    margin-bottom: 1rem;
}

.booking-hero-subtitle {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* Booking Scheduler Section */
.booking-scheduler {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.scheduler-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Acuity Placeholder */
.acuity-placeholder {
    background: var(--elegant-cream);
    border: 2px dashed var(--rich-gold);
    border-radius: 12px;
    padding: var(--spacing-lg);
    text-align: center;
}

.placeholder-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--beholden-black);
    margin-bottom: var(--spacing-md);
}

.placeholder-content p {
    font-size: 1rem;
    color: #666;
    margin-bottom: var(--spacing-sm);
}

.placeholder-content ol {
    text-align: left;
    max-width: 500px;
    margin: var(--spacing-md) auto;
    color: var(--beholden-black);
    line-height: 1.8;
}

.placeholder-content ol li {
    margin-bottom: 0.5rem;
}

.placeholder-content code {
    background: var(--white);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: var(--rich-gold);
}

.placeholder-content a {
    color: var(--rich-gold);
    text-decoration: underline;
    font-weight: 600;
}

.placeholder-content .temp-cta {
    margin-top: var(--spacing-md);
    font-size: 1.1rem;
    font-weight: 600;
}

/* Booking Info Section */
.booking-info {
    padding: var(--spacing-xl) 0;
    background: var(--elegant-cream);
}

.booking-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-md);
}

.info-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--rich-gold);
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.info-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--beholden-black);
    margin-bottom: var(--spacing-sm);
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    padding: 0.5rem 0;
    line-height: 1.7;
    color: var(--beholden-black);
    border-bottom: 1px solid #f5f5f5;
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list strong {
    color: var(--rich-gold);
}

.info-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: var(--spacing-sm);
}

.info-description a {
    color: var(--rich-gold);
    font-weight: 600;
    text-decoration: underline;
}

/* Responsive: Booking Page */
@media (max-width: 768px) {
    .booking-hero-title {
        font-size: 1.8rem;
    }

    .booking-hero {
        padding: calc(var(--spacing-sm) + 80px) 0 var(--spacing-sm) 0;
    }

    .booking-info-grid {
        grid-template-columns: 1fr;
    }
}