/* =========================================================================
   VELOURIA - LUXURY BEAUTY SALON
   CSS VARIABLES & BRAND COLORS
   ========================================================================= */

:root {
    /* Floral Inspired Dominant Color Palette */
    --primary-purple: #6A0DAD;   /* Iris Purple */
    --lavender: #C8A2FF;         /* Soft Lavender */
    --petunia-pink: #FF69B4;     /* Vibrant Petunia Pink */
    --soft-blush: #FFE6F2;       /* Light Rosy Blush */
    --deep-plum: #2E0F3D;        /* Elegant Dark Plum */
    --white: #FFFFFF;            /* Accents */

    /* Luxury Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--soft-blush);
    color: var(--deep-plum);
    overflow-x: hidden;
    position: relative;
}

/* =========================================================================
   STYLISH FIXED NAVBAR (Glassmorphism & Pure CSS Mobile)
   ========================================================================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: all 0.4s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.nav-logo-img {
    height: 85px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.3));
}

/* Navigation Links Setup */
.nav-links {
    list-style: none;
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    padding: 5px 0;
    transition: color 0.3s ease;
    display: inline-block;
}

/* Link Hover Animation */
.nav-links a:hover {
    color: #CBA135;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: #CBA135;
    transition: all 0.3s ease;
    transform: translateX(-50%);
    box-shadow: 0 0 8px rgba(203, 161, 53, 0.5);
}

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

/* CSS Only Mobile Toggle Strategy */
.menu-toggle {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger .bar {
    width: 25px;
    height: 1px;
    background-color: #D4AF37;
    transition: all 0.3s ease;
    border-radius: 0;
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
}

/* =========================================================================
   HERO FULLSCREEN LAYOUT
   ========================================================================= */

.hero {
    min-height: 100vh;
    width: 100%;
    position: relative;
    /* Soft Dreamy Floral Gradient */
    background: linear-gradient(-45deg, var(--lavender), var(--petunia-pink), var(--primary-purple), var(--soft-blush), var(--deep-plum));
    background-size: 400% 400%;
    animation: gradientShift 18s ease infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Subtle overlay to blend floating flowers and ensure text readability */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(46, 15, 61, 0.2);
    z-index: 1;
    pointer-events: none;
}

/* Soft glowing blur shape in the background */
.hero::after {
    content: "";
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(200, 162, 255, 0.5) 0%, transparent 65%);
    border-radius: 50%;
    filter: blur(90px);
    z-index: 0;
    animation: pulseGlow 15s ease-in-out infinite alternate;
    pointer-events: none;
}

/* Hero Centering Constraint Structure */
.hero-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 10;
}

/* =========================================================================
   HERO LEFT SIDE (CONTENT & TEXT)
   ========================================================================= */

.hero-content {
    flex: 1;
    max-width: 650px;
    padding-right: 40px;
    position: relative;
    z-index: 15;
    /* Extra subtle text shadow to keep text readable against shifting darker gradient spots */
    text-shadow: 0 4px 25px rgba(255, 255, 255, 0.9), 0 0 10px rgba(255, 255, 255, 0.6);
}

.salon-name {
    font-family: var(--font-heading);
    font-size: 6.5rem;
    font-weight: 700;
    color: var(--deep-plum);
    margin-bottom: 5px;
    line-height: 1.1;
    letter-spacing: 2px;
}

.tagline {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 400;
    font-style: italic;
    color: var(--primary-purple);
    margin-bottom: 25px;
}

.description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--deep-plum);
    margin-bottom: 45px;
    font-weight: 400;
}

/* Hero Button Groups */
.btn-group {
    display: flex;
    gap: 20px;
}

.btn {
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    padding: 18px 40px;
    border-radius: 50px; /* Pillow Shape */
    transition: all 0.4s ease;
    display: inline-block;
    text-align: center;
}

