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

:root {
    --primary: #d4a798;
    --primary-glow: #e8c4b8;
    --secondary: #f8e8e8;
    --background: #fefaf6;
    --text: #5a4c43;
    --dark-beige: #a78a7a;
    --light-pink: #f9f1f0;
    --accent: #e8b4b4;
}

body {
    font-family: "Poppins", sans-serif;
    background: var(--background);
    color: var(--text);
    overflow-x: hidden;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* NAV ------------------------------------ */
.nav {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    padding: 15px 20px;
    background: rgba(254, 250, 246, 0.98);
    backdrop-filter: blur(15px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    border-bottom: 1px solid var(--secondary);
    transform: translateY(0);
    transition: transform 0.3s ease, background 0.3s ease;
}


.nav.hidden {
    transform: translateY(-100%);
}

.logo {
    font-size: 24px;
    font-weight: 700;
    font-family: "Playfair Display", serif;
    color: var(--primary);
    position: relative;
}


@keyframes logoPulse {
    from {
        text-shadow: 0 0 10px var(--primary-glow), 0 0 25px var(--primary-glow);
    }
    to {
        text-shadow: 0 0 15px var(--primary-glow), 0 0 30px var(--primary-glow), 0 0 40px #e8c4b8;
    }
}

.nav-links {
    display: flex;
    gap: 15px;
    list-style: none;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-links a {
    color: var(--text);
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    position: relative;
    padding: 5px 0;
    font-size: 14px;
}

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

.nav-links a:hover {
    color: var(--primary);
}

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

/* HAMBURGER MENU STYLES */
.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 10000;
    position: relative; /* Ensure it stays on top */
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hamburger menu animation when active */
.hamburger-menu.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

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

.hamburger-menu.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* MOBILE NAVIGATION STYLES */
@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }

    .language-switcher {
        margin-left: auto;
        padding-right: 50px; /* Space for hamburger menu */
        position: relative;
        z-index: 1; /* Lower than hamburger */
    }
    
    .flags {
        gap: 8px;
    }
    
    .flag {
        font-size: 20px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(254, 250, 246, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 9998;
    }

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

    .nav-links li {
        width: 100%;
        margin: 0;
        border-bottom: 1px solid rgba(212, 167, 152, 0.2);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        padding: 15px 0;
        font-size: 18px;
        width: 100%;
        color: var(--text);
        font-weight: 600;
    }

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

    .nav-links a:hover {
        color: var(--primary);
        background: none;
        transform: translateX(10px);
    }
}

/* Desktop styles */
@media (min-width: 769px) {
    .language-switcher {
        margin-left: 10px;
        padding-right: 0;
    }
    
    .hamburger-menu {
        display: none !important; /* Ensure it's hidden on desktop */
    }
}

/* Overlay when menu is open */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9997;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}
/* LANGUAGE SWITCHER ------------------------------------ */
.language-switcher {
    margin-left: auto; /* This pushes it to the right */
    padding-right: 50px; /* Space for hamburger menu */
}

.flags {
    display: flex;
    gap: 8px;
    align-items: center;
}

.flag {
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 4px;
    border-radius: 5px;
    border: 2px solid transparent;
}

.flag:hover {
    transform: scale(1.2);
    border-color: var(--primary);
}

.flag.active {
    border-color: var(--primary);
    background: rgba(212, 167, 152, 0.1);
}


/* HERO ------------------------------------ */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    text-align: center;
    padding-top: 70px; /* Account for fixed nav */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.image-collage {
    position: relative;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    gap: 5px;
    padding: 10px;
    opacity: 0.9;
}

.collage-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    filter: sepia(0.3) brightness(1.0);
    transition: all 0.5s ease;
    position: relative;
}

.collage-img:hover {
    filter: sepia(0.1) brightness(0.3);
    z-index: 2;
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(254, 250, 246, 0.1) 50%,
        rgba(248, 232, 232, 0.3) 50%,
        rgba(254, 250, 246, 0.1) 50%
    );
    z-index: 1;
}

.hero-centre {
    position: relative;
    z-index: 3;
    animation: fadeInUp 1s ease-out;
    padding: 0 20px;
}

.hero-title {
    font-size: 45px;
    font-family: "Playfair Display", serif;
    color: var(--text);
    font-weight: 900;
    letter-spacing: 1px;

}

.glow-title {
    text-shadow: 
        0 0 10px #fff,
        0 0 20px #fff,
        0 0 30px #fff,
        0 0 40px var(--primary-glow),
        0 0 70px var(--primary-glow),
        0 0 80px var(--primary-glow),
        0 0 100px var(--primary-glow),
        0 0 150px var(--primary-glow),
        0 0 200px var(--primary-glow);
    animation: nuclearGlow 2s ease-in-out infinite alternate;
    position: relative;
}

