/* ==========================================================================
   Yes Madam Beautician Services - Luxury Landing Page Stylesheet (PREMIUM)
   Colors: Rose Gold (#D4A373), Luxury Pink (#E75480), Blush Pink (#FCEEF5),
           White (#FFFFFF), Charcoal (#222222)
   Fonts: Playfair Display (Headings), Poppins (Body)
   ========================================================================== */

/* --- Fonts & Variables --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Outfit:wght@100..900&display=swap');

:root {
    --rose-gold: #D4A373;
    --rose-gold-light: rgba(212, 163, 115, 0.15);
    --rose-gold-hover: #bfa05d;
    --luxury-pink: #E75480;
    --luxury-pink-light: rgba(231, 84, 128, 0.1);
    --luxury-pink-hover: #cf436e;
    --blush-pink: #FCEEF5;
    --white: #FFFFFF;
    --charcoal: #222222;
    --charcoal-light: #2b2b2b;
    --light-gray: #fcf8fa;
    --medium-gray: #e6dbdf;
    --dark-overlay: rgba(34, 34, 34, 0.45);
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --font-accent: 'Outfit', sans-serif;
    
    --transition-smooth: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    --transition-fast: all 0.3s ease;
    --shadow-premium: 0 15px 35px rgba(212, 163, 115, 0.1);
    --shadow-premium-hover: 0 25px 50px rgba(231, 84, 128, 0.18);
    --shadow-glass: 0 8px 32px 0 rgba(231, 84, 128, 0.05);
}

/* --- Reset & Global --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background-color: var(--white);
    line-height: 1.7;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--charcoal);
    font-weight: 700;
    letter-spacing: -0.5px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

/* --- Glow Blobs --- */
.glow-blob-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.glow-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(130px);
    opacity: 0.15;
}

.blob-1 {
    background-color: var(--luxury-pink);
    width: 450px;
    height: 450px;
    top: 10%;
    right: -10%;
}

.blob-2 {
    background-color: var(--rose-gold);
    width: 550px;
    height: 550px;
    bottom: 20%;
    left: -15%;
}

.blob-3 {
    background-color: var(--luxury-pink);
    width: 350px;
    height: 350px;
    top: 50%;
    right: 15%;
}

/* --- Common UI Components --- */
.section-padding {
    padding: 120px 0;
    position: relative;
}

.bg-blush {
    background-color: var(--blush-pink);
}

.bg-gradient-pink {
    background: linear-gradient(180deg, var(--white) 0%, var(--blush-pink) 100%);
}

.text-gold {
    color: var(--rose-gold);
}

.text-pink {
    color: var(--luxury-pink);
}

.text-gradient {
    background: linear-gradient(135deg, var(--rose-gold) 20%, var(--luxury-pink) 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.section-title span {
    font-family: var(--font-accent);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--luxury-pink);
    text-transform: uppercase;
    letter-spacing: 4px;
    display: block;
    margin-bottom: 12px;
}

.section-title h2 {
    font-size: 3.2rem;
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
    margin-bottom: 20px;
    font-weight: 800;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--rose-gold), var(--luxury-pink));
    border-radius: 5px;
}

.section-title p {
    font-size: 1.15rem;
    color: #666;
    max-width: 650px;
    margin: 0 auto;
    font-weight: 300;
}

/* --- Custom Buttons --- */
.btn-premium {
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    padding: 16px 36px;
    border-radius: 50px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
}

/* Sliding Shine Animation on buttons */
.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: -1;
}

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

.btn-gold {
    background: linear-gradient(135deg, var(--rose-gold) 0%, #e9c298 100%);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(212, 163, 115, 0.35);
}

.btn-gold:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(212, 163, 115, 0.5);
    color: var(--white);
}

.btn-pink {
    background: linear-gradient(135deg, var(--luxury-pink) 0%, #fa7ca2 100%);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(231, 84, 128, 0.35);
}

.btn-pink:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(231, 84, 128, 0.5);
    color: var(--white);
}

.btn-outline-gold {
    background: transparent;
    border: 2px solid var(--rose-gold);
    color: var(--rose-gold);
}

.btn-outline-gold:hover {
    background: var(--rose-gold);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(212, 163, 115, 0.3);
}

/* Pulsing Conversion Button */
.btn-pulse {
    animation: pulseGlow 2.5s infinite;
}
@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(231, 84, 128, 0.45);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(231, 84, 128, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(231, 84, 128, 0);
    }
}

/* --- Sticky Navbar --- */
.luxury-navbar {
    background-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid transparent;
    padding: 20px 0;
    transition: var(--transition-smooth);
}

.luxury-navbar.scrolled {
    padding: 12px 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(34, 34, 34, 0.05);
    border-bottom: 1px solid rgba(212, 163, 115, 0.15);
}

/* Toggler Icon Visibility & Style */
.luxury-navbar .navbar-toggler {
    padding: 0;
    box-shadow: none !important;
}

.luxury-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    transition: var(--transition-fast);
}

.luxury-navbar.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2834, 34, 34, 0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-brand {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2rem;
    background: linear-gradient(45deg, var(--rose-gold) 20%, var(--luxury-pink) 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
}

.nav-link {
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75) !important;
    margin: 0 12px;
    position: relative;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition-fast);
}

