/* -----------------------------------------
   UDAAN BY UPASANA - LUXURY DESIGN SYSTEM
   Theme: Clean White, Soft Blush Pink & Champagne Gold
----------------------------------------- */

:root {
    /* Color Palette - Clean, Light Luxury Pink & White */
    --primary-rose: #C06C78;
    --primary-pink: #F5CAC3;
    --primary-blush: #FFE5EC;
    --gold-champagne: #D4AF37;
    --gold-hover: #B89025;
    
    --bg-light: #FFFFFF;
    --bg-light-accent: #FFF5F6;
    --bg-card: #FFFFFF;
    
    /* Text Colors */
    --text-dark: #2A161A;
    --text-muted: #8C757B;
    --text-light: #F7EAEB;
    --text-white: #FFFFFF;
    
    /* Glassmorphism & Borders */
    --glass-bg: rgba(255, 255, 255, 0.88);
    --gold-border: rgba(212, 175, 55, 0.35);
    --rose-border: rgba(192, 108, 120, 0.16);
    
    /* Premium Soft Shadows */
    --soft-shadow: 0 10px 30px rgba(192, 108, 120, 0.05);
    --card-shadow: 0 15px 40px rgba(192, 108, 120, 0.08);
    --gold-shadow: 0 8px 25px rgba(212, 175, 55, 0.15);
    --dark-shadow: 0 20px 45px rgba(42, 22, 26, 0.12);

    /* Fonts */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Outfit', sans-serif;
    --font-script: 'Playfair Display', serif;

    /* Hero overlay gradient */
    --hero-overlay: linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.82) 40%, rgba(255, 255, 255, 0.1) 100%);
}

/* Night Couture (Dark Theme) Variables */
[data-theme="dark"] {
    --bg-light: #0D0607;
    --bg-light-accent: #170C0E;
    --bg-card: #12090A;
    
    --text-dark: #F7EAEB;
    --text-muted: #A69297;
    --text-light: #2A161A;
    
    --glass-bg: rgba(13, 6, 7, 0.9);
    --gold-border: rgba(212, 175, 55, 0.5);
    --rose-border: rgba(192, 108, 120, 0.28);
    
    --soft-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    --card-shadow: 0 15px 40px rgba(0, 0, 0, 0.65);
    --gold-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    --dark-shadow: 0 20px 45px rgba(0, 0, 0, 0.8);

    --hero-overlay: linear-gradient(90deg, rgba(13, 6, 7, 0.96) 0%, rgba(13, 6, 7, 0.85) 45%, rgba(13, 6, 7, 0.15) 100%);
}

/* -----------------------------------------
   BASE STYLING & RESET
----------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none; /* Hide default cursor for custom cursor experience */
}

html {
    scroll-behavior: auto;
    font-size: 16px;
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-family: var(--font-body);
}

/* Lenis Smooth Scroll Overrides */
html.lenis, html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overflow: clip;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

body {
    overflow-x: hidden;
    line-height: 1.6;
    background-color: var(--bg-light);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-light-accent);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-pink);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-champagne);
}

/* Container Utility */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography Details */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--text-dark);
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-rose);
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.section-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section-title .highlight {
    font-family: var(--font-script);
    font-style: italic;
    color: var(--gold-champagne);
    font-weight: 400;
}

.section-desc {
    font-family: var(--font-body);
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 24px auto;
}

.text-center-wrapper {
    text-align: center;
    margin-bottom: 60px;
}

/* Gold Divider */
.gold-divider {
    height: 1px;
    width: 100px;
    background: linear-gradient(90deg, transparent, var(--gold-champagne), transparent);
    margin: 20px 0;
}

.gold-divider.center {
    margin: 20px auto;
}

/* Grid layout utility */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* -----------------------------------------
   CUSTOM CURSOR STYLING
----------------------------------------- */
.custom-cursor {
    width: 8px;
    height: 8px;
    background: var(--primary-rose);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1), height 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.custom-cursor-glow {
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--primary-pink);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                height 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                border-radius 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cursor-text {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--text-dark);
    text-transform: uppercase;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    pointer-events: none;
}