.glow-title::before,
.glow-title::after {
    content: 'GLOW HOUSE';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glow-title::before {
    text-shadow: 
        0 0 20px var(--primary-glow),
        0 0 40px var(--primary-glow),
        0 0 60px var(--primary-glow);
    animation: nuclearGlowBefore 3s ease-in-out infinite alternate;
    opacity: 0.7;
}

.glow-title::after {
    text-shadow: 
        0 0 30px #e8b4b4,
        0 0 60px #e8b4b4,
        0 0 90px #e8b4b4;
    animation: nuclearGlowAfter 4s ease-in-out infinite alternate;
    opacity: 0.5;
}

@keyframes nuclearGlow {
    0% {
        text-shadow: 
            0 0 10px #fff,
            0 0 20px #fff,
            0 0 30px #fff,
            0 0 40px var(--primary-glow),
            0 0 70px var(--primary-glow),
            0 0 80px var(--primary-glow),
            0 0 100px var(--primary-glow);
    }
    100% {
        text-shadow: 
            0 0 20px #fff,
            0 0 30px #fff,
            0 0 40px #fff,
            0 0 50px var(--primary-glow),
            0 0 80px var(--primary-glow),
            0 0 100px var(--primary-glow),
            0 0 150px var(--primary-glow),
            0 0 200px var(--primary-glow);
    }
}

.hero-address {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.9);
    padding: 12px 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--secondary);
    margin-bottom: 15px;
    animation: fadeInUp 1s ease-out 0.3s both;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.hero-address i {
    color: var(--text);
    font-size: 1.1em;
}

.hero-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--text);
    font-style: italic;
    letter-spacing: 2px;
    border-radius: 50%;
    
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite !important;
}

.scroll-arrow {
    width: 25px;
    height: 25px;
    border-right: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-5px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* CLICKABLE ADDRESS ------------------------------------ */
.clickable-address {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    cursor: pointer;
}

.clickable-address:hover {
    background: rgba(255, 255, 255, 0.95) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 167, 152, 0.2);
}

.clickable-address:active {
    transform: translateY(0);
}

.clickable-address:hover i {
    color: var(--primary);
    transform: scale(1.1);
}

.clickable-address i {
    transition: all 0.3s ease;
}

/* Clickable Contact Cards */
.clickable-contact {
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.clickable-contact::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 167, 152, 0.1), transparent);
    transition: left 0.6s ease;
}

.clickable-contact:hover::after {
    left: 100%;
}

.clickable-contact:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 167, 152, 0.2);
    border-color: var(--primary);
}

.clickable-contact:active {
    transform: translateY(-2px);
}

/* Visual feedback for clickable cards */
.clickable-contact .contact-icon {
    transition: all 0.3s ease;
}

.clickable-contact:hover .contact-icon {
    transform: scale(1.1);
    background: var(--primary);
}

/* Pulse animation for phone/email icons */
.clickable-contact[data-type="phone"]:hover .fa-phone {
    animation: gentlePulse 1s ease-in-out;
}

.clickable-contact[data-type="email"]:hover .fa-envelope {
    animation: gentlePulse 1s ease-in-out;
}
/* SECTIONS ------------------------------------ */
.section {
    padding: 80px 20px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    background: var(--background);
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-size: 32px;
    color: var(--text);
    font-family: "Playfair Display", serif;
    margin-bottom: 40px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

/* SERVICES ------------------------------------ */
.service-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
    background: var(--light-pink);
    padding: 30px 20px;
    border-radius: 15px;
    border: 1px solid var(--secondary);
}

.service-row.reverse {
    flex-direction: column;
    transform: translateY(30px);
}

.service-row.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-img {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(212, 167, 152, 0.2);
    transition: all 0.5s ease;
    cursor: pointer;
}

.service-img:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 35px rgba(212, 167, 152, 0.3);
}

.service-text {
    width: 100%;
    text-align: center;
}

.service-text h3 {
    font-size: 24px;
    color: var(--dark-beige);
    margin-bottom: 15px;
    transition: color 0.3s ease;
    font-family: "Playfair Display", serif;
}

.service-text:hover h3 {
    color: var(--primary);
}

.service-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--text);
}

.service-features {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-features span {
    background: var(--secondary);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 13px;
    color: var(--dark-beige);
    border: 1px solid var(--primary-glow);
}

/* BOOKING SECTION WITH TABS */
.booking-tabs {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.tab-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark-beige) 100%);
    padding: 10px;
    gap: 5px;
}

.tab-button {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    padding: 20px 15px;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    color: var(--text);
    position: relative;
    overflow: hidden;
}

.tab-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.tab-button:hover::before {
    left: 100%;
}

.tab-button:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.tab-button.active {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    color: var(--primary);
}

.tab-icon {
    font-size: 24px;
    transition: all 0.3s ease;
}

.tab-button.active .tab-icon {
    transform: scale(1.2);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: scale(1.2) translateY(0);
    }
    40% {
        transform: scale(1.2) translateY(-5px);
    }
    60% {
        transform: scale(1.2) translateY(-2px);
    }
}

.tab-content {
    padding: 40px;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.tab-pane.active {
    display: block;
}

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

.widget-header {
    margin-bottom: 30px;
}

.widget-header h3 {
    font-size: 28px;
    color: var(--text);
    font-family: "Playfair Display", serif;
    margin-bottom: 10px;
}

.widget-header p {
    color: var(--dark-beige);
    font-size: 16px;
}

.calendly-widget-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--secondary);
    background: white;
}

.calendly-inline-widget {
    border-radius: 20px !important;
}

/* Enhanced Background Images for Booking Section */
.booking-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.7;
}