.luxury-navbar.scrolled .nav-link {
    color: var(--charcoal) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--rose-gold), var(--luxury-pink));
    transition: var(--transition-smooth);
    border-radius: 5px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 25px;
}

.nav-link:hover {
    color: var(--rose-gold) !important;
}

.luxury-navbar.scrolled .nav-link:hover {
    color: var(--luxury-pink) !important;
}

/* === HERO SECTION — DARK CINEMATIC LUXURY === */
.hero-dark {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #0f0d0e;
    overflow: hidden;
    padding-top: 90px;
}

/* Ambient gradient background */
.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 50%, rgba(212, 163, 115, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 60% 80% at 80% 40%, rgba(231, 84, 128, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 50% 100%, rgba(212, 163, 115, 0.05) 0%, transparent 50%);
    z-index: 1;
}

/* Subtle grain/noise overlay */
.hero-bg-noise {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    z-index: 2;
    pointer-events: none;
}

/* --- Sparkle Particles --- */
.hero-sparkles {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--rose-gold);
    opacity: 0;
    animation: sparkleFloat 6s infinite ease-in-out;
}

.sparkle::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 163, 115, 0.8) 0%, transparent 70%);
}

.s1  { top: 15%; left: 10%; animation-delay: 0s; animation-duration: 5s; }
.s2  { top: 25%; left: 30%; animation-delay: 1.2s; animation-duration: 7s; }
.s3  { top: 60%; left: 15%; animation-delay: 2.4s; animation-duration: 6s; }
.s4  { top: 80%; left: 25%; animation-delay: 0.8s; animation-duration: 8s; }
.s5  { top: 10%; left: 55%; animation-delay: 3.1s; animation-duration: 5.5s; }
.s6  { top: 40%; left: 70%; animation-delay: 1.6s; animation-duration: 7.5s; }
.s7  { top: 70%; left: 80%; animation-delay: 0.4s; animation-duration: 6.5s; }
.s8  { top: 30%; left: 85%; animation-delay: 2.0s; animation-duration: 5.8s; }
.s9  { top: 50%; left: 45%; animation-delay: 3.5s; animation-duration: 6.2s; }
.s10 { top: 85%; left: 60%; animation-delay: 1.0s; animation-duration: 7.2s; }
.s11 { top: 20%; left: 75%; animation-delay: 4.0s; animation-duration: 5.3s; }
.s12 { top: 45%; left: 5%;  animation-delay: 2.8s; animation-duration: 8.2s; }

@keyframes sparkleFloat {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0.5);
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 0.6;
    }
    100% {
        opacity: 0;
        transform: translateY(-60px) scale(1.2);
    }
}

/* --- Ornamental Corner Filigrees --- */
.hero-corner {
    position: absolute;
    width: 120px;
    height: 120px;
    z-index: 3;
    pointer-events: none;
    opacity: 0.25;
}

.hero-corner-tl {
    top: 30px;
    left: 30px;
    border-top: 2px solid var(--rose-gold);
    border-left: 2px solid var(--rose-gold);
    border-top-left-radius: 20px;
}

.hero-corner-tl::after {
    content: '✦';
    position: absolute;
    top: -8px;
    left: 35px;
    color: var(--rose-gold);
    font-size: 0.7rem;
}

.hero-corner-br {
    bottom: 30px;
    right: 30px;
    border-bottom: 2px solid var(--rose-gold);
    border-right: 2px solid var(--rose-gold);
    border-bottom-right-radius: 20px;
}

.hero-corner-br::after {
    content: '✦';
    position: absolute;
    bottom: -8px;
    right: 35px;
    color: var(--rose-gold);
    font-size: 0.7rem;
}

/* --- Hero Tagline Pill --- */
.hero-tagline-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    border-radius: 50px;
    border: 1px solid rgba(212, 163, 115, 0.3);
    background: rgba(212, 163, 115, 0.06);
    margin-bottom: 30px;
}

.hero-tagline-pill i {
    color: var(--rose-gold);
    font-size: 0.9rem;
    animation: sparkleRotate 3s infinite ease-in-out;
}

@keyframes sparkleRotate {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(15deg) scale(1.2); }
}

.hero-tagline-pill span {
    font-family: var(--font-accent);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--rose-gold);
    text-transform: uppercase;
    letter-spacing: 4px;
}

/* --- Hero Title (Dark Version) --- */
.hero-title-dark {
    font-family: var(--font-heading);
    font-size: 4.2rem;
    line-height: 1.12;
    color: #ffffff;
    margin-bottom: 28px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.hero-title-accent {
    background: linear-gradient(135deg, var(--rose-gold) 0%, #f0c987 40%, var(--luxury-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    position: relative;
}

.hero-title-accent::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--rose-gold), var(--luxury-pink), transparent);
    opacity: 0.4;
}

/* --- Hero Subtitle (Dark Version) --- */
.hero-subtitle-dark {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
    font-weight: 300;
    line-height: 1.9;
    max-width: 520px;
}

