:root {
    --primary-pink: #d57e72; 
    --accent-pink: #bc6a5e;
    --secondary-blue: #002366;
    --soft-gray: #f4f4f4;
    --luxury-white: #ffffff;
    --gold: #D4AF37;
    --luxury-black: #1a1a1a;
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(213, 126, 114, 0.1);
    --shadow-light: 0 15px 45px rgba(0,0,0,0.05);
    --transition-smooth: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    --font-heading: 'Helvetica', 'Arial', sans-serif;
    --font-body: 'Helvetica', 'Arial', sans-serif;
    --font-accent: 'Helvetica', 'Arial', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body, button, input, select, textarea, h1, h2, h3, h4, h5, h6, p, span, a, div:not(.fa):not(.fas):not(.fab):not(.far):not(.fal):not(.fad) { 
    font-family: 'Helvetica', 'Arial', sans-serif !important; 
}
body { background-color: transparent; color: #111; overflow-x: hidden; }

.container { max-width: 1400px; margin: 0 auto; padding: 20px 20px; }

/* Video Background Styles */
.video-bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

#bgVideo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%) scale(1.15); /* Scaled to hide captions/titles */
    pointer-events: none;
    border: none;
    z-index: 1; /* Lowest in the container */
}

@media (min-aspect-ratio: 16/9) {
    #bgVideo {
        height: 56.25vw;
    }
}

@media (max-aspect-ratio: 16/9) {
    #bgVideo {
        width: 177.78vh;
    }
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6); /* 60% white overlay */
    z-index: 2; /* On top of the video */
}

/* Force Transparency for Video Visibility with improved contrast */
section, footer, .gallery-section, .instagram-section {
    background: transparent !important;
}

.service-item, .booking-summary-card, .calendar-card, .tech-card, .form-input, .tab-btn {
    background: rgba(255, 255, 255, 0.9) !important; /* Slightly more opaque for readability */
    backdrop-filter: blur(15px);
    color: #111; /* Ensure dark text for contrast */
}

.tab-btn.active {
    background: var(--secondary-blue) !important; /* Force solid blue for active state */
    color: white !important;
    box-shadow: 0 10px 20px rgba(0, 35, 102, 0.3);
}

.main-footer {
    background: transparent !important;
    backdrop-filter: blur(5px);
}



/* Main Branding */
.lux-heading { font-family: var(--font-heading); font-size: 2.8rem; letter-spacing: -1px; margin-bottom: 5px; }
.lux-heading span {
    color: var(--secondary-blue);
    background: linear-gradient(90deg, var(--secondary-blue), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}
.lux-tagline { font-family: var(--font-accent); font-size: 1.6rem; color: var(--accent-pink); margin-bottom: 20px; display: inline-block; }

/* 2-Partition Experience */
.logo-wrapper { margin-bottom: 30px; display: flex; justify-content: center; align-items: center; }
.main-logo { max-width: 400px; width: 100%; height: auto; transition: 0.5s; animation: fadeInUp 1.2s ease; }

.booking-experience { 
    display: grid; 
    grid-template-columns: 1fr 450px; 
    gap: 35px; 
    align-items: start;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 30px 100px rgba(0,0,0,0.05);
    position: relative;
}

.booking-experience::before {
    content: '';
    position: absolute;
    top: -10%; right: -10%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(213, 126, 114, 0.1) 0%, transparent 70%);
    z-index: -1;
    animation: auraFloat 10s infinite alternate;
    pointer-events: none; /* Ensure background aura doesn't block clicks */
}

@keyframes auraFloat {
    from { transform: translate(0, 0); }
    to { transform: translate(-50px, 50px); }
}

/* Service Catalog */
.service-catalog { min-height: 500px; padding-bottom: 30px; padding-right: 15px; }
.service-catalog::-webkit-scrollbar { width: 4px; }
.service-catalog::-webkit-scrollbar-thumb { background: var(--primary-pink); border-radius: 10px; }

.category-tabs { 
    display: flex; 
    justify-content: center; 
    gap: 15px; 
    margin-bottom: 45px; 
    padding: 20px 0; 
    border-bottom: 1px solid rgba(0,0,0,0.05); 
    position: relative; 
}
.tab-btn { 
    padding: 12px 30px; 
    border-radius: 24px; 
    border: 1px solid #ddd; 
    background: transparent; 
    cursor: pointer; 
    transition: 0.4s; 
    font-weight: 700; 
    font-size: 0.85rem; 
    color: #555;
    letter-spacing: 1px;
}
.tab-btn.active {
    background: var(--secondary-blue);
    color: white;
    border-color: var(--secondary-blue);
    box-shadow: 0 10px 20px rgba(0, 35, 102, 0.2);
}