/* Glowing Primary Button */
.btn-primary {
    background: linear-gradient(135deg, var(--petunia-pink), var(--primary-purple));
    color: var(--white);
    border: none;
    box-shadow: 0 6px 20px rgba(106, 13, 173, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 105, 180, 0.6);
    filter: brightness(1.1);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.6);
    color: var(--petunia-pink);
    border-color: var(--petunia-pink);
    transform: translateY(-5px);
}

/* =========================================================================
   HERO RIGHT SIDE (ILLUSTRATION & DECOR)
   ========================================================================= */

.hero-illustration {
    flex: 1;
    position: relative;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Blur Background Light Shape */
.illustration-glow {
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, var(--lavender) 0%, transparent 65%);
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.6;
    animation: pulseGlow 6s ease-in-out infinite alternate;
}

.main-art-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Floating SVGs positioned as an artistic arrangement */
.flower-art {
    position: absolute;
    animation: floatDecor ease-in-out infinite alternate;
}

.flower-art.iris {
    width: 180px;
    top: 15%;
    left: 10%;
    animation-duration: 6s;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.1));
}

.flower-art.petunia {
    width: 200px;
    bottom: 5%;
    right: 5%;
    animation-duration: 8s;
    animation-direction: alternate-reverse;
    filter: drop-shadow(0 15px 25px rgba(255,105,180,0.1));
}

.flower-art.salvia {
    width: 150px;
    top: 5%;
    right: 20%;
    animation-duration: 7s;
}

.flower-art.lavender {
    width: 140px;
    bottom: 25%;
    left: 20%;
    animation-duration: 5s;
    animation-direction: alternate-reverse;
}

/* Base floating ambient elements */
.floating-decor {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bg-decor {
    position: absolute;
    opacity: 0.25;
    animation: floatDecor ease-in-out infinite alternate;
}

.bg-decor-1 { top: 15%; left: 5%; width: 90px; animation-duration: 9s;}
.bg-decor-2 { bottom: 12%; right: 40%; width: 110px; animation-duration: 11s;}
.bg-decor-3 { top: 40%; right: 10%; width: 70px; animation-duration: 13s;}

/* =========================================================================
/* =========================================================================
   ABOUT SECTION (LUXURY BRAND STORY)
   ========================================================================= */

.about {
    position: relative;
    padding: 120px 0;
    background-color: #080808;
    color: #FFFFFF;
    overflow: hidden;
}

.about-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
}

/* Left Column: Text & Values */
.about-content {
    flex: 1;
    max-width: 600px;
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 15px;
    letter-spacing: 0.02em;
}

.about-title-line {
    width: 60px;
    height: 1px;
    background-color: #CBA135;
    margin-bottom: 40px;
    box-shadow: 0 0 10px rgba(203, 161, 53, 0.5);
}

.about-story {
    font-family: 'Jost', sans-serif;
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 25px;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.value-icon {
    width: 24px;
    height: 24px;
    color: #CBA135;
    flex-shrink: 0;
}

.value-item p {
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #E0E0E0;
    margin: 0;
}

.about-closing {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: #CBA135;
    border-left: 2px solid rgba(203, 161, 53, 0.3);
    padding-left: 20px;
    margin-top: 20px;
}

/* Right Column: Image wrapper */
.about-image-wrapper {
    flex: 1;
    position: relative;
    max-width: 550px;
}

.about-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 4/5;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    transition: transform 0.6s ease;
}

.about-image-glow {
    position: absolute;
    top: -20px;
    right: -20px;
    bottom: -20px;
    left: -20px;
    border: 1px solid rgba(203, 161, 53, 0.3);
    border-radius: 4px;
    z-index: 1;
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.02);
}

/* Basic pure CSS scroll fade hack via animations */
/* Actual intersection observation requires JS, but we will use a generic fade-in 
   that triggers gently when the DOM loads, with an extended delay for sections further down. */
.fade-in-scroll-left {
    opacity: 0;
    animation: fadeLeft 1.5s ease forwards 1s;
}

.fade-in-scroll-right {
    opacity: 0;
    animation: fadeRight 1.5s ease forwards 1.2s;
}