/* --- Hero CTA Buttons --- */
.hero-btn-primary {
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 2px;
    padding: 16px 36px;
    border-radius: 50px;
    text-transform: uppercase;
    border: none;
    background: linear-gradient(135deg, var(--luxury-pink) 0%, #fa7ca2 100%);
    color: var(--white);
    box-shadow: 0 8px 30px rgba(231, 84, 128, 0.4);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-right: 16px;
    animation: pulseGlow 2.5s infinite;
}

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

.hero-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(231, 84, 128, 0.55);
    color: var(--white);
}

.hero-btn-primary:hover::before {
    left: 100%;
}

.hero-btn-outline {
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 2px;
    padding: 16px 36px;
    border-radius: 50px;
    text-transform: uppercase;
    background: transparent;
    border: 2px solid rgba(212, 163, 115, 0.5);
    color: var(--rose-gold);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
}

.hero-btn-outline:hover {
    background: var(--rose-gold);
    border-color: var(--rose-gold);
    color: #0f0d0e;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(212, 163, 115, 0.35);
}

/* --- Hero Trust Strip --- */
.hero-trust-strip {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 45px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.trust-item i {
    color: var(--rose-gold);
    font-size: 0.9rem;
}

.trust-divider {
    width: 1px;
    height: 18px;
    background: rgba(212, 163, 115, 0.25);
}

/* === MODEL IMAGE WRAPPER === */
.hero-model-wrapper {
    position: relative;
    width: 420px;
    height: 560px;
}

/* Pulsing ambient glow behind the model */
.hero-model-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(231, 84, 128, 0.15) 0%,
        rgba(212, 163, 115, 0.1) 40%,
        transparent 70%
    );
    filter: blur(40px);
    animation: glowPulse 4s infinite ease-in-out;
    z-index: 0;
}

@keyframes glowPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

/* Offset gold outline frame behind model for 3D depth */
.hero-model-outline {
    position: absolute;
    top: -12px;
    left: -12px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    border-radius: 230px 230px 30px 30px;
    border: 2px solid rgba(212, 163, 115, 0.35);
    z-index: 1;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.hero-model-wrapper:hover .hero-model-outline {
    top: -16px;
    left: -16px;
    border-color: rgba(212, 163, 115, 0.6);
}

/* Spinning deco ring */
.hero-deco-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 115%;
    height: 115%;
    border: 1px dashed rgba(212, 163, 115, 0.15);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    animation: spinDeco 55s linear infinite;
}

@keyframes spinDeco {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Primary model image frame */
.hero-model-frame {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 220px 220px 28px 28px;
    overflow: hidden;
    border: 5px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(212, 163, 115, 0.2),
        inset 0 0 40px rgba(0, 0, 0, 0.15);
    z-index: 2;
    transition: var(--transition-smooth);
}

.hero-model-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.hero-model-wrapper:hover .hero-model-frame {
    box-shadow:
        0 35px 90px rgba(231, 84, 128, 0.25),
        0 0 0 2px rgba(231, 84, 128, 0.4),
        inset 0 0 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-6px);
}

.hero-model-wrapper:hover .hero-model-frame img {
    transform: scale(1.04);
}

/* === FLOATING GLASSMORPHIC BADGES === */
.hero-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    z-index: 10;
    transition: var(--transition-smooth);
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(212, 163, 115, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.hero-badge-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(212, 163, 115, 0.25) 0%, rgba(212, 163, 115, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rose-gold);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.hero-badge-icon.safety {
    background: linear-gradient(135deg, rgba(231, 84, 128, 0.25) 0%, rgba(231, 84, 128, 0.1) 100%);
    color: var(--luxury-pink);
}

.hero-badge-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.hero-badge-text strong {
    font-family: var(--font-accent);
    font-size: 0.82rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.3px;
}

.hero-badge-text small {
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

/* Badge positions + floating animations */
.hero-badge-rating {
    top: 8%;
    left: -30px;
    animation: floatBadgeUp 5s infinite ease-in-out;
}

.hero-badge-safety {
    bottom: 12%;
    right: -40px;
    animation: floatBadgeDown 6s infinite ease-in-out;
}

@keyframes floatBadgeUp {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes floatBadgeDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* --- Dark hero navbar override --- */
.hero-dark ~ .glow-blob-container {
    display: none;
}


/* --- Services Section --- */
.services-section {
    background-color: var(--white);
    position: relative;
}

/* Category Filter Navigation */
.services-filter-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 55px;
    position: relative;
    z-index: 10;
}

.filter-btn {
    font-family: var(--font-accent);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 13px 26px;
    border-radius: 50px;
    border: 1px solid rgba(212, 163, 115, 0.25);
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: var(--charcoal);
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(212, 163, 115, 0.04);
}

.filter-btn:hover {
    border-color: var(--luxury-pink);
    color: var(--luxury-pink);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(231, 84, 128, 0.12);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--rose-gold) 0%, var(--luxury-pink) 100%);
    border-color: transparent;
    color: var(--white);
    box-shadow: 0 10px 25px rgba(231, 84, 128, 0.28);
}

/* Filter Transitions */
.filter-item {
    transition: opacity 0.45s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(212, 163, 115, 0.05);
    transition: var(--transition-smooth);
    border: 1px solid rgba(212, 163, 115, 0.15);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(231, 84, 128, 0.16);
    border-color: rgba(231, 84, 128, 0.35);
}