/* Cursor active states */
.custom-cursor-glow.active {
    width: 55px;
    height: 55px;
    border-color: var(--gold-champagne);
    background-color: rgba(255, 245, 246, 0.4);
}

.custom-cursor-glow.viewing {
    width: 80px;
    height: 80px;
    background-color: var(--gold-champagne);
    border-color: transparent;
}

.custom-cursor-glow.viewing .cursor-text {
    opacity: 1;
    transform: scale(1);
    color: var(--text-white);
}

.custom-cursor-glow.choosing {
    width: 90px;
    height: 90px;
    background-color: var(--primary-rose);
    border-color: transparent;
}

.custom-cursor-glow.choosing .cursor-text {
    opacity: 1;
    transform: scale(1);
    color: var(--text-white);
}

/* -----------------------------------------
   NAVBAR & HEADER
----------------------------------------- */
.luxury-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 900;
    transition: background-color 0.4s, padding 0.4s, border-bottom 0.4s;
    padding: 24px 0;
    border-bottom: 1px solid transparent;
}

.luxury-header.scrolled {
    background-color: var(--glass-bg);
    backdrop-filter: blur(20px);
    padding: 14px 0;
    border-bottom: 1px solid var(--rose-border);
    box-shadow: 0 4px 30px rgba(192, 108, 120, 0.03);
}

.header-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 2px;
    line-height: 1;
}

.logo-subtitle {
    font-family: var(--font-body);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--gold-champagne);
    margin-top: 2px;
    font-weight: 500;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-item {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
    padding: 6px 0;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--primary-rose);
    transition: width 0.3s;
}

.nav-item:hover,
.nav-item.active {
    color: var(--text-dark);
}

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

/* Floating Actions Buttons */
.btn-primary {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    background: linear-gradient(135deg, var(--gold-champagne), var(--primary-rose));
    color: var(--text-white);
    padding: 14px 28px;
    border-radius: 0;
    border: none;
    box-shadow: var(--gold-shadow);
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    background: transparent;
    color: var(--text-dark);
    padding: 12px 26px;
    border-radius: 0;
    border: 1px solid var(--rose-border);
    transition: background-color 0.3s, border-color 0.3s, transform 0.3s;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: var(--bg-light-accent);
    border-color: var(--primary-rose);
    transform: translateY(-2px);
}

.nav-btn {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    background: transparent;
    color: var(--primary-rose);
    border: 1px solid var(--primary-rose);
    padding: 10px 20px;
    transition: all 0.3s;
}

.nav-btn:hover {
    background: var(--primary-rose);
    color: var(--text-white);
    box-shadow: var(--soft-shadow);
    transform: translateY(-2px);
}

/* Mobile Nav Toggler */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    padding: 4px;
}

.menu-toggle .bar {
    width: 25px;
    height: 2px;
    background-color: var(--text-dark);
    transition: transform 0.3s, opacity 0.3s;
}

/* -----------------------------------------
   HERO SECTION
----------------------------------------- */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    background-color: var(--bg-light-accent);
}

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

#heroParticles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transform: scale(1.05);
    animation: slowZoom 25s infinite alternate ease-in-out;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--hero-overlay);
    z-index: 4;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1100px;
    padding-left: 8%;
    padding-right: 24px;
    will-change: transform, opacity;
}

.hero-tag {
    color: var(--primary-rose);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
    font-family: var(--font-body);
    font-weight: 600;
}

.hero-title {
    font-size: clamp(2.5rem, 5.2vw, 4.8rem);
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
    max-width: 950px;
}

/* Awwwards Inline Image Pills inside H1 */
.inline-img-pill {
    display: inline-block;
    vertical-align: middle;
    width: clamp(60px, 8vw, 100px);
    height: clamp(35px, 4vw, 50px);
    border-radius: 30px;
    background-size: cover;
    background-position: center;
    border: 1px solid var(--gold-border);
    margin: 0 10px;
    box-shadow: var(--soft-shadow);
    transform: scale(0.95);
    animation: pulsePill 4s infinite alternate ease-in-out;
}