/* =========================================================================
   FALLING REAL FLOWER SVG ANIMATION (Foreground)
   ========================================================================= */

.falling-flowers {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Let clicks pass through to content */
    z-index: 100;         /* Make them float above the rest of hero elements */
    overflow: hidden;
}

.falling-flower {
    position: absolute;
    top: -150px;
    opacity: 0;
    animation: fallingFlower linear infinite;
    /* Softly visible to keep it calm, elegant and unobtrusive */
}

/* Variable widths and speeds for the 8 falling variations */
.fall-1 { left:  8%; width: 40px; animation-duration: 22s; animation-delay: 2s; }
.fall-2 { left: 18%; width: 30px; animation-duration: 25s; animation-delay: 8s; }
.fall-3 { left: 32%; width: 45px; animation-duration: 18s; animation-delay: 1s; }
.fall-4 { left: 45%; width: 35px; animation-duration: 28s; animation-delay: 10s; }
.fall-5 { left: 60%; width: 50px; animation-duration: 20s; animation-delay: 4s; }
.fall-6 { left: 72%; width: 35px; animation-duration: 26s; animation-delay: 7s; }
.fall-7 { left: 85%; width: 40px; animation-duration: 21s; animation-delay: 0s; }
.fall-8 { left: 95%; width: 30px; animation-duration: 23s; animation-delay: 5s; }

/* =========================================================================
   SERVICES SECTION (LUXURY MAIE'S)
   ========================================================================= */

.services-luxury {
    background-color: #080808;
    color: #FFFFFF;
    padding: 120px 0;
    position: relative;
}

.services-luxury-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.services-header {
    text-align: center;
    margin-bottom: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.services-title-line {
    width: 80px;
    height: 1px;
    background-color: #CBA135;
    box-shadow: 0 0 10px rgba(203, 161, 53, 0.5);
}

.service-category {
    margin-bottom: 120px;
    position: relative;
}

.category-hero-img {
    width: 100%;
    height: 400px;
    overflow: hidden;
    margin-bottom: 50px;
    border-radius: 8px;
    position: relative;
    border: 1px solid rgba(203, 161, 53, 0.2);
}

.category-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.65);
    transition: transform 6s ease;
}

.category-hero-img:hover img {
    transform: scale(1.05);
}