.service-img-wrapper {
    position: relative;
    overflow: hidden;
    padding-top: 75%;
}

.service-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.service-card:hover .service-img-wrapper img {
    transform: scale(1.12);
}

/* Service Overlay color on hover */
.service-img-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 40%, rgba(231, 84, 128, 0.25) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.service-card:hover .service-img-wrapper::after {
    opacity: 1;
}

/* Positioning changed to relative to service-body to prevent overflow clipping */
.service-icon-badge {
    position: absolute;
    top: -28px; /* Offset exactly half its height to sit on image boundary line */
    right: 25px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--rose-gold) 0%, var(--luxury-pink) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    box-shadow: 0 5px 15px rgba(231, 84, 128, 0.25);
    z-index: 2;
    border: 3px solid var(--white); /* Visual separation ring */
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-badge {
    transform: rotate(360deg) scale(1.08);
    box-shadow: 0 8px 20px rgba(231, 84, 128, 0.4);
}

.service-body {
    padding: 40px 25px 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.service-body h3 {
    font-size: 1.45rem;
    margin-bottom: 12px;
    font-weight: 800;
}

.service-body p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 25px;
    flex-grow: 1;
    font-weight: 300;
    line-height: 1.7;
}

/* Premium full-width outline button in cards */
.btn-service-book {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 13px 20px;
    border-radius: 50px;
    border: 1.5px solid var(--rose-gold);
    color: var(--rose-gold);
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition-smooth);
    background-color: transparent;
}

.service-card:hover .btn-service-book {
    background: linear-gradient(135deg, var(--rose-gold) 0%, var(--luxury-pink) 100%);
    border-color: transparent;
    color: var(--white);
    box-shadow: 0 6px 15px rgba(231, 84, 128, 0.25);
}

.btn-service-book i {
    margin-left: 8px;
    transition: var(--transition-smooth);
}

.btn-service-book:hover i {
    transform: translateX(4px);
}

/* --- Why Choose Us Section --- */
.why-section {
    background-color: var(--blush-pink);
    position: relative;
    overflow: hidden;
}

/* Left side visual branding box styling */
.why-visual-wrapper {
    position: relative;
    width: 100%;
    z-index: 2;
}

.why-visual-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    border-radius: 30px;
    background: radial-gradient(circle, rgba(231, 84, 128, 0.15) 0%, rgba(212, 163, 115, 0.08) 50%, transparent 80%);
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
}

.why-visual-outline {
    position: absolute;
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    border-radius: 38px;
    border: 2px dashed rgba(212, 163, 115, 0.25);
    pointer-events: none;
    z-index: 1;
    transition: var(--transition-smooth);
}

.why-visual-wrapper:hover .why-visual-outline {
    transform: rotate(2deg);
    border-color: rgba(231, 84, 128, 0.4);
}

.why-image-frame {
    position: relative;
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    border: 6px solid var(--white);
    box-shadow: 0 20px 45px rgba(212, 163, 115, 0.1);
    z-index: 2;
    transition: var(--transition-smooth);
}

.why-visual-wrapper:hover .why-image-frame {
    transform: translateY(-5px);
    box-shadow: 0 25px 55px rgba(231, 84, 128, 0.18);
}

.why-trust-img {
    width: 100%;
    display: block;
    transition: var(--transition-smooth);
}

.why-visual-wrapper:hover .why-trust-img {
    transform: scale(1.04);
}

/* Floating Glass Badges */
.why-glass-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 163, 115, 0.25);
    box-shadow: 0 8px 24px rgba(34, 34, 34, 0.08);
    z-index: 10;
    transition: var(--transition-smooth);
}

.why-glass-badge:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(231, 84, 128, 0.18);
    border-color: var(--luxury-pink);
}

.why-glass-badge .badge-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(212, 163, 115, 0.25) 0%, rgba(212, 163, 115, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--luxury-pink);
    font-size: 1rem;
    flex-shrink: 0;
}

.why-glass-badge .badge-content {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
    text-align: left;
}

.why-glass-badge .badge-content strong {
    font-family: var(--font-accent);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--charcoal);
}

.why-glass-badge .badge-content span {
    font-family: var(--font-body);
    font-size: 0.68rem;
    color: #666;
}

/* Badge specific offsets and floating animations */
.why-glass-badge.badge-top {
    top: 15%;
    left: -20px;
    animation: floatBadgeUp 6s infinite ease-in-out;
}

.why-glass-badge.badge-bottom {
    bottom: 15%;
    right: -20px;
    animation: floatBadgeDown 5s infinite ease-in-out;
}

/* Right-side Benefit Cards */
.why-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 35px 25px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(212, 163, 115, 0.03);
    transition: var(--transition-smooth);
    border: 1px solid rgba(212, 163, 115, 0.15);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--rose-gold), var(--luxury-pink));
    opacity: 0;
    transition: var(--transition-smooth);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(231, 84, 128, 0.14);
    border-color: rgba(231, 84, 128, 0.28);
    background: rgba(255, 255, 255, 0.95);
}

.why-card:hover::before {
    opacity: 1;
}