.bg-image {
    position: absolute;
    width: 50%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.12;
    filter: sepia(0.4) brightness(0.1);
    transition: all 0.8s ease;
}

.bg-image-1 {
    left: 0;
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
}

.bg-image-2 {
    right: 0;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}

.booking-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(254, 250, 246, 0.85) 0%,
        rgba(248, 232, 232, 0.75) 50%,
        rgba(254, 250, 246, 0.85) 100%
    );
    z-index: 2;
}

.booking-content {
    position: relative;
    z-index: 3;
    gap: 30px;
    margin-bottom: 60px;
    opacity: 1;
    transform: translateY(30px);
    transition: all 0.8s ease;
    background: var(--light-pink);
    padding: 30px 20px;
    border-radius: 15px;
    border: 1px solid var(--secondary);
}

/* Mobile Responsiveness for Booking Tabs */
@media (max-width: 768px) {
    .tab-buttons {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        padding: 15px;
    }
    
    .tab-button {
        padding: 15px 10px;
        font-size: 14px;
    }
    
    .tab-icon {
        font-size: 20px;
    }
    
    .tab-content {
        padding: 25px 20px;
    }
    
    .widget-header h3 {
        font-size: 24px;
    }
    
    .calendly-widget-container {
        margin: 0 -10px;
        border-radius: 15px;
    }
    
    .bg-image {
        opacity: 0.08;
    }
    
    .bg-image-1,
    .bg-image-2 {
        clip-path: none;
        width: 100%;
    }
    
    .bg-image-2 {
        display: none;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .booking-tabs {
        max-width: 900px;
    }
    
    .tab-button {
        padding: 18px 12px;
        font-size: 14px;
    }
}

/* Animation for tab switching */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Custom Icon Styles for Booking Cards */
.custom-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: all 0.3s ease;
}


/* Loading state for Calendly widgets */
.calendly-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    color: var(--dark-beige);
}

.calendly-loading .loading-spinner {
    margin-right: 10px;
}
.service-option {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--secondary);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.service-option:hover::before {
    left: 100%;
}

.service-option:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(212, 167, 152, 0.3);
}

.service-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    transition: all 0.4s ease;
}

.service-option:hover .service-image {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.service-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(transparent, rgba(255, 255, 255, 0.9));
}

.service-content {
    padding: 25px;
    text-align: center;
    position: relative;
}

.service-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
    transition: all 0.3s ease;
}

.service-option:hover .service-icon {
    transform: scale(1.2) rotate(10deg);
}

.service-option h3 {
    color: var(--text);
    margin-bottom: 12px;
    font-family: "Playfair Display", serif;
    font-size: 22px;
    transition: color 0.3s ease;
}

.service-option:hover h3 {
    color: var(--primary);
}

.service-option p {
    color: var(--dark-beige);
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 1.5;
}

/* COMPACT BOOKING SECTION */
.booking-grid-compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 1500px;
    margin: 0 auto;
}

.booking-card-compact {
    background: rgba(241, 207, 189, 0.926);
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    border: 4px solid rgba(195, 184, 182, 0.791);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    height: fit-content;
    cursor: pointer;
}

.booking-card-compact:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 167, 152, 0.15);
    border-color: var(--primary);
}

.booking-card-compact .card-icon {
    font-size: 32px;
    margin-bottom: 15px;
    display: block;
    transition: transform 0.3s ease;
}

.booking-card-compact:hover .card-icon {
    transform: scale(1.1);
}

.booking-card-compact h3 {
    font-size: 30px;
    color: var(--text);
    margin-bottom: 20px;
    font-family: "Playfair Display", serif;
}

.calendly-widget-compact {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--secondary);
    background: white;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.booking-card-compact:hover .calendly-widget-compact {
    border-color: var(--primary);
    box-shadow: 0 3px 15px rgba(212, 167, 152, 0.1);
}