.category-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 400;
    color: #CBA135;
    margin-bottom: 15px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.category-quote {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.service-rows {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-row {
    display: flex;
    align-items: center;
    gap: 0;
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.5s ease;
}

.service-row:hover {
    border-color: rgba(203, 161, 53, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(203, 161, 53, 0.05);
}

.service-row.reverse {
    flex-direction: row-reverse;
}

.service-row-text {
    flex: 1;
    padding: 60px;
}

.service-name-row {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: #CBA135;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.service-desc-row {
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
}

.service-row-image {
    flex: 1;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.service-row-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.service-row:hover .service-row-image img {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .service-row, .service-row.reverse {
        flex-direction: column;
    }
    
    .service-row-image {
        width: 100%;
        height: 300px;
    }
    
    .service-row-text {
        padding: 40px 30px;
        text-align: center;
    }
}

.fade-in-scroll-up {
    opacity: 0;
    animation: fadeUp 1.5s ease forwards;
}

/* =========================================================================
   WHY CHOOSE US SECTION
   ========================================================================= */

.why-choose-us {
    background-color: #080808;
    color: #FFFFFF;
    padding: 120px 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.why-choose-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-choose-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.why-choose-subtitle {
    font-family: 'Jost', sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    color: #CBA135;
    margin-top: 25px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.why-feature-card {
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 50px 40px;
    text-align: center;
    transition: all 0.5s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.why-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(203, 161, 53, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

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

.why-feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(203, 161, 53, 0.5);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(203, 161, 53, 0.1);
}

.why-feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
    color: #CBA135;
    transition: transform 0.4s ease;
}

.why-feature-card:hover .why-feature-icon {
    transform: scale(1.1);
}

.why-feature-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.why-feature-card:hover .why-feature-title {
    color: #CBA135;
}

.why-feature-text {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.why-choose-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    padding: 50px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    color: #CBA135;
    margin-bottom: 10px;
}

.stat-label {
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .why-choose-stats {
        flex-direction: column;
        gap: 30px;
        padding: 40px 0;
    }
    
    .stat-divider {
        width: 60px;
        height: 1px;
    }
}

/* =========================================================================
   GALLERY SECTION
   ========================================================================= */

.gallery {
    padding: 120px 0;
    background: linear-gradient(to bottom, var(--white), var(--soft-blush), var(--lavender), var(--soft-blush));
    position: relative;
    overflow: hidden;
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 10;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--deep-plum);
    opacity: 0.8;
    margin-top: -60px;
    margin-bottom: 60px;
    font-weight: 300;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background: var(--white);
    aspect-ratio: 1/1;
}

.gallery-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(106, 13, 173, 0.7), rgba(255, 105, 180, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    transform: translateY(20px);
}

.gallery-overlay span {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--white);
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Hover States */
.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* Background Decor */
.gallery-decor-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bg-decor-gallery-1 {
    width: 150px;
    top: 10%;
    right: -50px;
    opacity: 0.15;
    animation: floatDecor 15s infinite alternate;
}

.bg-decor-gallery-2 {
    width: 120px;
    bottom: 5%;
    left: -30px;
    opacity: 0.15;
    animation: floatDecor 12s infinite alternate-reverse;
}

/* =========================================================================
   TESTIMONIALS SECTION
   ========================================================================= */

.testimonials {
    padding: 120px 0;
    background: linear-gradient(to bottom, var(--soft-blush), var(--lavender), var(--soft-blush));
    position: relative;
    overflow: hidden;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 10;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    padding: 50px 40px;
    min-height: 380px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(106, 13, 173, 0.15);
    border-color: var(--petunia-pink);
}

.quote-icon {
    font-family: var(--font-heading);
    font-size: 5rem;
    line-height: 1;
    color: var(--lavender);
    opacity: 0.5;
    margin-bottom: -10px;
}

.quote {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--deep-plum);
    margin-bottom: 30px;
    flex-grow: 1;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--white);
    padding: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 2px solid var(--soft-blush);
}

.client-avatar svg {
    width: 100%;
    height: 100%;
}

.client-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-purple);
    letter-spacing: 0.5px;
}

.testimonial-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.bg-decor-test-1 {
    width: 120px;
    top: 15%;
    left: -40px;
    opacity: 0.1;
    animation: floatDecor 14s infinite alternate;
}

/* =========================================================================
   BOOKING SECTION
   ========================================================================= */

.booking-luxury {
    background-color: #050505;
    padding: 120px 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.booking-luxury-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.booking-header {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.booking-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.booking-subtitle {
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: #CBA135;
    margin-top: 25px;
    letter-spacing: 0.1em;
}

.booking-form-wrapper {
    background: #111111;
    border: 1px solid rgba(203, 161, 53, 0.2);
    border-radius: 12px;
    padding: 60px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 20px rgba(203, 161, 53, 0.05);
}

.luxury-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-row {
    display: flex;
    gap: 30px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.form-group.full-width {
    width: 100%;
}

.form-group label {
    font-family: 'Jost', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.form-group .required {
    color: #CBA135;
}

.luxury-form input,
.luxury-form select,
.luxury-form textarea {
    width: 100%;
    background: #080808;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 16px 20px;
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    color: #FFFFFF;
    transition: all 0.3s ease;
    outline: none;
}

.luxury-form input::placeholder,
.luxury-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

/* Elegant Focus Glow */
.luxury-form input:focus,
.luxury-form select:focus,
.luxury-form textarea:focus {
    border-color: #CBA135;
    box-shadow: 0 0 15px rgba(203, 161, 53, 0.15);
    background: #0A0A0A;
}

/* Custom styling for select to make it look premium */
.luxury-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23CBA135' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px;
    padding-right: 50px;
    cursor: pointer;
}

.luxury-form select option {
    background: #111111;
    color: #FFFFFF;
}

/* Calendar icon color change for date input */
::-webkit-calendar-picker-indicator {
    filter: invert(1) sepia(100%) saturate(300%) hue-rotate(10deg) brightness(90%) contrast(90%);
    cursor: pointer;
    opacity: 0.6;
}
::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

/* Button */
.form-submit-wrapper {
    margin-top: 10px;
    text-align: center;
}

.btn-luxury-book {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: transparent;
    color: #CBA135;
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 18px 45px;
    border: 1px solid #CBA135;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
}

.btn-luxury-book svg {
    width: 20px;
    height: 20px;
    transition: transform 0.4s ease;
}

.btn-luxury-book::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #CBA135;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s cubic-bezier(0.86, 0, 0.07, 1);
}

.btn-luxury-book:hover {
    color: #000000;
    box-shadow: 0 10px 30px rgba(203, 161, 53, 0.4);
}

.btn-luxury-book:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-luxury-book:hover svg {
    transform: translate(3px, -3px);
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 30px;
    }
    
    .booking-form-wrapper {
        padding: 40px 25px;
    }
    
    .btn-luxury-book {
        width: 100%;
    }
}

/* =========================================================================
   CONTACT & FOOTER LUXURY SECTION
   ========================================================================= */

.footer-luxury {
    background-color: #080808;
    color: #FFFFFF;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-luxury-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px 0;
}

/* Contact Grid Layout */
.contact-luxury-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 80px;
}

.contact-luxury-header {
    flex: 1;
}

.contact-luxury-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-luxury-subtitle {
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 30px;
    letter-spacing: 0.1em;
}

.contact-info-blocks {
    flex: 1.5;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

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

.contact-icon-wrapper {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background: #111111;
    border: 1px solid rgba(203, 161, 53, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #CBA135;
    transition: all 0.4s ease;
}

.contact-info-item:hover .contact-icon-wrapper {
    background: rgba(203, 161, 53, 0.1);
    border-color: #CBA135;
    box-shadow: 0 0 15px rgba(203, 161, 53, 0.2);
    transform: translateY(-3px);
}

.contact-icon-wrapper svg {
    width: 24px;
    height: 24px;
}

.contact-text-wrapper h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.contact-text-wrapper p,
.contact-text-wrapper a {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.6;
}

.contact-text-wrapper a:hover {
    color: #CBA135;
}

/* Footer Divider */
.footer-luxury-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(203, 161, 53, 0.3), transparent);
    margin: 60px 0;
}

/* Footer Links Grid */
.footer-luxury-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand-section {
    flex: 2;
}

.footer-luxury-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #CBA135;
    margin-bottom: 15px;
    letter-spacing: 0.1em;
}