.why-icon-container {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--white) 0%, var(--blush-pink) 100%);
    border-radius: 50%;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--luxury-pink);
    font-size: 1.8rem;
    transition: var(--transition-smooth);
    box-shadow: 0 6px 15px rgba(231, 84, 128, 0.05);
    border: 1.5px solid rgba(231, 84, 128, 0.12);
}

.why-card:hover .why-icon-container {
    background: linear-gradient(135deg, var(--rose-gold) 0%, var(--luxury-pink) 100%);
    color: var(--white);
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 10px 22px rgba(231, 84, 128, 0.3);
    border-color: transparent;
}

.why-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 800;
    letter-spacing: -0.3px;
}

.why-card p {
    font-size: 0.92rem;
    color: #555;
    margin-bottom: 0;
    font-weight: 300;
    line-height: 1.7;
}

/* Responsive adjustment for floating badges */
@media (max-width: 576px) {
    .why-glass-badge.badge-top {
        left: 10px;
    }
    .why-glass-badge.badge-bottom {
        right: 10px;
    }
    .why-glass-badge {
        padding: 8px 12px;
        border-radius: 12px;
    }
    .why-glass-badge .badge-icon {
        width: 30px;
        height: 30px;
        font-size: 0.85rem;
    }
    .why-glass-badge .badge-content strong {
        font-size: 0.72rem;
    }
    .why-glass-badge .badge-content span {
        font-size: 0.6rem;
    }
}

/* --- Before & After Slider --- */
.before-after-section {
    background-color: var(--white);
    position: relative;
}

/* Luxury wrapper border for Before/After Slider */
.slider-wrapper-luxury {
    position: relative;
    max-width: 890px;
    margin: 0 auto;
    padding: 20px;
    background: transparent;
}

.slider-wrapper-inner-border {
    position: absolute;
    top: 5px;
    left: 5px;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    border-radius: 30px;
    border: 2px solid rgba(212, 163, 115, 0.25);
    pointer-events: none;
    z-index: 1;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 530px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(34, 34, 34, 0.15);
    user-select: none;
    -webkit-user-select: none;
    border: 1px solid rgba(212, 163, 115, 0.25);
    z-index: 2;
}

.slider-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slider-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

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

.slider-after {
    z-index: 2;
    width: 50%; /* Adjusted via JS */
    overflow: hidden;
}

.slider-after img {
    position: absolute;
    top: 0;
    left: 0;
    width: 850px; /* Must match the max-width of container */
    max-width: none;
}

/* Redesigned glowing resize bar */
.slider-resize-bar {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%; /* Adjusted via JS */
    width: 4px;
    background: linear-gradient(180deg, var(--rose-gold) 0%, var(--luxury-pink) 100%);
    z-index: 3;
    cursor: ew-resize;
    box-shadow: 0 0 20px rgba(231, 84, 128, 0.6);
}

/* Redesigned glowing handle */
.slider-resize-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: #0f0d0e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(231, 84, 128, 0.4), 0 0 0 4px rgba(255, 255, 255, 0.12);
    color: var(--rose-gold);
    font-size: 1.1rem;
    border: 2px solid var(--rose-gold);
    z-index: 5;
    transition: var(--transition-fast);
}

.slider-resize-bar:hover .slider-resize-handle {
    transform: translate(-50%, -50%) scale(1.08);
    box-shadow: 0 10px 30px rgba(231, 84, 128, 0.6), 0 0 0 6px rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-color: var(--luxury-pink);
}

.slider-resize-handle i {
    animation: pulseArrows 2s infinite ease-in-out;
    position: relative;
    z-index: 3;
}

/* Decorative sparkles spinning around handle */
.handle-sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: var(--rose-gold);
    border-radius: 50%;
    filter: blur(0.5px);
    opacity: 0.7;
    z-index: 1;
}

.hs1 {
    top: 10%;
    left: 20%;
    animation: spinSparkleHandle 4s linear infinite;
}

.hs2 {
    bottom: 10%;
    right: 20%;
    animation: spinSparkleHandle2 4s linear infinite;
}

@keyframes spinSparkleHandle {
    0% { transform: rotate(0deg) translate(25px) rotate(0deg); }
    100% { transform: rotate(360deg) translate(25px) rotate(-360deg); }
}

@keyframes spinSparkleHandle2 {
    0% { transform: rotate(180deg) translate(25px) rotate(-180deg); }
    100% { transform: rotate(540deg) translate(25px) rotate(-540deg); }
}

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