@keyframes pulsePill {
    0% { transform: scale(0.95) rotate(-1deg); }
    100% { transform: scale(1.03) rotate(1deg); }
}

.hero-desc {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-bottom: 40px;
    max-width: 650px;
    line-height: 1.8;
}

.hero-ctas {
    display: flex;
    gap: 20px;
}

/* Scroll down indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.scroll-indicator:hover {
    opacity: 1;
}

.mouse-icon {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    position: relative;
    display: block;
}

.mouse-icon .wheel {
    width: 4px;
    height: 8px;
    background-color: var(--primary-rose);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollMouse 1.8s infinite;
}

.scroll-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-muted);
}

/* Animations */
@keyframes slowZoom {
    0% { transform: scale(1.02) translate(0, 0); }
    100% { transform: scale(1.12) translate(-1%, 1%); }
}

@keyframes scrollMouse {
    0% { opacity: 0; transform: translate(-50%, 0); }
    30% { opacity: 1; }
    100% { opacity: 0; transform: translate(-50%, 15px); }
}

/* -----------------------------------------
   INFINITE TEXT MARQUEE
----------------------------------------- */
.marquee-section {
    background-color: var(--text-dark);
    padding: 30px 0;
    overflow: hidden;
    border-top: 1px solid var(--gold-border);
    border-bottom: 1px solid var(--gold-border);
    position: relative;
    z-index: 10;
}

.marquee-container {
    display: flex;
    width: 100%;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    gap: 40px;
    animation: infiniteScroll 25s linear infinite;
    align-items: center;
}

.marquee-track span {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    text-transform: uppercase;
    color: var(--text-white);
    letter-spacing: 2px;
    font-weight: 300;
}

.marquee-bullet {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--gold-champagne);
}

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

/* -----------------------------------------
   STATS BANNER
----------------------------------------- */
.stats-banner {
    background-color: var(--bg-light-accent);
    border-bottom: 1px solid var(--rose-border);
    padding: 60px 0;
    position: relative;
    z-index: 10;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    padding: 0 24px;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 600;
    color: var(--primary-rose);
    line-height: 1;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

/* -----------------------------------------
   ABOUT SECTION
----------------------------------------- */
.about-section {
    padding: 160px 0;
    background-color: var(--bg-light);
}

.about-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gold-frame {
    border: 1px solid var(--rose-border);
    padding: 20px;
    position: relative;
    display: inline-block;
    background-color: var(--bg-light);
}

.gold-frame::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 30px;
    height: 30px;
    border-top: 2px solid var(--gold-champagne);
    border-left: 2px solid var(--gold-champagne);
}

.gold-frame::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    border-bottom: 2px solid var(--gold-champagne);
    border-right: 2px solid var(--gold-champagne);
}

.about-img {
    width: 100%;
    max-width: 420px;
    height: auto;
    display: block;
    box-shadow: var(--card-shadow);
}

.experience-badge {
    position: absolute;
    bottom: -15px;
    right: 10%;
    background-color: var(--bg-light);
    border: 1px solid var(--gold-champagne);
    padding: 15px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--soft-shadow);
}

.badge-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--gold-champagne);
    font-weight: 700;
    line-height: 1;
}

.badge-txt {
    font-family: var(--font-body);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dark);
}

.about-para {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.8;
}

.luxury-quote {
    border-left: 2.5px solid var(--primary-rose);
    padding-left: 24px;
    margin: 40px 0 0 0;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-style: italic;
    color: var(--text-dark);
    background-color: var(--bg-light-accent);
    padding: 20px 24px;
}

.luxury-quote cite {
    display: block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-top: 12px;
}

/* -----------------------------------------
   THE GAPLESS BENTO GRID (SERVICES)
----------------------------------------- */
.services-section {
    padding: 160px 0;
    background-color: var(--bg-light);
    border-top: 1px solid var(--rose-border);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-flow: dense;
    gap: 30px;
    margin-top: 60px;
}