.footer-brand-quote {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    max-width: 300px;
}

.footer-links-section {
    flex: 1;
}

.footer-luxury-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 25px;
    letter-spacing: 0.05em;
}

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

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

.footer-luxury-links a {
    font-family: 'Jost', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-luxury-links a:hover {
    color: #CBA135;
    padding-left: 5px;
}



/* Footer Bottom */
.footer-luxury-bottom {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-luxury-bottom p {
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.1em;
}

/* =========================================================================
   CSS ANIMATION KEYFRAMES 
   ========================================================================= */

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

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

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

/* Continuous Floating Animation */
@keyframes floatCard {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1.5deg); }
}

/* Border Gradient Animation */
@keyframes borderGlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Moving Background Gradient */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Soft Glow Resizing */
@keyframes pulseGlow {
    0% { transform: scale(0.9); opacity: 0.4; }
    100% { transform: scale(1.1); opacity: 0.7; }
}

/* Generic Float Up and Down Behavior */
@keyframes floatDecor {
    0% { transform: translateY(-25px) rotate(-3deg); }
    100% { transform: translateY(25px) rotate(3deg); }
}

/* Keyframe logic simulating falling flower petals with spin */
@keyframes fallingFlower {
    0% { 
        transform: translateY(-150px) rotate(0deg); 
        opacity: 0; 
    }
    10% { 
        opacity: 0.65; 
    }
    85% { 
        opacity: 0.65; 
    }
    100% { 
        transform: translateY(115vh) rotate(360deg); 
        opacity: 0; 
    }
}