.label-badge {
    position: absolute;
    bottom: 25px;
    padding: 10px 20px;
    background-color: rgba(15, 13, 14, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--white);
    font-family: var(--font-accent);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 50px;
    z-index: 4;
    border: 1px solid rgba(212, 163, 115, 0.35);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.label-before { left: 25px; }
.label-after { right: 25px; }


/* --- Statistics / Counter Section --- */
.counter-section {
    position: relative;
    background: #0f0d0e; /* Dark theme to match hero */
    color: var(--white);
    overflow: hidden;
    border-top: 1px solid rgba(212, 163, 115, 0.15);
    border-bottom: 1px solid rgba(212, 163, 115, 0.15);
}

.counter-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(231, 84, 128, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

.counter-bg-noise {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.035'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.45;
    z-index: 2;
}

/* Statistics Sparkles */
.counter-sparkles .sparkle {
    position: absolute;
    background: radial-gradient(circle, #ffffff 10%, transparent 60%);
    border-radius: 50%;
    opacity: 0.15;
    pointer-events: none;
    z-index: 2;
}

.counter-sparkles .s1 { width: 120px; height: 120px; top: 10%; left: 15%; animation: floatBadgeUp 6s infinite ease-in-out; }
.counter-sparkles .s2 { width: 160px; height: 160px; bottom: 15%; right: 10%; animation: floatBadgeDown 8s infinite ease-in-out; }
.counter-sparkles .s3 { width: 90px; height: 90px; top: 60%; left: 45%; }
.counter-sparkles .s4 { width: 140px; height: 140px; top: 20%; right: 40%; }

/* Glassmorphic Grid Wrapper */
.counter-grid-glass {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 55px 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.counter-item-glass {
    text-align: center;
    position: relative;
    z-index: 3;
    padding: 10px;
    transition: var(--transition-smooth);
}

.counter-item-glass:hover {
    transform: translateY(-5px);
}

.counter-icon-wrap {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: rgba(212, 163, 115, 0.08);
    border: 1px solid rgba(212, 163, 115, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--rose-gold);
    font-size: 1.6rem;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(212, 163, 115, 0.15);
}

.counter-item-glass:hover .counter-icon-wrap {
    background: linear-gradient(135deg, var(--rose-gold) 0%, var(--luxury-pink) 100%);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(231, 84, 128, 0.35);
    transform: scale(1.08);
}

.counter-number {
    font-family: var(--font-heading);
    font-size: 3.6rem;
    font-weight: 900;
    margin-bottom: 8px;
    line-height: 1;
    background: linear-gradient(135deg, #ffffff 40%, var(--rose-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.counter-title {
    font-family: var(--font-accent);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.65);
    transition: var(--transition-fast);
}

.counter-item-glass:hover .counter-title {
    color: var(--rose-gold);
}

/* --- Testimonials Section --- */
.testimonials-section {
    background-color: var(--blush-pink);
    position: relative;
    overflow: hidden;
}

.swiper-container-testimonials {
    padding: 30px 15px 85px;
    overflow: hidden;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: 0 15px 35px rgba(212, 163, 115, 0.04);
    border: 1px solid rgba(212, 163, 115, 0.15);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(231, 84, 128, 0.35);
    box-shadow: 0 25px 50px rgba(231, 84, 128, 0.14);
    background: rgba(255, 255, 255, 0.95);
}

/* Quotation Mark */
.testimonial-card::before {
    content: '“';
    position: absolute;
    top: 15px;
    left: 25px;
    font-family: var(--font-heading);
    font-size: 10rem;
    color: rgba(212, 163, 115, 0.12);
    line-height: 1;
    z-index: 0;
    font-weight: 900;
}

.rating-stars {
    color: #ffc107;
    font-size: 1.05rem;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 5px rgba(255, 193, 7, 0.25));
}

.testimonial-text {
    font-size: 1.02rem;
    color: #444;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 35px;
    position: relative;
    z-index: 1;
    flex-grow: 1;
    font-weight: 300;
}

.testimonial-profile {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.testimonial-avatar {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 18px;
    border: 2px solid var(--rose-gold);
    box-shadow: 0 4px 12px rgba(212, 163, 115, 0.25);
    padding: 2px;
    background-color: var(--white);
    transition: var(--transition-smooth);
}

.testimonial-card:hover .testimonial-avatar {
    border-color: var(--luxury-pink);
    box-shadow: 0 6px 15px rgba(231, 84, 128, 0.35);
    transform: scale(1.05);
}

.testimonial-info h4 {
    font-size: 1.2rem;
    margin-bottom: 2px;
    font-weight: 800;
    color: var(--charcoal);
}

.testimonial-info span {
    font-family: var(--font-accent);
    font-size: 0.8rem;
    color: #888;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Testimonial Swiper Bullets */
.swiper-pagination {
    bottom: 25px !important;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #e3c4d1 !important;
    opacity: 1 !important;
    transition: var(--transition-fast);
}

.swiper-pagination-bullet-active {
    background: linear-gradient(90deg, var(--rose-gold), var(--luxury-pink)) !important;
    width: 28px !important;
    border-radius: 5px !important;
    box-shadow: 0 2px 8px rgba(231, 84, 128, 0.35);
}

/* --- Luxury CTA Banner Section --- */
.luxury-cta-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--blush-pink) 100%);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.cta-banner-glass {
    position: relative;
    background: rgba(34, 34, 34, 0.92); /* Rich dark overlay */
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 40px;
    padding: 85px 60px;
    border: 1px solid rgba(212, 163, 115, 0.22);
    box-shadow: 0 30px 80px rgba(231, 84, 128, 0.12);
    overflow: hidden;
}

.cta-glow-blob {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(231, 84, 128, 0.25) 0%, rgba(212, 163, 115, 0.05) 75%);
    top: -100px;
    right: -100px;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

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

.cta-tagline {
    font-family: var(--font-accent);
    font-weight: 700;
    color: var(--rose-gold);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 3px;
    display: inline-block;
    margin-bottom: 22px;
}

.cta-title {
    font-size: 3rem;
    color: var(--white);
    font-weight: 300;
    margin-bottom: 25px;
    line-height: 1.3;
}

.cta-text {
    font-size: 1.12rem;
    color: rgba(255, 255, 255, 0.78);
    max-width: 780px;
    margin: 0 auto 45px;
    line-height: 1.85;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

/* Custom outline button for dark background */
.btn-outline-pink {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(231, 84, 128, 0.6) !important;
    box-shadow: 0 8px 25px rgba(231, 84, 128, 0.08);
}

.btn-outline-pink:hover {
    background: var(--luxury-pink);
    border-color: var(--luxury-pink) !important;
    color: var(--white) !important;
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(231, 84, 128, 0.4);
}

/* --- FAQ Accordion --- */
.faq-section {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.faq-accordion .accordion-item {
    border: 1px solid rgba(212, 163, 115, 0.18) !important;
    border-radius: 18px !important;
    margin-bottom: 22px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(212, 163, 115, 0.03);
    transition: var(--transition-smooth);
    background-color: var(--white);
}

.faq-accordion .accordion-item:hover {
    border-color: rgba(231, 84, 128, 0.35);
    box-shadow: 0 10px 25px rgba(231, 84, 128, 0.08);
}

.faq-accordion .accordion-button {
    font-family: var(--font-heading);
    font-size: 1.28rem;
    font-weight: 800;
    color: var(--charcoal);
    background-color: var(--white);
    padding: 26px 30px;
    border: none !important;
    transition: var(--transition-smooth);
    position: relative;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none !important;
    outline: none !important;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--luxury-pink);
    background-color: rgba(252, 238, 245, 0.5);
    box-shadow: none;
}

/* Gold left-accent indicator when expanded */
.faq-accordion .accordion-item {
    border-left: 1px solid rgba(212, 163, 115, 0.18) !important;
}

.faq-accordion .accordion-item:has(.accordion-button:not(.collapsed)) {
    border-left: 4px solid var(--rose-gold) !important;
    border-color: rgba(231, 84, 128, 0.25) !important;
}

.faq-accordion .accordion-button::after {
    background-size: 1rem;
    transition: var(--transition-smooth);
}

.faq-accordion .accordion-body {
    padding: 30px;
    font-size: 0.98rem;
    color: #555555;
    line-height: 1.8;
    background-color: var(--white);
    font-weight: 300;
    border-top: 1px solid rgba(212, 163, 115, 0.08);
}

/* --- Book Appointment Section --- */
.appointment-section {
    background: linear-gradient(rgba(15, 13, 14, 0.4), rgba(15, 13, 14, 0.4)), url('https://images.unsplash.com/photo-1522337360788-8b13dee7a37e?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.appointment-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 60px 50px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(212, 163, 115, 0.25);
    position: relative;
    z-index: 5;
}

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

.appointment-header span {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--luxury-pink);
    text-transform: uppercase;
    letter-spacing: 3px;
    display: inline-block;
    margin-bottom: 10px;
}

.appointment-header h3 {
    font-size: 2.6rem;
    margin-bottom: 12px;
    font-weight: 800;
    color: var(--charcoal);
}

.appointment-header p {
    font-size: 1.05rem;
    color: #555;
    font-weight: 300;
}

/* Floating Label Form Styling */
.appointment-form .form-floating {
    margin-bottom: 0;
}

.appointment-form .form-control,
.appointment-form .form-select {
    height: calc(3.8rem + 2px);
    padding: 1.25rem 1rem;
    border-radius: 16px;
    border: 1.5px solid rgba(212, 163, 115, 0.25);
    font-family: var(--font-body);
    font-size: 0.98rem;
    transition: var(--transition-smooth);
    background-color: rgba(255, 255, 255, 0.7);
    color: var(--charcoal);
}

.appointment-form textarea.form-control {
    height: 130px;
}

.appointment-form .form-control:focus,
.appointment-form .form-select:focus {
    background-color: var(--white);
    border-color: var(--luxury-pink) !important;
    box-shadow: 0 0 0 5px rgba(231, 84, 128, 0.15) !important;
    outline: none;
}

.appointment-form .form-floating > label {
    padding: 1.25rem 1rem;
    color: #666;
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-fast);
}

.appointment-form .form-floating > .form-control:focus ~ label,
.appointment-form .form-floating > .form-control:not(:placeholder-shown) ~ label,
.appointment-form .form-floating > .form-select ~ label {
    color: var(--luxury-pink) !important;
    font-weight: 700;
}

/* Customize datepicker icon styling slightly to match colors */
.appointment-form input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(47%) sepia(35%) saturate(798%) hue-rotate(303deg) brightness(97%) contrast(92%);
    cursor: pointer;
}

/* --- Contact Map & Info Section --- */
.contact-info-box {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 20px;
    border-left: 4px solid var(--rose-gold) !important;
    box-shadow: 0 10px 30px rgba(212, 163, 115, 0.03);
    height: 100%;
    display: flex;
    align-items: flex-start;
    border-top: 1px solid rgba(212, 163, 115, 0.12);
    border-bottom: 1px solid rgba(212, 163, 115, 0.12);
    border-right: 1px solid rgba(212, 163, 115, 0.12);
    transition: var(--transition-smooth);
}

.contact-info-box:hover {
    transform: translateX(6px);
    box-shadow: 0 15px 35px rgba(212, 163, 115, 0.12);
    border-color: rgba(231, 84, 128, 0.25);
}

.contact-info-icon {
    font-size: 2rem;
    color: var(--luxury-pink);
    margin-right: 22px;
    margin-top: 4px;
    filter: drop-shadow(0 4px 6px rgba(231, 84, 128, 0.2));
}

.contact-info-content h4 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--charcoal);
}