.bento-card {
    background-color: var(--bg-light-accent);
    border: 1px solid var(--rose-border);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 320px;
    padding: 40px;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: transform, box-shadow;
}

.bento-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-champagne);
    box-shadow: var(--card-shadow);
}

/* Large Bento Box (Bridal) */
.bento-card-large {
    grid-column: span 2;
    grid-row: span 1;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
}

/* Vertical Bento Box (Masterclass) */
.bento-card-vertical {
    grid-column: span 1;
    grid-row: span 2;
    justify-content: space-between;
}

.bento-img-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.bento-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.5s;
    filter: grayscale(40%) contrast(110%);
}

.bento-card:hover .bento-img {
    transform: scale(1.08);
    opacity: 0.3;
}

.bento-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    justify-content: flex-end;
}

.bento-card-vertical .bento-content {
    justify-content: flex-end;
    gap: 20px;
}

.card-category {
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-rose);
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.bento-card h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.2;
}

.bento-card p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 450px;
}

.bento-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.bento-list li {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.bento-list li::before {
    content: '✦';
    color: var(--gold-champagne);
    position: absolute;
    left: 0;
}

.bento-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-top: 1px solid rgba(192, 108, 120, 0.1);
    padding-top: 20px;
    margin-top: auto;
}

.bento-price {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--primary-rose);
}

.bento-cta-arrow {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    color: var(--text-dark);
    transition: color 0.3s, transform 0.3s;
}

.bento-card:hover .bento-cta-arrow {
    color: var(--primary-rose);
    transform: translateX(4px);
}

/* -----------------------------------------
   INTERACTIVE LOOK FINDER
----------------------------------------- */
.look-finder-section {
    padding: 160px 0;
    background-color: var(--bg-light-accent);
    border-top: 1px solid var(--rose-border);
}

.quiz-card-container {
    background-color: var(--bg-card);
    border: 1px solid var(--rose-border);
    box-shadow: var(--card-shadow);
    padding: 60px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.quiz-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: rgba(192, 108, 120, 0.05);
}

.progress-fill {
    height: 100%;
    width: 33.33%;
    background: linear-gradient(90deg, var(--primary-rose), var(--gold-champagne));
    transition: width 0.4s ease-out;
}

.quiz-step {
    display: none;
    animation: fadeInQuiz 0.6s forwards;
}

.quiz-step.active {
    display: block;
}

.quiz-question {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 40px;
    text-align: center;
}

.quiz-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 50px;
}

.quiz-option-card {
    background-color: var(--bg-light-accent);
    border: 1px solid transparent;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.quiz-option-card:hover {
    background-color: var(--bg-light);
    border-color: var(--primary-pink);
    transform: translateY(-5px);
    box-shadow: var(--soft-shadow);
}

.quiz-option-card.selected {
    border-color: var(--primary-rose);
    background-color: #FFF0F2;
    box-shadow: var(--soft-shadow);
}

.option-icon {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-rose);
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: block;
    transition: transform 0.3s;
}

.quiz-option-card:hover .option-icon {
    transform: scale(1.08);
}

.quiz-option-card h4 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.quiz-option-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: var(--font-body);
}

.quiz-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--rose-border);
    padding-top: 30px;
}

/* Quiz Results Panel styling */
.result-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.result-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.result-tag {
    color: var(--primary-rose);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
}

.result-title {
    font-size: 2.8rem;
    color: var(--primary-rose);
    margin-bottom: 16px;
}

