:root {
    /* Brand Colors */
    --deep-orange: #E8471A;
    --hot-pink: #F26B8A;
    --light-pink: #FAB8C4;
    --amber: #F5A623;
    --blush-white: #FDF0F5;
    --deep-plum: #3D1A2E;
    --white: #FFFFFF;
    --grey-pending: #DDDDDD;

    /* Fonts */
    --f-heading: 'Nunito', sans-serif;
    --f-subheading: 'Lato', sans-serif;
    --f-body: 'Poppins', sans-serif;
}

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

body {
    background-color: var(--blush-white);
    color: var(--deep-plum);
    font-family: var(--f-body);
    font-weight: 200;
    line-height: 1.5;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--f-heading);
    text-wrap: balance;
    margin-bottom: 1rem;
}

h1 {
    font-family: var(--f-heading);
    font-size: 48px;
    font-weight: 400;
    text-transform: capitalize;
}

/* Section Title Style */
h2, .section-title {
    font-family: var(--f-subheading);
    font-size: 24px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2vw;
    margin-bottom: 2rem;
    color: var(--deep-plum);
}

.booking-step-title {
    font-family: var(--f-subheading);
    font-size: 24px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1.5vw; /* Slightly reduced for better fit in form */
    margin-bottom: 1.5rem;
    color: var(--deep-plum);
    text-align: center;
}

h3 {
    font-family: var(--f-heading);
    font-size: 24px;
}

/* Page Title Style */
.page-title {
    font-family: var(--f-body);
    font-size: 36px;
    font-weight: 700;
    color: var(--deep-plum);
}

.page-title span {
    color: var(--deep-orange);
    font-style: italic;
}

p {
    font-family: var(--f-body);
    font-size: 16px;
    font-weight: 200;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.subtitle-label {
    font-family: var(--f-heading);
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--hot-pink);
    display: block;
    margin-bottom: 0.5rem;
}

.price-text {
    font-family: var(--f-body);
    font-size: 32px;
    font-weight: 700;
    color: var(--deep-plum);
}

.client-text {
    font-family: var(--f-subheading);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.4;
    transition: all 0.3s ease;
}

.client-text:hover {
    opacity: 1;
    color: var(--deep-orange);
}

.text-balance {
    text-wrap: balance;
}