.calendly-widget-compact .calendly-inline-widget {
    border-radius: 12px !important;
    flex-grow: 1;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .booking-grid-compact {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .booking-card-compact {
        padding: 20px 15px;
    }
    
    .booking-header {
        margin-bottom: 40px;
    }
    
    .booking-card-compact .card-icon {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .booking-card-compact h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .calendly-widget-compact .calendly-inline-widget {
        min-width: 250px !important;

    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .booking-grid-compact {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 20px;
    }
    
    .booking-card-compact {
        padding: 22px 18px;
    }
}

@media (min-width: 1025px) {
    .booking-grid-compact {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    /* Optional: If you want 4 columns on very large screens */
    @media (min-width: 1400px) {
        .booking-grid-compact {
            grid-template-columns: repeat(4, 1fr);
        }
    }
}

/* Animation for compact booking cards */
.booking-card-compact {
    animation: fadeInUp 0.6s ease-out;
}

.booking-card-compact:hover .custom-icon {
    transform: scale(1.1);
}

/* Update existing card-icon styles to work with both emojis and images */
.booking-card-compact .card-icon {
    font-size: 32px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    height: 40px;
}

/* Ensure emojis and images have consistent sizing */
.booking-card-compact .card-icon:not(:has(img)) {
    font-size: 32px;
    line-height: 1;
}

/* Mobile Responsiveness for Custom Icons */
@media (max-width: 768px) {
    .custom-icon {
        width: 32px;
        height: 32px;
    }
    
    .booking-card-compact .card-icon {
        height: 32px;
        margin-bottom: 12px;
    }
    
    .booking-card-compact .card-icon:not(:has(img)) {
        font-size: 28px;
    }
}

/* Animation for custom icons */
@keyframes gentleBounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.booking-card-compact:hover .custom-icon {
    animation: gentleBounce 2s ease-in-out infinite;
}

.booking-card-compact:nth-child(1) { animation-delay: 0.1s; }
.booking-card-compact:nth-child(2) { animation-delay: 0.2s; }
.booking-card-compact:nth-child(3) { animation-delay: 0.3s; }
.booking-card-compact:nth-child(4) { animation-delay: 0.4s; }
/* ELEGANT CALENDAR STYLES */
.elegant-calendar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.calendar-day {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(254, 250, 246, 0.8) 100%);
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.calendar-day::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.2s ease;
}

.calendar-day:hover::before {
    left: 100%;
}

.calendar-day.open {
    border-color: var(--primary);
    box-shadow: 0 8px 25px rgba(212, 167, 152, 0.15);
}

.calendar-day.open:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(212, 167, 152, 0.25);
}

.calendar-day.closed {
    border-color: #e5e5e5;
    background: linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 100%);
    opacity: 0.8;
}

.day-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 167, 152, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.calendar-day.open:hover .day-glow {
    opacity: 1;
}

.day-content {
    position: relative;
    z-index: 2;
}

.day-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    font-family: "Playfair Display", serif;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.day-icon {
    font-size: 40px;
    margin-bottom: 15px;
    animation: gentleFloat 2s ease-in-out infinite !important;
}

@keyframes gentleFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    50% { 
        transform: translateY(-5px) rotate(2deg); /* Reduced from -8px and 5deg */
    }
}

.day-status {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-beige);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.calendar-day.closed .day-status {
    color: #999;
}

.day-hours {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    padding: 8px 16px;
    background: rgba(212, 167, 152, 0.1);
    border-radius: 25px;
    display: inline-block;
    border: 1px solid rgba(212, 167, 152, 0.2);
}

.calendar-day.closed .day-hours {
    background: rgba(204, 204, 204, 0.1);
    border-color: rgba(204, 204, 204, 0.2);
    color: #999;
}

.calendar-footer {
    text-align: center;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px dashed rgba(212, 167, 152, 0.3);
}

.hours-summary {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(212, 167, 152, 0.1);
    padding: 20px 30px;
    border-radius: 20px;
    margin-bottom: 30px;
    border: 1px solid rgba(212, 167, 152, 0.2);
}

.summary-icon {
    font-size: 30px;
    animation: gentlePulse 3s ease-in-out infinite;
}

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

.summary-text {
    text-align: left;
    font-size: 16px;
    color: var(--text);
    line-height: 1.4;
}

.summary-text strong {
    color: var(--primary);
}

.glow-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark-beige) 100%);
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(212, 167, 152, 0.3);
    position: relative;
    overflow: hidden;
}

.glow-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.glow-button:hover::before {
    left: 100%;
}

.glow-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(212, 167, 152, 0.4);
}

.button-icon {
    font-size: 18px;
    animation: sparkle 1s ease-in-out infinite !important;
}