.result-desc {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.look-palette {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.look-palette span {
    font-size: 0.85rem;
    font-family: var(--font-body);
    color: var(--text-dark);
}

.palette-colors {
    display: flex;
    gap: 10px;
}

.color-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.package-box {
    background-color: var(--bg-light-accent);
    border: 1px dashed var(--primary-rose);
    padding: 20px;
    width: 100%;
    margin-bottom: 30px;
}

.package-box h5 {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.package-box p {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.result-image-box {
    border: 1px solid var(--rose-border);
    padding: 10px;
    background-color: var(--bg-light-accent);
}

.result-img {
    width: 100%;
    height: auto;
    display: block;
}

/* -----------------------------------------
   PORTFOLIO GALLERY
----------------------------------------- */
.gallery-section {
    padding: 160px 0;
    background-color: var(--bg-light-accent);
    border-top: 1px solid var(--rose-border);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 24px;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--rose-border);
    color: var(--text-muted);
    padding: 10px 24px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    color: var(--text-white);
    background-color: var(--primary-rose);
    border-color: var(--primary-rose);
    box-shadow: var(--soft-shadow);
}

.gallery-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.gallery-item {
    position: relative;
    height: 380px;
    overflow: hidden;
    border: 1px solid var(--rose-border);
    animation: fadeInGallery 0.6s forwards;
    background-color: var(--bg-light);
}

@keyframes fadeInGallery {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

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

.gallery-item-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--primary-rose);
    opacity: 0;
    transition: opacity 0.4s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    text-align: center;
}

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

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

.gallery-item-hover h4 {
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.gallery-item-hover p {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.view-large-btn {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid var(--primary-rose);
    color: var(--primary-rose);
    padding: 8px 18px;
    transition: all 0.3s;
}

.view-large-btn:hover {
    background-color: var(--primary-rose);
    color: var(--text-white);
}

/* -----------------------------------------
   LIGHTBOX MODAL
----------------------------------------- */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 80px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(255, 255, 255, 0.98);
    animation: fadeInModal 0.3s;
}

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

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--text-dark);
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close-lightbox:hover,
.close-lightbox:focus {
    color: var(--primary-rose);
}

.lightbox-img {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 75vh;
    border: 1px solid var(--rose-border);
    animation: zoomInImg 0.4s;
}

@keyframes zoomInImg {
    from { transform: scale(0.9); }
    to { transform: scale(1); }
}

.lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-size: 2rem;
    padding: 20px 0;
}

/* -----------------------------------------
   TESTIMONIALS SECTION
----------------------------------------- */
.testimonials-section {
    padding: 160px 0;
    background-color: var(--bg-light);
}

.testimonial-carousel-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    text-align: center;
}

.testimonial-carousel {
    position: relative;
    min-height: 250px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
}

.testimonial-slide.active {
    position: relative;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.stars {
    color: var(--gold-champagne);
    font-size: 1.3rem;
    margin-bottom: 24px;
}

.test-quote {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-style: italic;
    line-height: 1.5;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.client-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-rose);
}

.client-role {
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 50px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary-pink);
    transition: all 0.3s;
}

.dot.active {
    background-color: var(--primary-rose);
    transform: scale(1.4);
}

/* -----------------------------------------
   BOOKING & CONTACT SECTION
----------------------------------------- */
.booking-section {
    padding: 160px 0;
    background-color: var(--bg-light-accent);
    border-top: 1px solid var(--rose-border);
}

.booking-form-box {
    background-color: var(--bg-card);
    border: 1px solid var(--rose-border);
    padding: 50px;
    box-shadow: var(--soft-shadow);
}

.form-tag,
.info-tag {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-rose);
    display: block;
    margin-bottom: 10px;
}

.form-title,
.info-title {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.form-subtitle,
.info-desc {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* Luxury Input Styling */
.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.form-group {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--text-dark);
    margin-bottom: 6px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    background-color: transparent;
    border: none;
    border-bottom: 1.5px solid var(--rose-border);
    color: var(--text-dark);
    padding: 12px 0;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.4s;
    border-radius: 0;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--primary-rose);
}

/* Luxury Custom Selectors Grid */
.luxury-select-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
    margin-top: 10px;
}

.luxury-select-btn {
    background-color: transparent;
    border: 1.5px solid var(--rose-border);
    color: var(--text-dark);
    padding: 14px 20px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-radius: 0;
    will-change: transform, background-color, color, border-color;
}