.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 35px; }
.service-item { 
    background: #fff; 
    padding: 35px;
    border-radius: 24px; 
    display: flex; flex-direction: column; justify-content: space-between; 
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.1);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--secondary-blue), var(--accent-pink));
    opacity: 0;
    transition: 0.4s;
}

.service-item:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(213, 126, 114, 0.2);
    box-shadow: 0 30px 60px -15px rgba(0,0,0,0.15);
}

.service-item:hover::before {
    opacity: 1;
}
.service-name { 
    font-weight: 700; 
    margin-bottom: 8px; 
    font-size: 1.3rem; 
    color: var(--secondary-blue); 
    letter-spacing: -0.5px;
}

.service-desc { 
    font-size: 0.9rem; 
    color: #777; 
    margin-bottom: 25px; 
    line-height: 1.5; 
    font-weight: 300;
}

.service-price { 
    color: var(--luxury-black); 
    font-weight: 900; 
    font-size: 1.6rem; 
    margin-bottom: 25px; 
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-price::after {
    content: '';
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(90deg, #eee, transparent);
}
.add-btn { 
    margin-top: auto; 
    background: var(--luxury-black); 
    color: white; border: none; padding: 18px; 
    border-radius: 15px; cursor: pointer; 
    transition: 0.4s; 
    font-weight: 700; width: 100%; letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.7rem;
    position: relative;
    overflow: hidden;
}

.add-btn::after {
    content: '';
    position: absolute;
    top: -50%; left: -60%;
    width: 20%; height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(30deg);
    transition: 0s;
}

.add-btn:hover::after {
    left: 130%;
    transition: 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.add-btn:hover { 
    background: var(--accent-pink); 
    box-shadow: 0 10px 25px rgba(213, 126, 114, 0.4); 
}

/* Booking Card */
.booking-summary-card { 
    background: var(--glass-bg); 
    backdrop-filter: blur(25px); 
    border: 1px solid var(--glass-border); 
    border-radius: 40px; 
    padding: 30px; /* Reduced for more compact feel */
    box-shadow: var(--shadow-light); 
    position: sticky; top: 20px; 
}
.summary-header { border-bottom: 2px solid rgba(213, 126, 114, 0.1); padding-bottom: 20px; margin-bottom: 30px; }
.summary-header h3 { font-size: 1.8rem; color: #111; margin-bottom: 5px; }

/* Custom Form */
.form-group { position: relative; margin-bottom: 25px; }
.form-input { width: 100%; padding: 18px; border: 1px solid var(--glass-border); background: var(--luxury-white); border-radius: 18px; outline: none; transition: 0.4s; font-size: 1rem; }
.form-label { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); color: #aaa; pointer-events: none; transition: 0.5s; }
.form-input:focus + .form-label, .form-input:not(:placeholder-shown) + .form-label { top: -12px; left: 15px; font-size: 0.75rem; color: var(--accent-pink); background: var(--luxury-white); padding: 0 10px; font-weight: 900; }

/* Group Booking Toggle */
.toggle-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(213, 126, 114, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(213, 126, 114, 0.1);
}

.toggle-label {
    font-weight: 700;
    color: #333;
    font-size: 0.95rem;
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: var(--accent-pink);
}

input:focus + .slider {
  box-shadow: 0 0 1px var(--accent-pink);
}

input:checked + .slider:before {
  -webkit-transform: translateX(24px);
  -ms-transform: translateX(24px);
  transform: translateX(24px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/* Calendar & Time */
.section-label { font-size: 0.8rem; font-weight: 900; text-transform: uppercase; color: var(--accent-pink); letter-spacing: 2.5px; margin-bottom: 12px; display: block; margin-top: 25px; }
.calendar-card { background: var(--luxury-white); border-radius: 25px; padding: 25px; border: 1px solid var(--glass-border); margin-bottom: 25px; box-shadow: var(--shadow-light); }
.calendar-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.cal-nav { background: rgba(213, 126, 114, 0.1); border: none; color: var(--accent-pink); width: 45px; height: 45px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: 0.3s; }
.cal-nav:hover { background: var(--accent-pink); color: white; transform: rotate(15deg) scale(1.1); }

.calendar-grid, .days-grid { display: grid !important; grid-template-columns: repeat(7, 1fr) !important; text-align: center; }
.weekday { font-size: 0.75rem; font-weight: 900; color: #ddd; padding-bottom: 15px; }
.day { padding: 14px 0; cursor: pointer; border-radius: 12px; font-weight: 700; transition: 0.3s; }
.day.active { background: var(--accent-pink) !important; color: white !important; box-shadow: 0 8px 20px rgba(213, 126, 114, 0.3); }

.time-grid { display: grid !important; grid-template-columns: repeat(auto-fill, minmax(105px, 1fr)) !important; gap: 12px; }
.time-chip { padding: 15px; background: var(--luxury-white); border-radius: 18px; border: 1px solid var(--glass-border); cursor: pointer; transition: 0.3s; font-size: 0.8rem; font-weight: 900; text-align: center; }
.time-chip.active { background: #111; color: white; transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }

/* Technician Selection Styles */
.technician-scroll-container { 
    max-height: 450px; overflow-y: auto; padding: 15px 5px; 
    margin-bottom: 25px; border-radius: 20px;
    background: rgba(0,0,0,0.02);
    border: 1px inset rgba(213, 126, 114, 0.05);
}

.technician-grid { 
    display: grid !important; 
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)) !important; 
    gap: 15px; 
}

.tech-card { 
    background: var(--luxury-white); border-radius: 20px; 
    padding: 20px 15px; text-align: center; cursor: pointer; transition: 0.4s; 
    border: 1px solid var(--glass-border); position: relative;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.tech-card:hover { transform: translateY(-8px); border-color: var(--accent-pink); }
.tech-card.active { border-color: var(--accent-pink); background: #fffafb; box-shadow: 0 15px 30px rgba(213, 126, 114, 0.15); }

.tech-img { 
    width: 80px; height: 80px; border-radius: 50%; object-fit: cover; 
    margin-bottom: 12px; border: 3px solid #fff; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.1); transition: 0.4s;
}
.tech-card.active .tech-img { border-color: var(--accent-pink); transform: scale(1.1); }

.tech-name { font-size: 0.95rem; font-weight: 800; color: #111; margin-bottom: 3px; }
.main-logo {
    max-height: 45px;
    width: auto;
    margin-bottom: 20px;
}

.footer-logo-img {
    max-height: 35px;
    width: auto;
    margin-bottom: 50px;
    filter: brightness(1.1); /* Slight pop in the dark footer */
}
.tech-role { font-size: 0.7rem; color: var(--accent-pink); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

.tech-check { 
    position: absolute; top: -10px; right: -10px; 
    background: var(--accent-pink); color: white; 
    width: 30px; height: 30px; border-radius: 50%; 
    display: flex; align-items: center; justify-content: center; 
    font-size: 0.8rem; transform: scale(0); transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.tech-card.active .tech-check { transform: scale(1); }

/* ULTRA-LUXURY IRIDESCENT MODAL - REDESIGN */
.modal { 
    display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; 
    background: #ffffff; z-index: 10000; 
    align-items: center; justify-content: center;
    overflow: hidden; padding: 20px;
}

/* Luxury Transition Curtain */
.transition-curtain {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--accent-pink);
    transform: scaleY(0); transform-origin: top;
    z-index: 10001; pointer-events: none;
}
.transition-curtain.animate {
    animation: curtainWipe 1.4s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

@keyframes curtainWipe {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

.petal-container { position: absolute; width: 100%; height: 100%; pointer-events: none; }
.petal { position: absolute; background: rgba(213, 126, 114, 0.2); border-radius: 150% 0 150% 0; animation: petalFall 8s linear infinite; }
@keyframes petalFall { 0% { transform: translateY(-100px) rotate(0deg); opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { transform: translateY(110vh) rotate(360deg); opacity: 0; } }

/* High-Visibility Luxury Aura Redesign */
.modal-bg-aura {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    overflow: hidden; pointer-events: none; z-index: 1;
}

.aura-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.35;
    animation: floatingOrb 15s infinite alternate ease-in-out;
}

.a1 { width: 350px; height: 350px; background: var(--primary-pink); top: -5%; left: -5%; animation-delay: 0s; }
.a2 { width: 400px; height: 400px; background: var(--secondary-blue); bottom: -10%; right: -5%; animation-delay: -4s; opacity: 0.25; }
.a3 { width: 250px; height: 250px; background: var(--gold); top: 30%; right: 10%; animation-delay: -8s; opacity: 0.2; }
.a4 { width: 300px; height: 300px; background: #ff1f5a; bottom: 20%; left: 10%; animation-delay: -12s; opacity: 0.2; }

@keyframes floatingOrb {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, 30px) scale(1.15); }
    100% { transform: translate(-30px, 50px) scale(0.9); }
}

/* Golden Particle Rain */
.sparkle-rain::before {
    content: '';
    position: absolute; width: 100%; height: 200%;
    background: radial-gradient(circle at 50% 50%, var(--gold) 1px, transparent 1px);
    background-size: 50px 50px;
    top: -100%; left: 0;
    opacity: 0.3;
    animation: rainMove 8s linear infinite;
}

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

.iridescent-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 0px; 
    padding: 60px;
    text-align: center;
    max-width: 580px; width: 100%;
    box-shadow: 0 40px 100px rgba(0,0,0,0.15);
    position: relative;
    z-index: 10; 
    border-top: 5px solid var(--accent-pink);
    animation: luxuryEnter 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.minimal-check { width: 60px; height: 60px; margin: 0 auto 30px; }
.checkmark-svg { width: 60px; height: 60px; display: block; }
.checkmark-circle { stroke: var(--accent-pink); stroke-width: 2; stroke-dasharray: 166; stroke-dashoffset: 166; animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards; }
.checkmark-check { transform-origin: 50% 50%; stroke: var(--accent-pink); stroke-width: 2; stroke-dasharray: 48; stroke-dashoffset: 48; animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards; }

@keyframes stroke { 100% { stroke-dashoffset: 0; } }
.halo { 
    position: absolute; width: 110%; height: 110%; border: 2px dashed rgba(213, 126, 114, 0.3); 
    border-radius: 50%; animation: rotateHalo 15s linear infinite; 
}

@keyframes rotateHalo { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes luxuryEnter { from { transform: scale(0.8) translateY(100px); opacity: 0; } to { transform: scale(1) translateY(0); opacity: 1; } }

.success-title { 
    font-family: var(--font-heading); font-size: 3rem; color: #111; 
    margin-bottom: 5px; font-weight: 300; text-transform: uppercase; letter-spacing: 5px;
}
.success-line { width: 30px; height: 1px; background: var(--accent-pink); margin: 0 auto 25px; }
.success-msg { font-size: 1rem; color: #666; line-height: 1.6; margin-bottom: 30px; font-weight: 300; }

.ref-box { 
    display: block; padding: 15px 0; background: transparent; border-top: 1px solid #eee; border-bottom: 1px solid #eee;
    color: #999; font-weight: 300; letter-spacing: 4px; font-size: 0.7rem; margin-bottom: 35px;
}

.group-info-modal {
    background: rgba(213, 126, 114, 0.05);
    padding: 15px;
    border-radius: 20px;
    margin-bottom: 25px;
    font-size: 0.9rem;
    display: inline-block;
    min-width: 200px;
}

/* Empty Cart Suggestions */
.empty-cart-state {
    text-align: center; color: #aaa; margin-top: 30px;
}
.cart-suggestions {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px dashed #eee;
}
.suggestion-label {
    display: block; font-size: 0.8rem; color: #888; margin-bottom: 15px; text-transform: uppercase; letter-spacing: 1px;
}
.suggestion-chips {
    display: flex; gap: 10px; justify-content: flex-start;
    padding: 10px 0;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}

.suggestion-chips::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.suggestion-chips-inner {
    display: flex; gap: 10px;
    width: max-content;
}

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

.suggestion-chip {
    flex-shrink: 0;
    background: #fdf2f0; border: 1px solid var(--glass-border);
    padding: 10px 20px; border-radius: 100px; color: var(--accent-pink);
    font-size: 0.85rem; font-weight: 600; cursor: pointer; transition: 0.3s;
}

.suggestion-chip:hover {
    background: var(--accent-pink); color: white; transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(213, 126, 114, 0.2);
}

/* Pause on hover */
.suggestion-chips:hover .suggestion-chips-inner {
    animation-play-state: paused;
}

/* Suggestion Navigation Arrows */
.suggestion-chips-container {
    position: relative;
    display: flex; align-items: center;
}

.nav-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 30px; height: 30px; border-radius: 50%;
    background: white; border: 1px solid #eee;
    color: var(--accent-pink); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    z-index: 10; transition: 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    opacity: 0;
}

.suggestion-chips-container:hover .nav-arrow { opacity: 1; }
.nav-arrow:hover { background: var(--accent-pink); color: white; border-color: var(--accent-pink); }

.nav-arrow.left { left: -15px; }
.nav-arrow.right { right: -15px; }

/* Booking Summary Enhancements */
.selected-services-list { margin-top: 15px; }
.selected-item { 
    display: flex; justify-content: space-between; align-items: center; 
    padding: 18px 25px; background: var(--luxury-white); 
    border-radius: 20px; margin-bottom: 12px; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.03); 
    border: 1px solid rgba(213, 126, 114, 0.1);
    animation: slideIn 0.5s ease-out;
}
.selected-details { display: flex; flex-direction: column; gap: 4px; }
.selected-name { font-size: 0.95rem; font-weight: 700; color: #333; }
.selected-price { font-size: 1.1rem; font-weight: 900; color: var(--accent-pink); font-family: var(--font-heading); }
@keyframes slideIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }

.remove-btn { 
    background: #fff0f3; color: var(--accent-pink); border: 1px solid var(--primary-pink); 
    width: 38px; height: 38px; border-radius: 50%; cursor: pointer; 
    transition: 0.3s; display: flex; align-items: center; justify-content: center; font-size: 0.9rem;
}
.remove-btn:hover { background: var(--accent-pink); color: white; transform: rotate(15deg) scale(1.1); }

.total-section { 
    border-top: 2px solid rgba(213, 126, 114, 0.1); padding-top: 30px; margin-top: 20px;
    display: flex; justify-content: space-between; align-items: center;
}
.total-label { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--luxury-black); }
.total-amount { font-family: var(--font-heading); font-size: 2rem; font-weight: 900; color: var(--accent-pink); text-shadow: 0 0 10px rgba(213, 126, 114, 0.2); }

.btn-book { 
    width: 100%; padding: 22px; border-radius: 25px; border: none; 
    background: linear-gradient(135deg, var(--accent-pink), #ff1f5a); 
    color: white; font-weight: 900; letter-spacing: 3px; cursor: pointer; 
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 35px rgba(213, 126, 114, 0.4); margin-top: 25px;
    display: flex; align-items: center; justify-content: center; gap: 15px;
}
.btn-book:hover { transform: translateY(-7px) scale(1.02); box-shadow: 0 20px 45px rgba(213, 126, 114, 0.5); }
.btn-book:active { transform: translateY(-2px); }

/* Animation and UI Utilities */
.toast-container { position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 99999; pointer-events: none; }
.toast { background: var(--luxury-black); color: white; padding: 15px 35px; border-radius: 100px; font-weight: 600; margin-bottom: 10px; animation: toastIn 0.3s forwards, toastOut 0.3s 2.7s forwards; box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
@keyframes toastIn { from { transform: translateY(100px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes toastOut { from { transform: translateY(0); opacity: 1; } to { transform: translateY(-20px); opacity: 0; } }

.reveal { animation: revealSection 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards; }
@keyframes revealSection { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }



.flow-intro { margin-bottom: 30px; text-align: center; position: relative; }
.eyebrow { 
    display: inline-block; 
    font-size: 0.75rem; 
    font-weight: 900; 
    letter-spacing: 4px; 
    color: var(--accent-pink); 
    margin-bottom: 10px; 
    text-transform: uppercase;
}
.flow-title { 
    font-family: var(--font-heading); 
    font-size: 2.8rem; 
    color: #111; 
    letter-spacing: -1px;
}

@media (max-width: 1100px) {
    .booking-experience { grid-template-columns: 1fr; }
    .booking-summary-card { position: relative; top: 0; padding: 30px 20px; }
    .flow-title { font-size: 2.8rem; }
}

/* Branch Gallery Section - Ultra Luxury Refinement */
.gallery-section { 
    padding: 150px 0; 
    background: linear-gradient(180deg, #fff, #fff5f8); 
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: 'NAILURE';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20rem;
    font-weight: 900;
    color: rgba(213, 126, 114, 0.03);
    z-index: 0;
    pointer-events: none;
    letter-spacing: 50px;
}

.section-title { 
    font-family: var(--font-heading); 
    font-size: 3rem; 
    text-align: center; 
    margin-bottom: 60px; 
    color: #111; 
    letter-spacing: -1px;
    position: relative;
}
.section-title::after {
    content: 'Elegance Redefined';
    display: block;
    font-family: var(--font-accent);
    font-size: 1.8rem;
    color: var(--accent-pink);
    margin-top: 10px;
    letter-spacing: 2px;
}

.branch-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 80px; 
    position: relative; 
    z-index: 1;
}

.branch-wrapper {
    background: var(--luxury-white);
    padding: 60px 40px;
    border-radius: 60px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    transition: var(--transition-smooth);
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
}
.branch-wrapper:hover {
    box-shadow: 0 40px 100px rgba(0,0,0,0.08);
}

.branch-info-header { text-align: center; margin-bottom: 45px; }

.branch-tag {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.branch-thaltej .branch-tag { background: var(--secondary-blue); color: white; }
.branch-vastrapur .branch-tag { 
    background: var(--secondary-blue); 
    color: white; 
    opacity: 0.9;
}

.branch-name { 
    font-family: var(--font-heading); 
    font-size: 1.8rem; 
    color: var(--secondary-blue); 
    margin-bottom: 10px; 
    letter-spacing: 2px;
}
.branch-vibe {
    font-family: var(--font-accent);
    font-size: 1.6rem;
    color: #888;
}

.branch-thaltej .branch-vibe { color: #5c78d3; }
.branch-vastrapur .branch-vibe { color: var(--accent-pink); }

.branch-gallery { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 20px; 
}

.gallery-item { 
    height: 320px; 
    border-radius: 35px; 
    overflow: hidden; 
    box-shadow: 0 20px 50px rgba(0,0,0,0.06); 
    cursor: zoom-in;
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
}

.branch-location-footer {
    margin-top: 50px;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    color: #555;
    opacity: 0.7;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.branch-location-footer i { border-radius: 50%; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: #f8f8f8; color: var(--accent-pink); }

.gallery-item::after {
    content: 'VIEW';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: rgba(255, 255, 255, 0.9);
    color: var(--accent-pink);
    padding: 10px 25px;
    border-radius: 100px;
    font-weight: 900;
    letter-spacing: 3px;
    font-size: 0.7rem;
    opacity: 0;
    transition: 0.5s;
    backdrop-filter: blur(10px);
}

.gallery-item img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: 1.2s cubic-bezier(0.19, 1, 0.22, 1); 
}

.gallery-item:hover { 
    transform: translateY(-15px) scale(1.02); 
    box-shadow: 0 40px 80px rgba(213, 126, 114, 0.2);
    border-color: var(--accent-pink);
}
.gallery-item:hover img { 
    transform: scale(1.1); 
    filter: brightness(0.8);
}
.gallery-item:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.gallery-item:nth-child(even) { margin-top: 40px; }
.gallery-item:nth-child(odd) { margin-bottom: 40px; }

.lightbox { 
    display: none; position: fixed; z-index: 999999; top: 0; left: 0; width: 100%; height: 100%; 
    background: rgba(0,0,0,0.95); backdrop-filter: blur(25px); align-items: center; justify-content: center;
    animation: fadeIn 0.4s forwards;
}
.lightbox-content { 
    max-width: 85%; max-height: 85%; 
    border-radius: 30px; 
    box-shadow: 0 0 100px rgba(213, 126, 114, 0.3); 
    border: 2px solid rgba(255,255,255,0.1);
    animation: zoomIn 0.6s cubic-bezier(0.19, 1, 0.22, 1); 
}
.close-lightbox { 
    position: absolute; top: 50px; right: 50px; 
    color: white; font-size: 4rem; cursor: pointer; 
    transition: 0.3s;
}
.close-lightbox:hover { color: var(--accent-pink); transform: rotate(90deg); }

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

@media (max-width: 1200px) {
    .branch-grid { gap: 40px; }
    .gallery-item { height: 300px; }
}

@media (max-width: 900px) {
    .branch-grid { grid-template-columns: 1fr; }
    .branch-gallery { grid-template-columns: repeat(2, 1fr); }
    .gallery-item:nth-child(even), .gallery-item:nth-child(odd) { margin: 0; }
}

/* Deluxe Animated Footer - Theme Based */
.main-footer {
    background: #fff;
    padding: 15px 0 10px; /* Further reduced for ultra-compact feel */
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(213, 126, 114, 0.1);
}

/* Blue Accents */
.blue-petal { background: rgba(74, 144, 226, 0.2) !important; }
.b-sparkle { background: var(--secondary-blue) !important; box-shadow: 0 0 15px rgba(26, 52, 156, 0.4) !important; }

.footer-aura {
    display: none;
}

/* Service Price & Selection */
.service-price {
    font-weight: 700;
    color: var(--secondary-blue);
    font-size: 1.15rem;
}

.select-service-btn {
    border: 1px solid var(--secondary-blue);
    color: var(--secondary-blue);
    background: transparent;
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.select-service-btn:hover {
    background: var(--secondary-blue);
    color: white;
    box-shadow: 0 10px 20px rgba(26, 52, 156, 0.3);
}

@keyframes auraPulse { 
    0% { transform: scale(1) rotate(0deg); opacity: 0.5; }
    50% { transform: scale(1.2) rotate(15deg); opacity: 1; }
    100% { transform: scale(1) rotate(0deg); opacity: 0.5; }
}

.luxury-swirls { display: none; }
.swirl { position: absolute; width: 400px; height: 400px; opacity: 0.5; }
.swirl-1 { top: -100px; left: -100px; animation: rotateSwirl 30s infinite linear; }
.swirl-2 { bottom: -100px; right: -100px; animation: rotateSwirl 45s infinite linear reverse; }

@keyframes rotateSwirl { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.footer-petals {
    display: none;
}
.petal { position: absolute; width: 15px; height: 15px; background: rgba(213, 126, 114, 0.2); border-radius: 100% 0 100% 0; animation: petalFloat 7s infinite linear; }
.p1 { left: 5%; animation-delay: 0s; }
.p2 { left: 35%; animation-delay: 2s; width: 22px; height: 22px; }
.p3 { left: 65%; animation-delay: 4s; }
.p4 { left: 95%; animation-delay: 1s; width: 12px; height: 12px; }
.p5 { left: 20%; animation-delay: 5s; }
.p6 { left: 50%; animation-delay: 3s; width: 18px; height: 18px; }
.p7 { left: 80%; animation-delay: 6s; }
.p8 { left: 10%; animation-delay: 2s; width: 10px; height: 10px; }
.p9 { left: 45%; animation-delay: 8s; }
.p10 { left: 75%; animation-delay: 4s; }
.p11 { left: 30%; animation-delay: 1s; width: 20px; height: 20px; }
.p12 { left: 88%; animation-delay: 5s; }

@keyframes petalFloat {
    0% { transform: translateY(120%) rotate(0deg); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { transform: translateY(-120%) rotate(1440deg); opacity: 0; }
}

.footer-sparkle-bg {
    display: none;
}

.f-sparkle {
    position: absolute;
    background: var(--accent-pink);
    border-radius: 50%;
    filter: blur(1px);
    box-shadow: 0 0 10px var(--accent-pink);
    animation: sparkleBloom 5s infinite ease-in-out;
}

.s1 { width: 12px; height: 12px; left: 15%; top: 20%; }
.s2 { width: 18px; height: 18px; left: 82%; top: 45%; }
.s3 { width: 8px; height: 8px; left: 42%; top: 65%; }
.s4 { width: 14px; height: 14px; left: 8%; top: 55%; }
.s5 { width: 10px; height: 10px; left: 72%; top: 75%; }
.s6 { width: 15px; height: 15px; left: 35%; top: 30%; }
.s7 { width: 12px; height: 12px; left: 60%; top: 15%; }
.s8 { width: 9px; height: 9px; left: 90%; top: 85%; }
.s9 { width: 14px; height: 14px; left: 25%; top: 70%; }
.s10 { width: 11px; height: 11px; left: 50%; top: 50%; }

@keyframes sparkleBloom {
    0%, 100% { transform: scale(1); opacity: 0.2; box-shadow: 0 0 0px var(--accent-pink); }
    50% { transform: scale(1.6); opacity: 0.5; box-shadow: 0 0 15px var(--accent-pink); }
}

.footer-content {
    text-align: center;
    position: relative;
    z-index: 5;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 18px;
    margin-bottom: 80px;
    background: linear-gradient(90deg, #111, var(--accent-pink), #111, #edb7b0, #111);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shineText 4s linear infinite;
    position: relative;
    display: inline-block;
}

@keyframes shineText { to { background-position: 200% center; } }

.footer-logo::after {
    content: '';
    position: absolute;
    bottom: -15px; left: 50%; width: 0; height: 2px;
    background: var(--accent-pink);
    transform: translateX(-50%);
    animation: lineExtend 4s infinite alternate;
}

@keyframes lineExtend { from { width: 30px; opacity: 0.2; } to { width: 150px; opacity: 1; } }

.footer-tagline {
    font-family: var(--font-accent);
    font-size: 1.8rem;
    color: var(--accent-pink);
    margin-bottom: 80px; /* Even more spacing */
}

.footer-links {
    margin-bottom: 20px; /* Further reduced */
    display: flex;
    justify-content: center;
    gap: 50px;
}

.social-link {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: white;
    color: #111;
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.social-link::before {
    content: '';
    position: absolute;
    width: 100%; height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(213, 126, 114, 0.3);
    animation: pulseGlow 2.5s infinite;
}

@keyframes pulseGlow {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.6); opacity: 0; }
}

.social-link:hover {
    background: linear-gradient(135deg, var(--accent-pink), var(--secondary-blue));
    color: white;
    transform: translateY(-10px) rotate(360deg);
    box-shadow: 0 20px 40px rgba(74, 144, 226, 0.3);
}

.copyright-section {
    border-top: 1px solid rgba(0,0,0,0.03);
    padding-top: 5px;
    margin-top: 5px;
}

.copyright-text { font-size: 0.9rem; color: #888; letter-spacing: 2px; }
.signature { font-size: 0.8rem; color: #bbb; letter-spacing: 3px; text-transform: uppercase; margin-top: 15px; }
.heart { color: var(--accent-pink); animation: heartBeat 1.5s infinite; display: inline-block; }

/* Light Sweep Animation */
.main-footer::after {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: lightSweep 6s infinite;
    pointer-events: none;
}

@keyframes lightSweep { 0% { left: -100%; } 100% { left: 200%; } }

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.copyright-text {
    font-size: 0.85rem;
    color: #999;
    letter-spacing: 1.5px;
}

.scroll-top {
    font-size: 0.75rem;
    font-weight: 900;
    color: #111;
    text-decoration: none;
    letter-spacing: 3px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.scroll-top:hover { color: var(--accent-pink); transform: translateX(5px); }

.heart { color: var(--accent-pink); animation: heartBeat 1.5s infinite; display: inline-block; margin-left: 5px; }

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

/* Branch Selection & Gallery Modal */
.form-label-static {
    font-size: 0.8rem; color: #888; margin-bottom: 8px; display: block;
    text-transform: uppercase; letter-spacing: 1px; font-weight: 600;
}

/* Custom Luxury Dropdown */
.custom-select-wrapper {
    position: relative;
    user-select: none;
    z-index: 9999; /* Boosted to ensure clickability over all other elements */
}

.custom-select-trigger {
    background: rgba(255, 255, 255, 0.8); 
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(213, 126, 114, 0.2);
    padding: 18px 25px; 
    border-radius: 18px;
    display: flex; justify-content: space-between; align-items: center;
    cursor: pointer !important; 
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    font-family: var(--font-body); 
    font-size: 0.95rem;
    color: #222; /* High-end Charcoal for clarity */
    font-weight: 700;
    pointer-events: auto; /* Force clickability */
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    position: relative;
    z-index: 10;
}

.custom-select-trigger:hover { 
    border-color: var(--accent-pink); 
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(213, 126, 114, 0.1);
}

.custom-select-wrapper.open .custom-select-trigger {
    border-color: var(--accent-pink); 
    border-radius: 18px 18px 0 0;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.custom-options {
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; 
    border: 1.5px solid var(--accent-pink);
    border-top: none; 
    border-radius: 0 0 18px 18px;
    z-index: 100; 
    display: none;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    animation: dropdownFade 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    overflow: hidden;
}

.custom-select-wrapper.open .custom-options { display: block; }

.custom-option {
    padding: 20px 25px; 
    cursor: pointer; 
    transition: 0.3s;
    border-bottom: 1px solid #f8f8f8;
}

.custom-option:hover { 
    background: #fdf2f0; 
    padding-left: 30px; /* Micro-interaction: slide on hover */
}

.option-name { 
    font-weight: 800; 
    color: var(--luxury-black); 
    font-size: 1rem; 
    letter-spacing: -0.2px;
}

.option-desc { 
    font-size: 0.8rem; 
    color: #888; 
    margin-top: 4px; 
    font-weight: 300;
}

.btn-gallery-trigger {
    margin-top: 15px; background: #fdf2f0; border: 1px solid var(--accent-pink);
    color: var(--accent-pink); padding: 12px 20px; border-radius: 100px;
    font-size: 0.85rem; font-weight: 600; cursor: pointer; transition: 0.3s;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    width: 100%;
}
.btn-gallery-trigger:hover { background: var(--accent-pink); color: white; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(213, 126, 114, 0.15); }

.branch-modal {
    display: none; position: fixed; z-index: 100000; left: 0; top: 0;
    width: 100%; height: 100%; background: rgba(255,255,255,0.95);
    backdrop-filter: blur(15px); justify-content: center; align-items: center;
    padding: 20px;
}
.branch-modal-content {
    background: white; width: 100%; max-width: 950px; max-height: 85vh;
    border-radius: 40px; position: relative; padding: 60px; /* More luxurious padding */
    overflow-y: auto; box-shadow: 0 50px 150px rgba(0,0,0,0.1);
    animation: modalZoom 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
@keyframes modalZoom { from { transform: translateY(30px) scale(0.95); opacity: 0; } to { transform: translateY(0) scale(1); opacity: 1; } }

.close-branch-modal {
    position: absolute; right: 30px; top: 25px; font-size: 35px;
    color: #ccc; cursor: pointer; transition: 0.3s;
}
.close-branch-modal:hover { color: var(--accent-pink); transform: rotate(90deg); }

.branch-modal-header { text-align: center; margin-bottom: 40px; }
.branch-modal-header h2 { font-family: var(--font-heading); font-size: 2.5rem; color: var(--primary-blue); margin-bottom: 8px; }
.branch-modal-header p { color: var(--accent-pink); font-size: 1.4rem; }

.branch-gallery-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}
.branch-gallery-grid img {
    width: 100%; height: 250px; object-fit: cover; border-radius: 20px;
    cursor: pointer; transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.branch-gallery-grid img:hover { transform: scale(1.05); filter: brightness(1.05); box-shadow: 0 15px 40px rgba(0,0,0,0.1); }

@media (max-width: 600px) {
    .branch-modal-content { padding: 40px 20px; border-radius: 20px; }
    .branch-gallery-grid { grid-template-columns: repeat(1, 1fr); }
    .branch-modal-header h2 { font-size: 2rem; }
}

/* Instagram Showcase Section */
.instagram-section {
    padding: 40px 0; /* Reduced for more compact feel */
    background: transparent;
    text-align: center;
}

.insta-header { margin-bottom: 50px; }
.insta-tag {
    display: block; font-size: 0.8rem; color: var(--accent-pink);
    letter-spacing: 3px; font-weight: 700; margin-bottom: 10px;
}
.insta-handle {
    font-size: 1.8rem;
    color: var(--primary-blue); text-decoration: none;
    transition: 0.3s;
}
.insta-handle:hover { color: var(--accent-pink); }

.insta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.insta-item {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
}

.insta-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.insta-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(213, 126, 114, 0.4);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: 0.4s;
    color: white; font-size: 2rem;
}

.insta-item:hover img { transform: scale(1.1); }
.insta-item:hover .insta-overlay { opacity: 1; }

@media (max-width: 768px) {
    .insta-grid { grid-template-columns: repeat(2, 1fr); padding: 0 20px; }
}