.text-pretty {
    text-wrap: pretty;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.max-w-400 {
    max-width: 400px;
}

.max-w-800 {
    max-width: 800px;
}

.max-w-1000 {
    max-width: 1000px;
}

.max-w-prose {
    max-width: 65ch;
}

.max-w-narrow {
    max-width: 500px;
}

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

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-narrow {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-form {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.align-center {
    align-items: center;
}

.align-start {
    align-items: flex-start;
}

.gap-1 { gap: 1rem; }
.gap-2 { gap: 2rem; }
.gap-3 { gap: 3rem; }
.gap-4 { gap: 4rem; }

.grid {
    display: grid;
}

.grid-cols-1 { grid-template-columns: 1fr; }
.grid-cols-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

.w-full { width: 100%; }
.h-full { height: 100%; }
.object-cover { object-fit: cover; }

.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { top: 0; left: 0; right: 0; bottom: 0; }
.sticky { position: sticky; }
.top-120 { top: 120px; }
.z-1 { z-index: 1; }
.z-5 { z-index: 5; }
.z-10 { z-index: 10; }

.flex-1 { flex: 1; }
.flex-1-5 { flex: 1.5; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-stretch { align-items: stretch; }
.justify-center { justify-content: center; }
.min-w-100 { min-width: 100px; }
.min-w-300 { min-width: 300px; }

.overflow-hidden { overflow: hidden; }
.display-none { display: none; }

.p-1-5 { padding: 1.15rem; }
.p-2 { padding: 1.5rem; }
.p-3 { padding: 2rem; }
.px-3 { padding-left: 1rem; padding-right: 1rem; }

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-8 { margin-bottom: 4rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-8 { margin-top: 4rem; }

.mr-1 { margin-right: 0.5rem; }
.mr-2 { margin-right: 1rem; }

.pb-0 { padding-bottom: 0 !important; }
.pb-2 { padding-bottom: 1rem; }
.pb-8 { padding-bottom: 4rem !important; }
.pt-0 { padding-top: 0 !important; }
.pt-8 { padding-top: 4rem !important; }

.font-11 { font-size: 11px; }
.font-12 { font-size: 12px; }
.font-13 { font-size: 13px; }
.font-14 { font-size: 14px; }
.font-16 { font-size: 16px; }
.font-18 { font-size: 18px; }
.font-1-2 { font-size: 1.2rem; }
.text-18 { font-size: 18px; }
.text-3rem { font-size: 3rem; }

.font-normal { font-weight: 400; }
.font-bold { font-weight: bold; }
.tracking-2 { letter-spacing: 2px; }
.text-uppercase { text-transform: uppercase; }

.rounded-10 { border-radius: 10px; }
.rounded-12 { border-radius: 12px; }
.rounded-15 { border-radius: 15px; }

.shadow-light { box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.shadow-xlight { box-shadow: 0 10px 20px rgba(0,0,0,0.05); }

.bg-white { background-color: var(--white); }
.bg-blush-white { background-color: var(--blush-white); }
.bg-pink { background-color: var(--light-pink); }
.bg-black { background-color: #000; }

.border-t-2 { border-top-width: 2px; }
.border-dashed { border-style: dashed; }
.border-light-pink { border-color: var(--light-pink); }

.max-w-400 { max-width: 400px; }
.container-xsmall { max-width: 400px; margin-left: auto; margin-right: auto; }

.text-font-heading { font-family: var(--f-heading); }
.text-font-subheading { font-family: var(--f-subheading); }

@media (min-width: 768px) {
    .md\:text-left { text-align: left !important; }
    .md\:text-right { text-align: right !important; }
    .md\:flex-row { flex-direction: row !important; }
}

/* Mobile Fixes for Buttons and Centering */
@media (max-width: 767px) {
    .hero-content {
        text-align: center !important;
    }
    
    .hero-content .flex {
        justify-content: center !important;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .btn-orange, .btn-outline {
        padding: 8px 20px;
        font-size: 14px;
        width: 100%;
        max-width: 280px;
    }
    
    .hero-flex {
        padding: 2rem 1.5rem 4rem;
        gap: 2rem;
    }
}

/* Section Specific */
.hero-section {
    background: var(--deep-plum);
    color: var(--blush-white);
    position: relative;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--deep-orange);
    opacity: 0.15;
    border-radius: 50%;
    top: -100px;
    right: -100px;
    filter: blur(100px);
}

.hero-img-container {
    border: 10px solid rgba(250, 184, 196, 0.2);
    border-radius: 30px;
    overflow: hidden;
    display: inline-block;
}

.hero-img-container img {
    max-width: 100%;
    display: block;
    filter: brightness(0.9);
}

.demo-reel-video {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    background: #000;
    aspect-ratio: 16/9;
    position: relative;
}

.demo-reel-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

.video-badge {
    background: var(--deep-orange);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Booking & Form General */
.booking-input, .contact-input {
    width: 100%;
    border: 2px solid var(--light-pink);
    border-radius: 10px;
    font-family: var(--f-body);
    transition: border-color 0.3s ease;
    padding: 10px 12px;
    margin-bottom: 1rem;
    font-size: 14px;
}

.form-input:focus, .booking-input:focus, .contact-input:focus {
    outline: none;
    border-color: var(--deep-orange);
}

.label-bold {
    display: block;
    margin-bottom: 0.25rem;
    font-weight: bold;
    font-size: 14px;
}

.label-pink-small {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--hot-pink);
}

.textarea-no-resize {
    resize: none;
}

.textarea-vertical {
    resize: vertical;
}

.pricing-card {
    padding: 0;
    overflow: visible;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(250, 184, 196, 0.3);
    background: var(--white);
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(61, 26, 46, 0.12);
    border-color: var(--light-pink);
}

.pricing-card.popular {
    border: 3px solid var(--deep-orange);
    position: relative;
    transform: scale(1.03);
    z-index: 10;
    box-shadow: 0 10px 30px rgba(232, 71, 26, 0.15);
}

@media (max-width: 767px) {
    .pricing-card.popular {
        transform: scale(1);
        margin: 1rem 0;
    }
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 20px 50px rgba(232, 71, 26, 0.25);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--deep-orange);
    color: white;
    padding: 4px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 12px;
    z-index: 20;
    white-space: nowrap;
}

.pricing-card-img {
    height: 180px;
    position: relative;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

@media (max-width: 767px) {
    .pricing-card-img {
        height: 160px;
    }
}

.pricing-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay-dark {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    font-family: var(--f-body);
    color: var(--deep-plum);
    margin-bottom: 0.5rem;
    text-align: center;
}

.price-sub {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.6;
}

.pricing-list {
    list-style: none;
    font-size: 14px;
    margin-bottom: 1.25rem;
    flex: 1;
}

.pricing-list li {
    margin-bottom: 4px;
    display: flex;
    align-items: flex-start;
}

.pricing-list li i {
    color: var(--deep-orange);
    margin-right: 10px;
    margin-top: 3px;
}

.booth-preview-card {
    padding: 1rem;
    border: 2px solid var(--light-pink);
    background: var(--blush-white);
}

.total-price-box {
    text-align: center;
    background: var(--deep-orange);
    border-radius: 15px;
    padding: 1.5rem;
    color: var(--white);
}

.total-price-amount {
    font-size: 48px;
    font-weight: 700;
    font-family: var(--f-body);
}

/* Calendar */
.calendar-container {
    user-select: none;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    text-align: center;
    background: var(--white);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid var(--light-pink);
}

.calendar-day-head {
    font-weight: bold;
    font-size: 11px;
    padding: 5px 0;
    color: var(--hot-pink);
    text-transform: uppercase;
}

.calendar-day {
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blush-white);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    border: 1px solid transparent;
}

.calendar-day:hover {
    background: var(--light-pink);
}

.calendar-day.selected {
    background: var(--deep-orange);
    color: white;
}

.calendar-day.unavailable {
    background: #DDDDDD;
    color: #999;
    text-decoration: line-through;
    cursor: not-allowed;
}

.booking-summary-box {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 10px;
    border: 1px solid var(--light-pink);
}

/* Success Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(61, 26, 46, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 1rem;
}

.modal-content {
    max-width: 450px;
    width: 100%;
    text-align: center;
    border-bottom: 5px solid var(--deep-orange);
}

.modal-icon-container {
    width: 80px;
    height: 80px;
    background: var(--light-pink);
    color: var(--deep-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 3rem;
}

/* Contact */
.success-banner {
    background: var(--blush-white);
    color: var(--deep-plum);
    border-left: 4px solid var(--deep-orange);
    padding: 1.5rem;
    margin-top: 1rem;
    display: none;
}

.map-placeholder {
    background: #e0e0e0;
    border-radius: 20px;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #666;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--f-body);
}

.hours-table th {
    background: var(--deep-orange);
    color: white;
    text-align: left;
    padding: 12px;
}

.hours-table td {
    padding: 12px;
}

.hours-table tr:nth-child(even) {
    background: var(--blush-white);
}

.hours-table tr:nth-child(odd) {
    background: white;
}

/* Utility Helpers */
.italic-orange {
    font-style: italic;
    color: var(--deep-orange);
}

.text-plum { color: var(--deep-plum); }
.text-orange { color: var(--deep-orange); }
.text-pink { color: var(--hot-pink); }
.text-white { color: var(--white); }

.opacity-60 { opacity: 0.6; }
.opacity-80 { opacity: 0.8; }

.aspect-video { aspect-ratio: 16/9; }
.aspect-portrait { aspect-ratio: 9/16; }
.aspect-square { aspect-ratio: 1/1; }
.aspect-bag { aspect-ratio: 4/5; }

.section-label-center {
    text-align: center;
    margin-bottom: 3rem;
}

.hero-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 5;
    padding: 4rem 0 8rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title-large {
    font-size: 36px;
}

.section-title-xlarge {
    font-size: 42px;
}

.wavy-bottom {
    position: absolute;
    bottom: -5px;
    left: 0;
    fill: var(--blush-white);
    z-index: 10;
}

.wavy-bottom-light {
    position: absolute;
    bottom: -5px;
    left: 0;
    fill: var(--light-pink);
    z-index: 10;
}

.wavy-bottom-blush {
    position: absolute;
    bottom: -5px;
    left: 0;
    fill: var(--blush-white);
    z-index: 10;
}

.wavy-bottom-white {
    position: absolute;
    bottom: -5px;
    left: 0;
    fill: var(--white);
    z-index: 10;
}

.rotate-180 { transform: rotate(180deg); }

.brand-story {
    position: relative;
}

.mission-team {
    position: relative;
}

.contact-header {
    position: relative;
}

.faq-section {
    position: relative;
}

/* About Page Specific */
.about-image-stack {
    position: relative;
    height: 400px;
}

.about-img-main {
    width: 80%;
    height: 80%;
    border: 2px dashed var(--light-pink);
    border-radius: 20px;
    overflow: hidden;
}

.about-img-sub {
    width: 50%;
    height: 50%;
    position: absolute;
    bottom: 0;
    right: 0;
    border: 5px solid var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.founder-photo {
    width: 150px;
    height: 150px;
    border: 4px solid var(--hot-pink);
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.founder-title {
    text-transform: uppercase;
    font-size: 12px;
    color: var(--hot-pink);
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    padding: 1rem 0;
    cursor: pointer;
    text-align: left;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item {
    border-bottom: 1px solid var(--light-pink);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
}

.faq-gallery-img {
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
}

.social-large {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
}

.section-label {
    font-family: var(--f-subheading);
    font-size: 24px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    margin-bottom: 0.5rem;
}

/* Removed redundant h2/h3 styles that conflicted with moodboard */

p {
    font-size: 16px;
    margin-bottom: 1.5rem;
}

.section-padding {
    padding: 5rem 1.5rem;
}

@media (max-width: 767px) {
    .section-padding {
        padding: 3rem 1.25rem;
    }
}

/* Navbar */
nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--blush-white);
    border-bottom: 2px solid var(--light-pink);
    padding: 0.8rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.nav-cta .btn-orange {
    padding: 10px 20px;
    font-size: 13px;
}

nav.scrolled {
    box-shadow: 0 5px 15px rgba(61,26,46,0.1);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    font-family: var(--f-subheading);
    text-transform: uppercase;
    color: var(--deep-plum);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--hot-pink);
    transform: translateY(-2px);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--hot-pink);
    transition: width 0.3s ease;
}

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

.mobile-nav-cta {
    display: none;
}

.logo img {
    height: 50px;
}

/* Buttons */
.btn-orange {
    background: var(--deep-orange);
    color: var(--white);
    border: none;
    border-radius: 25px;
    padding: 10px 24px;
    font-family: var(--f-body);
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    text-align: center;
}

.btn-orange:hover {
    background: var(--amber);
    color: var(--deep-plum);
    transform: scale(1.05);
}

.btn-orange:active {
    background: var(--deep-plum);
    color: var(--blush-white);
    transform: scale(0.95);
}

.btn-orange:disabled {
    background: var(--grey-pending);
    color: #888;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-outline {
    background: transparent;
    color: var(--deep-plum);
    border: 2px solid var(--light-pink);
    border-radius: 25px;
    padding: 10px 24px;
    font-family: var(--f-body);
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-outline:hover {
    background: var(--light-pink);
    color: var(--deep-plum);
}

.hero-section .btn-outline {
    color: var(--light-pink);
    border-color: var(--light-pink);
}

.hero-section .btn-outline:hover {
    background: var(--hot-pink);
    color: var(--white);
    border-color: var(--hot-pink);
}

/* Cards */
.card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 0.5px 20px rgba(61,26,46,0.08);
    padding: 2rem;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(61,26,46,0.15);
}

/* Icons */
.icon-container {
    width: 45px;
    height: 45px;
    background: var(--light-pink);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--deep-plum);
    font-size: 18px;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.icon-container:hover {
    transform: scale(1.1);
    background: var(--deep-orange);
}

/* Wavy Divider */
.wavy-divider {
    width: 100%;
    height: 100px;
    display: block;
    margin: 0 !important;
    padding: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

/* Page Title Style */
.page-header {
    text-align: center;
    padding: 4rem 1rem;
}

.page-header h1 {
    font-family: var(--f-body);
    font-size: 36px;
    color: var(--deep-plum);
    margin-bottom: 0.5rem;
}

.page-header h1 span {
    color: var(--deep-orange);
}

.page-header .subtitle {
    font-family: var(--f-heading);
    font-size: 12px;
    color: var(--hot-pink);
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
}

/* Process Steps */
.process-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 2rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.process-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--light-pink);
    z-index: 1;
}

.step {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    z-index: 2;
    transition: all 0.3s ease;
}

.step.done,
.step.completed {
    background: var(--hot-pink);
    color: var(--white);
}

.step.current {
    background: var(--amber);
    color: var(--deep-plum);
    transform: scale(1.1);
}

.step.pending {
    background: var(--white);
    border: 2px solid var(--grey-pending);
    color: var(--grey-pending);
}

/* How to Book Cards */
.flex.gap-8 > .card {
    margin: 0.5rem;
}

/* Promo Box */
.promo-box {
    background: var(--deep-orange);
    border-radius: 15px;
    padding: 1.5rem;
    color: var(--white);
}

.coupon-code {
    background: var(--white);
    color: var(--deep-orange);
    border-radius: 20px;
    padding: 4px 12px;
    font-weight: bold;
}

/* Tables */
.table-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0.5px 20px rgba(61,26,46,0.08);
    width: 100%;
}

table {
    width: 100%;
    border-collapse: collapse;
}

thead {
    background: var(--deep-plum);
    color: var(--blush-white);
}

th, td {
    padding: 1rem;
    text-align: left;
}

tbody tr:nth-child(even) {
    background: var(--white);
}

tbody tr:nth-child(odd) {
    background: var(--blush-white);
}

/* Footer */
footer {
    background: var(--deep-plum);
    color: var(--blush-white);
    padding: 4rem 5% 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-links h4, .footer-contact h4 {
    margin-bottom: 1.5rem;
    font-family: var(--f-subheading);
    text-transform: uppercase;
}

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

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--blush-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 35px;
    height: 35px;
    background: var(--light-pink);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--deep-plum);
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-icon:hover {
    background: var(--deep-orange);
}

@media (max-width: 767px) {
    .footer-content {
        text-align: center;
        justify-items: center;
        gap: 2rem;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-logo {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

.copyright {
    border-top: 1px solid rgba(250, 184, 196, 0.2);
    padding-top: 1rem;
    text-align: center;
    font-size: 12px;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--deep-plum);
    border-radius: 2px;
}

/* Featured Offer Section */
.featured-offer {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(61, 26, 46, 0.1);
    margin: 2rem 0;
}

.featured-offer-image {
    position: relative;
    flex: 1;
    min-height: 400px;
}

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

.featured-offer-content {
    flex: 1.2;
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 991px) {
    .featured-offer-image {
        min-height: 250px;
    }
    .featured-offer-content {
        padding: 2rem 1.5rem;
        text-align: center;
        align-items: center;
    }

    .featured-offer-content h2 {
        text-align: center !important;
    }

    .featured-features li {
        justify-content: center;
    }
}

.popular-badge-alt {
    position: absolute;
    top: 30px;
    left: 30px;
    background: var(--amber);
    color: var(--deep-plum);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    z-index: 2;
}

.featured-features {
    list-style: none;
    padding: 0;
}

.featured-features li {
    margin-bottom: 1rem;
    font-size: 16px;
    display: flex;
    align-items: center;
    color: var(--deep-plum);
}

.fs-32 {
    font-size: 32px;
}

@media (min-width: 992px) {
    .featured-offer {
        flex-direction: row;
        min-height: 600px;
    }
}

/* Highlights Section Enhancements */
.highlight-group {
    background: var(--white);
    padding: 2rem;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(61, 26, 46, 0.05);
    height: 100%;
    transition: transform 0.3s ease;
}

@media (max-width: 767px) {
    .highlight-group {
        padding: 1.5rem;
    }
    
    .highlight-group .flex {
        justify-content: center;
    }
}

.highlight-group:hover {
    transform: translateY(-5px);
}

.highlight-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}

.video-item {
    aspect-ratio: 9/16;
}

.video-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.video-item:hover video {
    opacity: 1;
}

.design-item {
    aspect-ratio: 4/5;
}

.design-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

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

.item-tag {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: var(--deep-orange);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Carousel/Slider Styles */
.highlights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

@media (max-width: 991px) {
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.slider-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.slider-header h3 {
    font-size: 20px;
    color: var(--deep-plum);
    margin: 0;
}

.slider {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 20px;
    overflow: hidden;
    background: var(--blush-white);
}

.slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-item {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.slider-card {
    width: 90%;
    height: 90%;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(61, 26, 46, 0.1);
    transition: all 0.3s ease;
}

.slider-card:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(61, 26, 46, 0.15);
    background: rgba(255, 255, 255, 0.15);
}

.slider-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.slider-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light-pink);
    border: none;
    color: var(--deep-plum);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: var(--deep-orange);
    color: white;
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--light-pink);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid var(--deep-orange);
}

.dot.active {
    background: var(--deep-orange);
    width: 24px;
    border-radius: 4px;
}

.dot:hover {
    background: var(--deep-orange);
}

.fade-in-left {
    animation: fadeInLeft 1s ease both;
}

.fade-in-right {
    animation: fadeInRight 1s ease both;
}

.fade-in-up {
    animation: fadeInUp 1s ease both;
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design: Mobile/Tablet (< 1024px) */
@media (max-width: 1023px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--blush-white);
        flex-direction: column;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        z-index: 1001;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

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

    .nav-links a {
        display: block;
        padding: 1.5rem;
        font-size: 18px;
        font-weight: 700;
        border-bottom: 1px solid rgba(250, 184, 196, 0.3);
    }

    .nav-links.active {
        left: 0;
    }

    .mobile-nav-cta {
        display: block;
        padding: 2rem 1.25rem;
    }
    
    .mobile-nav-cta .btn-orange {
        width: 100%;
        max-width: none;
    }

    .nav-cta {
        display: none;
    }

    .hero-section {
        padding: 3rem 0 !important;
        text-align: center;
    }
    .section-padding {
        padding: 3.5rem 0 !important;
    }
    .hero-flex {
        flex-direction: column !important;
    }
    .hero-section .hero-content {
        order: 2;
    }
    .hero-section .hero-image {
        order: 1;
        margin-bottom: 2rem;
    }
    .hero-section h1 {
        font-size: 32px !important;
    }
    
    .section-title, .booking-step-title {
        font-size: 20px !important;
        letter-spacing: 2px !important;
    }

    .process-container {
        padding: 1.5rem 0;
        width: 100%;
        gap: 5px;
    }

    .process-container::before {
        height: 1px;
    }

    .step {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .booking-highlights .flex {
        flex-direction: column !important;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .social-icons {
        justify-content: center;
    }

    .featured-offer-content .flex-wrap {
        justify-content: center;
    }

    .brand-story .flex {
        flex-direction: column !important;
    }
    .about-image-stack {
        height: 300px !important;
    }

    .mission-team .flex {
        flex-direction: column !important;
    }

    .map-hours-section .grid {
        grid-template-columns: 1fr !important;
    }

    .booking-form-section .card {
        padding: 1.5rem !important;
    }
    #partB .grid, #partC .grid {
        grid-template-columns: 1fr !important;
    }

    .calendar-grid {
        gap: 5px;
        padding: 10px;
    }
    
    .calendar-day {
        font-size: 12px;
    }

    .page-header {
        padding: 3rem 1.25rem;
    }
    
    .page-header h1 {
        font-size: 28px !important;
    }

    .total-price-amount {
        font-size: 36px;
    }
}

/* Specific Mobile Fixes (< 480px) */
@media (max-width: 480px) {
    .nav-cta {
        display: none; /* Hide in navbar on tiny screens */
    }
    .nav-links {
        padding-bottom: 2rem;
    }
    /* Add a visible link in the mobile menu instead */
}

/* Responsive Design: Laptop/Desktop (>= 1024px) */
@media (min-width: 1024px) {
    nav {
        padding: 1rem 2rem;
    }
    .hero-section {
        padding: 10rem 1rem !important;
    }
    .section-padding {
        padding: 8rem 1rem !important;
    }
    .hero-section h1 {
        font-size: 56px !important;
    }
    .hero-section p {
        font-size: 20px !important;
        max-width: 500px;
    }

    .nav-links {
        display: flex !important;
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        flex-direction: row;
        padding-top: 0;
    }
    .hamburger {
        display: none !important;
    }

    .nav-cta .btn-orange {
        padding: 12px 28px;
        font-size: 14px;
    }

    .packages-section {
        padding: 8rem 1rem !important;
    }
    .booking-highlights {
        padding: 8rem 1rem !important;
    }

    .brand-story, .mission-team, .faq-section, .contact-header, .message-form-section, .map-hours-section {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }

    /* Additional Responsive Utilities */
    .md\:flex-row {
        flex-direction: row !important;
    }

    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* ============================================================
   Booking Page: JS-to-CSS Migrations & Bug Fixes
   ============================================================ */

/* Month navigation disabled state (replaces JS inline opacity/pointer-events) */
.month-nav-btn.is-disabled {
    opacity: 0.3;
    pointer-events: none;
    cursor: default;
}

/* #timeSelection is always visible — no display toggling */

/* Booth preview card: hidden by default, shown via JS class toggle */
#boothPreview {
    display: none;
    margin-top: 1rem;
}
#boothPreview.is-visible {
    display: block;
}

/* Submit button disabled visual state — handled by CSS, not JS inline styles */
#submitBtn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}