.luxury-select-btn:hover {
    border-color: var(--primary-rose);
    background-color: var(--bg-light-accent);
}

.luxury-select-btn.selected {
    background-color: var(--text-dark);
    color: var(--text-white);
    border-color: var(--text-dark);
    box-shadow: var(--soft-shadow);
}

/* Error Messages */
.error-msg {
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: #ff5252;
    margin-top: 6px;
    display: none;
}

.form-group.invalid input,
.form-group.invalid .luxury-select-btn {
    border-color: #ff5252;
}

.form-group.invalid .error-msg {
    display: block;
}

/* Submit Button & Loader */
.btn-submit {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--gold-champagne), var(--primary-rose));
    color: var(--text-white);
    padding: 18px;
    width: 100%;
    border: none;
    box-shadow: var(--gold-shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(212, 175, 55, 0.25);
}

.loader {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--text-white);
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spinLoader 0.8s linear infinite;
    position: absolute;
}

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

.btn-submit.loading .btn-text {
    visibility: hidden;
}

.btn-submit.loading .loader {
    display: block;
}

/* Contact Info Column */
.contact-info-box {
    padding-left: 20px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 45px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.icon-circle {
    width: 80px;
    height: 36px;
    border-radius: 18px;
    background-color: var(--bg-card);
    border: 1px solid var(--rose-border);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-rose);
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.contact-item p {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.studio-status {
    font-size: 0.75rem;
    font-weight: 600;
    color: #4caf50;
    display: inline-block;
    margin-top: 5px;
    letter-spacing: 0.5px;
}

/* Custom Luxury Map Layout */
.luxury-map-wrapper {
    height: 350px;
    width: 100%;
    border: 1px solid var(--rose-border);
    background: radial-gradient(circle, var(--bg-card) 0%, var(--bg-light-accent) 100%);
    position: relative;
    overflow: hidden;
}

.luxury-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    position: relative;
    z-index: 1;
    filter: grayscale(1) contrast(1.1) opacity(0.85);
    transition: filter 0.5s ease, opacity 0.5s ease;
}

[data-theme="dark"] .luxury-map-wrapper iframe {
    filter: grayscale(1) invert(0.9) contrast(1.25) opacity(0.75);
}

.luxury-map-wrapper iframe:hover {
    filter: none;
    opacity: 1;
}

/* -----------------------------------------
   SUCCESS MODAL OVERLAY
----------------------------------------- */
.success-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.96);
    z-index: 3000;
    justify-content: center;
    align-items: center;
    animation: fadeInModal 0.3s;
}

.success-card {
    background-color: var(--bg-card);
    border: 1px solid var(--primary-rose);
    padding: 50px 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: var(--card-shadow);
}

.success-icon {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 24px;
    color: var(--primary-rose);
}

.success-card h3 {
    font-size: 2.1rem;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.success-card p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 30px;
}

/* -----------------------------------------
   FOOTER STYLING
----------------------------------------- */
.luxury-footer {
    background-color: var(--bg-light-accent);
    border-top: 1px solid var(--rose-border);
    padding: 80px 0 30px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand h3 {
    font-size: 2.4rem;
    color: var(--text-dark);
    line-height: 1;
}

.brand-tag {
    font-family: var(--font-body);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--gold-champagne);
    margin-bottom: 20px;
}

.brand-desc {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-muted);
    max-width: 350px;
    line-height: 1.7;
}

.footer-links-col h4,
.footer-social-col h4 {
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-weight: 600;
}

.footer-links-col ul {
    list-style: none;
    padding-left: 0;
}

.footer-links-col ul li {
    margin-bottom: 12px;
}

.footer-links-col ul li a {
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-decoration: none;
    color: var(--text-muted);
    transition: color 0.3s;
}

.footer-links-col ul li a:hover {
    color: var(--primary-rose);
}

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

.social-icon-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--rose-border);
    color: var(--text-muted);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}

.social-icon-btn:hover {
    color: var(--text-white);
    background-color: var(--primary-rose);
    border-color: var(--primary-rose);
    box-shadow: var(--soft-shadow);
}