.contact-info-content p {
    font-size: 1.02rem;
    color: #555555;
    margin-bottom: 0;
    font-weight: 300;
}

.map-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
    height: 480px;
    border: 1px solid rgba(212, 163, 115, 0.2);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* --- Footer --- */
.luxury-footer {
    background-color: #0d0c0c; /* Deep luxury dark */
    color: #a5a5a5;
    padding: 95px 0 45px;
    position: relative;
    border-top: 1px solid rgba(212, 163, 115, 0.2);
}

.luxury-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--rose-gold), var(--luxury-pink), transparent);
}

.footer-widget h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 28px;
    font-weight: 800;
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2.5px;
    background-color: var(--rose-gold);
    border-radius: 3px;
}

.footer-brand {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 20px;
    display: inline-block;
}

.footer-brand span {
    color: var(--rose-gold);
    background: linear-gradient(135deg, var(--rose-gold) 0%, var(--luxury-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-social-links {
    margin-top: 25px;
}

.footer-social-links a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.03);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    margin-right: 12px;
    font-size: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition-smooth);
}

.footer-social-links a:hover {
    background: linear-gradient(135deg, var(--rose-gold) 0%, var(--luxury-pink) 100%);
    color: var(--white);
    transform: translateY(-5px) rotate(15deg);
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(231, 84, 128, 0.45);
}

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

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