@keyframes sparkle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(10deg); }
    75% { transform: rotate(-10deg); }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {

    .hero-address {
        font-size: 10px !important; /* Optional: slightly smaller text */
        margin-top: 10px !important;
    }
    
    .hero-address i {
        font-size: 14px !important; /* Smaller icon */
    }

    .elegant-calendar {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .calendar-day {
        padding: 20px 15px;
    }
    
    .day-name {
        font-size: 16px;
    }
    
    .day-icon {
        font-size: 30px;
    }
    
    .hours-summary {
        flex-direction: column;
        text-align: center;
        padding: 15px 20px;
    }
    
    .summary-text {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .elegant-calendar {
        grid-template-columns: 1fr;
    }
    
    .calendar-day {
        padding: 25px 20px;
    }
}

/* CONTACT ------------------------------------ */
.contact-options {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-card {
    background: var(--light-pink);
    padding: 30px 20px;
    border-radius: 15px;
    width: 100%;
    max-width: 300px;
    box-shadow: 0 8px 25px rgba(212, 167, 152, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid var(--secondary);
    text-align: center;
}

.contact-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 35px rgba(212, 167, 152, 0.2);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 20px;
}

.contact-card h3 {
    color: var(--text);
    margin-bottom: 10px;
    font-family: "Playfair Display", serif;
    font-size: 18px;
}

.contact-card p {
    color: var(--dark-beige);
    font-size: 14px;
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Loading animation */
.loading-spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Tablet and Desktop Styles */
@media (min-width: 768px) {
    .nav {
        padding: 20px 40px;
    }
    
    .logo {
        font-size: 28px;
    }
    
    .nav-links {
        gap: 25px;
    }
    
    .nav-links a {
        font-size: 16px;
    }
    
    .hero-title {
        font-size: 5vw;
    }
    
    .hero-address {
        font-size: 1.2vw;
    }
    
    .hero-subtitle {
        font-size: 1.1vw;
    }
    
    .section {
        padding: 100px 40px;
    }
    
    .section-title {
        font-size: 40px;
    }
    
    .service-row,
    .service-row.reverse {
        flex-direction: row;
        gap: 40px;
        padding: 40px;
        margin-bottom: 80px;
    }
    
    .service-img {
        width: 45%;
    }
    
    .service-text {
        width: 45%;
        text-align: left;
    }
    
    .service-features {
        justify-content: flex-start;
    }
    
    .form-row {
        flex-direction: row;
        gap: 20px;
    }
    
    .contact-options {
        flex-direction: row;
        justify-content: center;
        gap: 30px;
    }
    
    .contact-card {
        width: 250px;
    }
    
    .image-collage {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 10px;
        padding: 20px;
    }
}

@media (min-width: 1024px) {
    .nav {
        padding: 20px 50px;
    }
    
    .nav-links {
        gap: 30px;
    }
    
    .hero-title {
        font-size: 6.5vw;
    }
    
    .section {
        padding: 120px 70px;
    }
    
    .section-title {
        font-size: 48px;
    }
    
    .service-row,
    .service-row.reverse {
        padding: 40px;
        margin-bottom: 90px;
    }
    
    .contact-options {
        gap: 40px;
    }
    
}

/* Large Desktop */
@media (min-width: 1200px) {
    .hero-title {
        font-size: 6.5vw;
    }
    
    .hero-address {
        font-size: 1.3vw;
    }
    
    .hero-subtitle {
        font-size: 1.2vw;
    }
}

/* COPYRIGHT FOOTER STYLES */
.copyright-footer {
    background: linear-gradient(135deg, var(--text) 0%, #4a3f35 100%);
    color: white;
    margin-top: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section h4 {
    color: var(--primary);
    margin-bottom: 20px;
    font-family: "Playfair Display", serif;
    font-size: 18px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 700;
    font-family: "Playfair Display", serif;
    color: var(--primary);
    margin-bottom: 10px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-style: italic;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.contact-info i {
    color: var(--primary);
    width: 16px;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.copyright-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.2);
}

.copyright-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0;
}

.legal-links {
    display: flex;
    gap: 25px;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
}

.legal-links a:hover {
    color: var(--primary);
}

/* Mobile Responsiveness for Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-content {
        padding: 40px 20px 20px;
    }
    
    .contact-info p {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .copyright-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .legal-links {
        justify-content: center;
    }
}

/* Animation for footer elements */
.footer-section {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.copyright-footer.visible .footer-section {
    opacity: 1;
    transform: translateY(0);
}

.footer-section:nth-child(1) { transition-delay: 0.1s; }
.footer-section:nth-child(2) { transition-delay: 0.2s; }
.footer-section:nth-child(3) { transition-delay: 0.3s; }
.footer-section:nth-child(4) { transition-delay: 0.4s; }

/* Instagram Link Styles */
.instagram-link {
    color: var(--dark-beige);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.instagram-link:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* Contact card hover effect for Instagram */
.contact-card:hover .fa-instagram {
    color: #E4405F; /* Instagram brand color */
    transform: scale(1.1);
}

/* Clickable Contact Card */
.contact-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.contact-card-link:hover {
    color: inherit;
}


/* CALENDLY SUCCESS POPUP STYLES */
.booking-success-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.839);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.booking-success-popup.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: linear-gradient(135deg, #fefaf6 0%, #f8e8e8 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    border: 2px solid var(--primary);
    box-shadow: 0 20px 60px rgba(212, 167, 152, 0.3);
    transform: scale(0.7) translateY(50px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.booking-success-popup.active .popup-content {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.popup-icon {
    font-size: 60px;
    margin-bottom: 20px;
    animation: bounce 1s ease-in-out;
}

.popup-content h3 {
    color: var(--text);
    font-family: "Playfair Display", serif;
    font-size: 28px;
    margin-bottom: 15px;
}

.popup-content p {
    color: var(--dark-beige);
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 25px;
}

.popup-progress {
    height: 4px;
    background: var(--secondary);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.popup-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    animation: progressCountdown 3s linear forwards;
}

@keyframes progressCountdown {
    0% {
        transform: scaleX(0);
    }
    100% {
        transform: scaleX(1);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) scale(1);
    }
    40% {
        transform: translateY(-10px) scale(1.1);
    }
    60% {
        transform: translateY(-5px) scale(1.05);
    }
}

/* Mobile responsiveness for popup */
@media (max-width: 768px) {
    .popup-content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .popup-icon {
        font-size: 50px;
    }
    
    .popup-content h3 {
        font-size: 24px;
    }
    
    .popup-content p {
        font-size: 14px;
    }
}

/* ENHANCED CONFETTI STARS POPUP STYLES */
.confetti-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 100001;
}

.confetti-star {
    --end-x: 50vw;
    --end-y: 50vh;
    animation: confettiExplosion var(--duration, 3s) ease-out var(--delay, 0s) forwards;
}


.confetti-star:nth-child(2n) {
    background: var(--primary-glow);
    width: 8px;
    height: 8px;
}

.confetti-star:nth-child(3n) {
    background: var(--accent);
    width: 10px;
    height: 10px;
}

.confetti-star:nth-child(4n) {
    background: #ffd700;
    width: 6px;
    height: 6px;
}

.confetti-star:nth-child(5n) {
    background: #ff6b6b;
    width: 14px;
    height: 14px;
}

@keyframes confettiFall {
    0% {
        transform: translateY(-100px) rotate(0deg) scale(0);
        opacity: 1;
    }
    10% {
        transform: translateY(0) rotate(180deg) scale(1);
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg) scale(0);
        opacity: 0;
    }
}

@keyframes confettiExplosion {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(0);
        opacity: 1;
    }
    20% {
        transform: translate(calc(var(--end-x) - 50vw), calc(var(--end-y) - 50vh)) rotate(180deg) scale(1);
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        transform: translate(calc(var(--end-x) - 50vw), calc(var(--end-y) - 50vh)) rotate(360deg) scale(0);
        opacity: 0;
    }
}

/* Enhanced popup content with sparkle effect */
.popup-content {
    background: linear-gradient(135deg, #fefaf6 0%, #f8e8e8 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    border: 2px solid var(--primary);
    box-shadow: 
        0 20px 60px rgba(212, 167, 152, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 0 50px rgba(212, 167, 152, 0.2) inset;
    transform: scale(0.7) translateY(50px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.popup-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.booking-success-popup.active .popup-content::before {
    opacity: 0.6;
    animation: gentleSparkle 8s ease-in-out;
}

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

.popup-icon {
    font-size: 60px;
    margin-bottom: 20px;
    animation: enhancedBounce 1s ease-in-out, gentleGlow 2s ease-in-out infinite;
    display: inline-block;
    text-shadow: 0 0 20px rgba(212, 167, 152, 0.5);
}

@keyframes enhancedBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) scale(1);
    }
    40% {
        transform: translateY(-20px) scale(1.2);
    }
    60% {
        transform: translateY(-10px) scale(1.1);
    }
}

@keyframes gentleGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(212, 167, 152, 0.5);
    }
    50% {
        text-shadow: 0 0 30px rgba(212, 167, 152, 0.8), 0 0 40px rgba(212, 167, 152, 0.6);
    }
}

.popup-content h3 {
    color: var(--text);
    font-family: "Playfair Display", serif;
    font-size: 28px;
    margin-bottom: 15px;
    animation: textGlow 2s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(212, 167, 152, 0.3);
    }
    50% {
        text-shadow: 0 0 15px rgba(212, 167, 152, 0.5);
    }
}

.popup-content p {
    color: var(--dark-beige);
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.popup-progress {
    height: 4px;
    background: var(--secondary);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 10px rgba(212, 167, 152, 0.2);
}

.popup-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    animation: progressCountdown 3s linear forwards;
}

/* Enhanced progress bar animation */
@keyframes progressCountdown {
    0% {
        transform: scaleX(0);
        box-shadow: 0 0 10px var(--primary);
    }
    50% {
        box-shadow: 0 0 20px var(--primary);
    }
    100% {
        transform: scaleX(1);
        box-shadow: 0 0 5px var(--primary);
    }
}

/* Mobile responsiveness for enhanced popup */
@media (max-width: 768px) {
    .popup-content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .popup-icon {
        font-size: 50px;
    }
    
    .popup-content h3 {
        font-size: 24px;
    }
    
    .popup-content p {
        font-size: 14px;
    }
    
    .confetti-star {
        width: 8px;
        height: 8px;
    }
    
    .confetti-star:nth-child(2n) {
        width: 6px;
        height: 6px;
    }
    
    .confetti-star:nth-child(3n) {
        width: 7px;
        height: 7px;
    }
    
    .confetti-star:nth-child(5n) {
        width: 10px;
        height: 10px;
    }
}

/* SMOOTHER ANIMATIONS */
* {
    animation-duration: 0.5s !important;
}

.service-row,
.calendar-day,
.booking-card-compact,
.contact-card {
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

/* Enhanced smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Smoother hero animations */
.hero-title {
    animation: fadeInUp 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.hero-address {
    animation: fadeInUp 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both !important;
}

.hero-subtitle {
    animation: fadeInUp 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s both !important;
}

/* Smoother section reveals */
.section {
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

/* Enhanced image hover effects */
.service-img {
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.collage-img {
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

/* FIREWORK STYLES */
.firework {
    position: fixed;
    pointer-events: none;
    z-index: 100002;
}

.firework-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    animation: firework-explosion 1.5s ease-out forwards;
    opacity: 0;
}

@keyframes firework-explosion {
    0% {
        transform: translate(0, 0) scale(0);
        opacity: 1;
    }
    20% {
        opacity: 1;
    }
    100% {
        transform: translate(var(--tx), var(--ty)) scale(1);
        opacity: 0;
    }
}

/* Enhanced confetti with smoother animation */
.confetti-star {
    animation: confettiExplosion var(--duration, 2s) cubic-bezier(0.25, 0.46, 0.45, 0.94) var(--delay, 0s) forwards !important;
}

/* Smoother popup animations */
.booking-success-popup {
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.popup-content {
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

/* Enhanced glow effects with smoother transitions */
.glow-logo, .glow-title {
    transition: text-shadow 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

/* Smoother navigation transitions */
.nav {
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                background 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.nav-links a {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

/* Enhanced loading states */
.calendly-inline-widget {
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

/* Smoother button interactions */
.glow-button, .tab-button, .book-btn {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

/* Enhanced progress bar */
.popup-progress::after {
    animation: progressCountdown 3s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards !important;
}

/* Mobile optimizations for smoother animations */
@media (max-width: 768px) {
    * {
        animation-duration: 0.4s !important;
    }
    
    .service-row,
    .calendar-day,
    .booking-card-compact {
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    }
}
/* ELEGANT BOOKING SECTION STYLES */
.elegant-booking-container {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    overflow: visible; /* important */
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Left Panel - Selection */
.booking-selection-panel {
    background: linear-gradient(135deg, #fefaf6 0%, #f8e8e8 100%);
    padding: 40px 30px;
    border-right: 1px solid rgba(212, 167, 152, 0.2);
    border-radius: 25px;
}

.selection-group {
    margin-bottom: 30px;
}

.selection-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 15px;
    font-size: 16px;
}

.selection-label i {
    color: var(--primary);
    width: 20px;
    text-align: center;
}

/* Custom Dropdown Styles */
.custom-dropdown {
    position: relative;
    background: white;
    border-radius: 15px;
    border: 2px solid var(--secondary);
    transition: all 0.3s ease;
    cursor: pointer;
}

.custom-dropdown.active {
    border-color: var(--primary);
    box-shadow: 0 5px 20px rgba(212, 167, 152, 0.2);
}

.custom-dropdown.active .dropdown-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    max-height: 400px;
}

.dropdown-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.custom-dropdown.active .dropdown-header {
    border-radius: 15px 15px 0 0;
}

.dropdown-placeholder {
    color: var(--dark-beige);
    font-weight: 500;
}

.dropdown-header i {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.custom-dropdown.active .dropdown-header i {
    transform: rotate(180deg);
}

.dropdown-options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    max-height: 0;
    overflow-y: auto;
    z-index: 100;
    border: 2px solid var(--primary);
    border-top: none;
}

.dropdown-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(212, 167, 152, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.dropdown-option:hover {
    background: rgba(212, 167, 152, 0.05);
}

.dropdown-option:last-child {
    border-bottom: none;
}

.dropdown-option.active {
    background: rgba(212, 167, 152, 0.1);
    border-left: 4px solid var(--primary);
}

.option-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 167, 152, 0.1);
    border-radius: 10px;
    font-size: 18px;
    transition: all 0.3s ease;
}

.dropdown-option:hover .option-icon {
    background: var(--primary);
    transform: scale(1.1);
}

.option-info {
    flex: 1;
    text-align: left;
}

.option-title {
    display: block;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
    font-size: 14px;
}

.option-subtitle {
    display: block;
    font-size: 12px;
    color: var(--dark-beige);
}

/* Procedure Options */
.procedure-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(212, 167, 152, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.procedure-option:hover {
    background: rgba(212, 167, 152, 0.05);
}

.procedure-option:last-child {
    border-bottom: none;
}

.procedure-option.active {
    background: rgba(212, 167, 152, 0.1);
    border-left: 4px solid var(--primary);
}

.procedure-name {
    flex: 1;
    text-align: left;
    font-weight: 500;
    color: var(--text);
    font-size: 14px;
}

.procedure-price {
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    background: rgba(212, 167, 152, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    min-width: 80px;
    text-align: center;
}

.no-procedures {
    text-align: center;
    padding: 30px 20px;
    color: var(--dark-beige);
}

.no-procedures i {
    font-size: 40px;
    margin-bottom: 15px;
    color: var(--secondary);
}

.no-procedures p {
    font-size: 14px;
    margin: 0;
}

/* Selected Procedure Info */
.selected-procedure-info {
    background: white;
    border-radius: 15px;
    padding: 25px;
    border: 2px solid var(--secondary);
    margin-top: 20px;
    transition: all 0.3s ease;
}

.selected-procedure-info.active {
    border-color: var(--primary);
    box-shadow: 0 5px 20px rgba(212, 167, 152, 0.1);
}

.procedure-details h4 {
    color: var(--text);
    margin-bottom: 10px;
    font-family: "Playfair Display", serif;
    font-size: 18px;
}

.procedure-price-large {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.procedure-duration {
    color: var(--dark-beige);
    font-size: 14px;
    margin: 0;
}

/* Book Now Button */
.book-now-btn {
    width: 100%;
    margin-top: 25px;
    justify-content: center;
    opacity: 0.6;
    cursor: not-allowed;
    transition: all 0.3s ease;
}

.book-now-btn:enabled {
    opacity: 1;
    cursor: pointer;
}

.book-now-btn:enabled:hover {
    transform: translateY(-3px);
}

/* Right Panel - Calendar */
.calendar-widget-container {
    position: relative;
    min-height: 600px;
    background: white;
    border-radius: 25px;
}

.calendar-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    color: var(--dark-beige);
    border-radius: 25px;
}

.placeholder-icon {
    font-size: 60px;
    margin-bottom: 20px;
    color: var(--secondary);
}

.calendar-placeholder h3 {
    color: var(--text);
    font-family: "Playfair Display", serif;
    margin-bottom: 10px;
    font-size: 24px;
    border-radius: 25px;
}

.calendar-placeholder p {
    font-size: 16px;
    max-width: 300px;
    line-height: 1.5;
}

.calendly-widget {
    width: 100%;
    border-radius: 0 0 20px 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.calendly-widget.active {
    opacity: 1;
    transform: translateY(0);
}

.calendly-inline-widget {
    border-radius: 0 0 20px 0 !important;
}

/* MOBILE CALENDLY FIXES */
@media (max-width: 768px) {
    .elegant-booking-container {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .calendar-widget-container {
        min-height: 700px !important; /* Increased height for mobile */
        height: 700px !important;
        border-radius: 25px;
    }
    
    .calendar-placeholder,
    .calendly-widget {
        min-height: 700px !important;
        border-radius: 25px;
    }
    
    .calendly-inline-widget {
        min-width: 100% !important;
        width: 100% !important;
    }
    
    /* Ensure Calendly iframe is properly sized */
    .calendly-inline-widget iframe {
        min-height: 700px !important;
        width: 100% !important;
        min-width: 100% !important;
    }
    
    /* Fix for booking panel on mobile */
    .booking-selection-panel {
        padding: 25px 20px;
        border-right: none;
        border-bottom: 1px solid rgba(212, 167, 152, 0.2);
    }
    
    /* Adjust the overall booking section padding */
    #booking.section {
        padding: 60px 15px;
    }
    
    .booking-content {
        padding: 20px 15px;
    }
}

/* Additional mobile fixes for very small screens */
@media (max-width: 480px) {
    .calendar-widget-container {
        min-height: 750px !important;
    }
    
    .calendar-placeholder,
    .calendly-widget {
        min-height: 300px !important;
    }
    
    .calendly-inline-widget {
        height: 750px !important;
    }
    
    .calendly-inline-widget iframe {
        height: 750px !important;
    }
    
    .booking-selection-panel {
        padding: 20px 15px;
    }
}

/* Force Calendly widget to be responsive */
.calendly-inline-widget {
    width: 100% !important;
}

/* Ensure the widget container doesn't have fixed width */
.calendly-widget.active {
    width: 100%;
    height: auto;
}

/* Mobile Responsiveness */
@media (max-width: 968px) {
    .elegant-booking-container {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .booking-selection-panel {
        border-right: none;
        border-bottom: 1px solid rgba(212, 167, 152, 0.2);
        padding: 30px 20px;
    }
    
    .calendar-widget-container {
        min-height: 500px;
    }
    
    .calendar-placeholder,
    .calendly-widget {
        height: 500px;
    }
    
    .calendly-inline-widget {
        border-radius: 0 0 20px 20px !important;
    }
}

@media (max-width: 480px) {
    .booking-selection-panel {
        padding: 25px 15px;
    }
    
    .selection-group {
        margin-bottom: 20px;
    }
    
    .dropdown-header {
        padding: 15px;
    }
    
    .dropdown-option,
    .procedure-option {
        padding: 12px 15px;
    }
    
    .selected-procedure-info {
        padding: 20px;
    }
    
    .calendar-placeholder {
        padding: 30px 20px;
        height: 400px;
    }
    
    .calendly-widget {
        height: 400px;
    }
}

/* Animation for dropdown options */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-option,
.procedure-option {
    animation: slideInUp 0.3s ease-out both;
}

.dropdown-option:nth-child(1) { animation-delay: 0.05s; }
.dropdown-option:nth-child(2) { animation-delay: 0.1s; }
.dropdown-option:nth-child(3) { animation-delay: 0.15s; }
.dropdown-option:nth-child(4) { animation-delay: 0.2s; }

/* ELEGANT BOOKING BUTTON STYLES */
.elegant-booking-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark-beige) 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 25px rgba(212, 167, 152, 0.3);
    position: relative;
    overflow: hidden;
    margin-top: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    animation: fadeInUp 5s ease-out 0.6s both;
}

.elegant-booking-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.elegant-booking-btn:hover::before {
    left: 100%;
}

.elegant-booking-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(212, 167, 152, 0.4);
    background: linear-gradient(135deg, var(--dark-beige) 0%, var(--primary) 100%);
}

.elegant-booking-btn:active {
    transform: translateY(-1px) scale(1.02);
}

.btn-icon {
    font-size: 18px;
}

.btn-text {
    font-weight: 700;
    letter-spacing: 0.5px;
}

.btn-arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.elegant-booking-btn:hover .btn-arrow {
    transform: translateY(4px);
}

@keyframes gentleSparkle {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: scale(1.1) rotate(10deg);
        opacity: 0.8;
    }
}

/* Mobile responsiveness for the booking button */
@media (max-width: 768px) {
    .elegant-booking-btn {
        padding: 14px 24px;
        font-size: 14px;
        gap: 8px;
    }
    
    .btn-icon {
        font-size: 16px;
    }
    
    .btn-arrow {
        font-size: 16px;
    }
}

/* Ensure the button is properly positioned in the hero section */
.hero-centre {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}