.footer-bottom {
    border-top: 1px solid var(--rose-border);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* -----------------------------------------
   RESPONSIVE DESIGN BREAKPOINTS
----------------------------------------- */
@media (max-width: 1024px) {
    h1.hero-title {
        font-size: 3.8rem;
    }
    .bento-grid {
        grid-template-columns: 1fr 1fr;
    }
    .bento-card-vertical {
        grid-column: span 1;
        grid-row: span 1;
    }
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .contact-info-box {
        padding-left: 0;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    /* Menu Toggler Active */
    .menu-toggle {
        display: flex;
        z-index: 1000;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--bg-light);
        border-left: 1px solid var(--rose-border);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        transition: right 0.4s ease-in-out;
        z-index: 999;
    }
    
    .nav-links.open {
        right: 0;
    }
    
    /* Toggle transform */
    .menu-toggle.open .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .menu-toggle.open .bar:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.open .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    h1.hero-title {
        font-size: 3rem;
    }
    
    .hero-content {
        padding-left: 5%;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-card-large {
        grid-column: span 1;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .quiz-card-container {
        padding: 30px 20px;
    }
    
    .quiz-question {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }
    
    .result-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .result-title {
        font-size: 2.2rem;
    }
    
    .booking-form-box {
        padding: 30px 20px;
    }
    
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    /* Show default cursor for touchscreen/mobile */
    * {
        cursor: auto !important;
    }
    .custom-cursor,
    .custom-cursor-glow {
        display: none !important;
    }
}

@media (max-width: 480px) {
    h1.hero-title {
        font-size: 2.5rem;
    }
    .hero-ctas {
        flex-direction: column;
        gap: 15px;
    }
    .stats-container {
        flex-direction: column;
        align-items: center;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* -----------------------------------------
   LUXURY UPGRADES (THEME TOGGLE, SLIDER, WIZARD)
   ----------------------------------------- */

/* Theme Toggle Button */
.theme-toggle-btn {
    background: transparent;
    border: 1px solid var(--rose-border);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    margin-right: 20px;
}

.theme-toggle-btn:hover {
    border-color: var(--gold-champagne);
    box-shadow: var(--gold-shadow);
    transform: scale(1.05);
}

.theme-toggle-btn svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: var(--text-dark);
    stroke-width: 2;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s;
}

.theme-toggle-btn .sun-icon {
    opacity: 0;
    transform: scale(0.6) rotate(-45deg);
    position: absolute;
}
.theme-toggle-btn .moon-icon {
    opacity: 1;
    transform: scale(1) rotate(0);
}

[data-theme="dark"] .theme-toggle-btn .sun-icon {
    opacity: 1;
    transform: scale(1) rotate(0);
    position: static;
}
[data-theme="dark"] .theme-toggle-btn .moon-icon {
    opacity: 0;
    transform: scale(0.6) rotate(45deg);
    position: absolute;
}

/* Before/After Split Slider */
.transformation-section {
    padding: 160px 0;
    background-color: var(--bg-light);
    border-top: 1px solid var(--rose-border);
}

.transformation-container {
    max-width: 900px;
    margin: 40px auto 0 auto;
    position: relative;
    border: 1px solid var(--gold-border);
    box-shadow: var(--card-shadow);
    overflow: hidden;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    user-select: none;
}

.slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.image-before {
    z-index: 1;
}

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

.slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background-color: var(--gold-champagne);
    z-index: 10;
    cursor: ew-resize;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.slider-handle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background-color: var(--bg-light);
    border: 2px solid var(--gold-champagne);
    border-radius: 50%;
    box-shadow: var(--dark-shadow);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 11;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s;
}

.slider-handle::after {
    content: '↔';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--gold-champagne);
    z-index: 12;
    pointer-events: none;
}

.slider-handle:hover::before {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: var(--text-dark);
}

.slider-handle:hover::after {
    color: var(--bg-light);
}

.slider-label {
    position: absolute;
    bottom: 20px;
    padding: 6px 15px;
    background-color: rgba(42, 22, 26, 0.8);
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 5;
    pointer-events: none;
}

.label-before {
    right: 20px;
}

.label-after {
    left: 20px;
}

/* Luxury Booking Wizard */
.wizard-steps-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-bottom: 45px;
    padding: 0 10px;
}

.wizard-steps-indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1.5px;
    background-color: var(--rose-border);
    transform: translateY(-50%);
    z-index: 1;
}