.footer-links-list a {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    transition: var(--transition-fast);
}

.footer-links-list a:hover {
    color: var(--rose-gold);
    padding-left: 8px;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
}

.footer-contact-list i {
    color: var(--rose-gold);
    font-size: 1.1rem;
    margin-right: 15px;
    margin-top: 5px;
}

.footer-bottom {
    margin-top: 75px;
    padding-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.88rem;
    color: #666666;
}

/* --- Floating Actions & Mobile Sticky Bars --- */

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 35px;
    right: 35px;
    width: 65px;
    height: 65px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: var(--white);
    font-size: 2.1rem;
    z-index: 999;
    transition: var(--transition-smooth);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(15deg);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.55);
}

/* Floating Call Button */
.call-float {
    position: fixed;
    bottom: 35px;
    left: 35px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--luxury-pink) 0%, var(--rose-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(231, 84, 128, 0.45);
    color: var(--white);
    font-size: 1.8rem;
    z-index: 999;
    transition: var(--transition-smooth);
}

.call-float::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 2px solid var(--luxury-pink);
    opacity: 0.8;
    animation: callPulse 2s infinite ease-out;
    pointer-events: none;
}

.call-float i {
    animation: callShake 5s infinite ease-in-out;
    display: inline-block;
}

.call-float:hover {
    transform: scale(1.1) rotate(15deg);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(231, 84, 128, 0.6);
}

@keyframes callPulse {
    0% {
        transform: scale(0.9);
        opacity: 0.9;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

@keyframes callShake {
    0%, 90%, 100% { transform: rotate(0); }
    92% { transform: rotate(-15deg); }
    94% { transform: rotate(15deg); }
    96% { transform: rotate(-15deg); }
    98% { transform: rotate(15deg); }
}

/* Sticky Call Button (Mobile) */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 65px;
    background-color: var(--white);
    display: none;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.mobile-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white);
}

.mobile-cta-btn.call {
    background: linear-gradient(135deg, var(--rose-gold), var(--rose-gold-hover));
}

.mobile-cta-btn.book {
    background: linear-gradient(135deg, var(--luxury-pink), var(--luxury-pink-hover));
}

/* --- Loading Spinner / Smooth Loading --- */
.spinner-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--white);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease-out;
}

.spinner-luxury {
    width: 65px;
    height: 65px;
    border: 3px solid rgba(212, 163, 115, 0.2);
    border-top-color: var(--luxury-pink);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Custom SweetAlert styling for premium feel */
.premium-popup-alert {
    border-radius: 24px !important;
    border: 1px solid rgba(212, 163, 115, 0.3) !important;
    box-shadow: 0 20px 50px rgba(231, 84, 128, 0.12) !important;
}
.premium-popup-alert .swal2-title {
    font-family: var(--font-heading) !important;
    font-size: 1.8rem !important;
}
.premium-popup-alert .swal2-html-container {
    font-family: var(--font-body) !important;
}
.premium-popup-alert .swal2-confirm {
    border-radius: 50px !important;
    font-family: var(--font-accent) !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
}