/* UX Subtle text fade-ins */
@keyframes fadeInText {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    opacity: 0;
    animation: fadeInText 1.2s ease-out forwards 0.3s;
}

.fade-in-delayed {
    opacity: 0;
    animation: fadeInText 1.2s ease-out forwards 0.6s;
}

.fade-in-delayed-more {
    opacity: 0;
    animation: fadeInText 1.2s ease-out forwards 0.9s;
}

/* =========================================================================
   RESPONSIVE LOGIC (Tablet & Mobile Adaptations)
   ========================================================================= */

@media (max-width: 1024px) {
    .salon-name {
        font-size: 5rem;
    }
    .tagline {
        font-size: 1.8rem;
    }
    .hero-content {
        padding-right: 20px;
    }
    
    .about-container {
        gap: 40px;
    }
    
    .section-title {
        font-size: 3.5rem;
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-content-grid {
        gap: 40px;
    }
}

@media (max-width: 900px) {
    .hero-container {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding-top: 130px;
        padding-bottom: 50px;
    }
    
    .hero-content {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-illustration {
        width: 100%;
        height: 450px;
    }

    .salon-name {
        font-size: 4.5rem;
    }

    .tagline {
        font-size: 1.6rem;
    }
    
    .btn-group {
        justify-content: center;
    }

    /* About Section adjustments */
    .about {
        padding: 80px 0;
    }

    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-image-wrapper {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .about-decor {
        right: -10px;
    }

    /* Services adjustments */
    .services {
        padding: 80px 0;
    }

    .service-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .section-desc {
        margin-top: -30px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .testimonial-card {
        padding: 40px 30px;
        min-height: auto;
    }

    .contact-luxury-grid {
        flex-direction: column;
        gap: 50px;
    }
    
    .contact-info-blocks {
        grid-template-columns: 1fr;
    }

    .footer-luxury-grid {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .footer-brand-quote {
        margin: 0 auto;
    }


}

@media (max-width: 768px) {
    /* Navbar Adjustment for CSS Hamburger Menu */
    .nav-container {
        padding: 15px 25px;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        /* Using the Soft Blush base for high contrast flyout */
        background: rgba(255, 230, 242, 0.95); 
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        align-items: center;
        /* Animation Base properties for the flyout container */
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease;
        padding: 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        gap: 20px;
    }

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

    /* Flyout active behavior triggered natively by checkbox #menu-toggle */
    .menu-toggle:checked ~ .nav-links {
        max-height: 450px;
        padding: 30px 0;
    }

    /* Animate Hamburger into a Cross (X) Shape */
    .menu-toggle:checked ~ .hamburger .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .menu-toggle:checked ~ .hamburger .bar:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle:checked ~ .hamburger .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* Hero Text adjustments */
    .salon-name {
        font-size: 3.5rem;
    }

    .tagline {
        font-size: 1.4rem;
    }

    .description {
        font-size: 1rem;
        padding: 0 10px;
    }

    .btn-group {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }

    .btn {
        width: 100%;
    }
    
    .about-container {
        padding: 0 20px;
    }
    
    .section-title {
        font-size: 2.8rem;
    }

    .section-subtitle {
        font-size: 1.4rem;
    }

    /* Make the mobile hero flowers smaller so they do not overpower the layout */
    .flower-art.iris { width: 120px; }
    .flower-art.petunia { width: 140px; }
    .flower-art.salvia { width: 90px; }
    .flower-art.lavender { width: 100px; }
    
    .illustration-glow {
        width: 300px;
        height: 300px;
    }
}