.wizard-progress-bar {
    position: absolute;
    top: 50%;
    left: 0;
    width: 0%;
    height: 1.5px;
    background-color: var(--gold-champagne);
    transform: translateY(-50%);
    z-index: 2;
    transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.wizard-step-node {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--bg-card);
    border: 1.5px solid var(--rose-border);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    position: relative;
    z-index: 3;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.wizard-step-node.active {
    border-color: var(--gold-champagne);
    color: var(--gold-champagne);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.25);
    transform: scale(1.12);
}

.wizard-step-node.completed {
    background-color: var(--gold-champagne);
    border-color: var(--gold-champagne);
    color: var(--bg-light);
}

.wizard-step-content {
    display: none;
    animation: fadeInWizard 0.5s ease forwards;
}

.wizard-step-content.active {
    display: block;
}

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

.wizard-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    border-top: 1px solid var(--rose-border);
    padding-top: 25px;
}

.price-summary-box {
    background-color: var(--bg-light-accent);
    border: 1px dashed var(--gold-border);
    padding: 20px;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-summary-box h5 {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.price-summary-box span {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-rose);
}

/* Luxury Form Floating Input Styling */
.floating-form-group {
    position: relative;
    margin-bottom: 30px;
}

.floating-form-group input,
.floating-form-group textarea {
    background-color: transparent;
    border: none;
    border-bottom: 1.5px solid var(--rose-border);
    color: var(--text-dark);
    padding: 14px 0 6px 0;
    font-family: var(--font-body);
    font-size: 0.95rem;
    width: 100%;
    transition: border-color 0.4s;
    border-radius: 0;
}

.floating-form-group label {
    position: absolute;
    top: 12px;
    left: 0;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-muted);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    letter-spacing: 1px;
}

.floating-form-group input:focus,
.floating-form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--primary-rose);
}

.floating-form-group input:focus ~ label,
.floating-form-group input:not(:placeholder-shown) ~ label,
.floating-form-group textarea:focus ~ label,
.floating-form-group textarea:not(:placeholder-shown) ~ label {
    top: -12px;
    font-size: 0.7rem;
    color: var(--primary-rose);
    letter-spacing: 2px;
    font-weight: 600;
}

/* Toast Notification */
.luxury-toast {
    position: fixed;
    bottom: 30px;
    right: -350px;
    background-color: var(--text-dark);
    border: 1px solid var(--gold-border);
    padding: 15px 25px;
    color: var(--bg-light);
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--dark-shadow);
    transition: right 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.luxury-toast.show {
    right: 30px;
}

.luxury-toast-icon {
    color: var(--gold-champagne);
    font-size: 1rem;
}

/* Confetti Canvas */
#confettiCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    pointer-events: none;
    display: none;
}

/* Custom Cursor Glow state additions */
.custom-cursor-glow.dragging {
    width: 90px;
    height: 90px;
    background-color: var(--gold-champagne);
    border-color: transparent;
}

.custom-cursor-glow.dragging .cursor-text {
    opacity: 1;
    transform: scale(1);
    color: var(--text-white);
}

/* Bento grid border-draw hover */
.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid transparent;
    transition: all 0.5s ease;
    pointer-events: none;
    z-index: 15;
}

.bento-card:hover::before {
    border-color: var(--gold-champagne);
    box-shadow: inset 0 0 20px rgba(212, 175, 55, 0.05);
}

/* Align theme button in header */
.header-container {
    display: flex;
    align-items: center;
}

.menu-toggle {
    margin-left: 10px;
}
