/* ==========================================================================
   HAIR STUDIO SALON - DESIGN SYSTEM & STYLESHEET
   Location: Model Town, Rewari
   Theme: Luxury Dark Mode with Metallic Gold Accents
   ========================================================================== */

/* 1. CSS CUSTOM PROPERTIES (VARIABLES)
   ========================================================================== */
:root {
    /* Color Palette */
    --bg-darker: #0d0d0d;
    --bg-dark: #121212;
    --bg-card: #1c1c1c;
    --bg-card-hover: #262626;
    
    --primary-gold: #d4af37;
    --primary-gold-rgb: 212, 175, 55;
    --light-gold: #f3e5ab;
    --dark-gold: #aa7c11;
    
    --text-white: #ffffff;
    --text-muted: #a6a6a6;
    --text-dark: #333333;
    
    --gold-gradient: linear-gradient(135deg, var(--dark-gold) 0%, var(--primary-gold) 50%, var(--light-gold) 100%);
    --dark-gradient: linear-gradient(180deg, #181818 0%, #0d0d0d 100%);
    
    --border-color: rgba(255, 255, 255, 0.07);
    --border-gold: rgba(212, 175, 55, 0.3);
    
    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Montserrat', system-ui, -apple-system, sans-serif;
    
    /* Transitions & Shadows */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-quick: all 0.2s ease;
    --shadow-soft: 0 8px 30px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(212, 175, 55, 0.2);
    --shadow-glow-intense: 0 0 30px rgba(212, 175, 55, 0.45);
    
    /* Border Radii */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 9999px;
}

/* 2. BASE STYLES & RESET
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

button {
    font-family: inherit;
    background: none;
    border: none;
    cursor: pointer;
    outline: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-gold);
}

/* 3. REUSABLE COMPONENTS (BUTTONS, TYPOGRAPHY)
   ========================================================================== */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 24px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--primary-gold);
    display: block;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: var(--gold-gradient);
    margin: 0 auto 24px auto;
    border-radius: var(--radius-full);
}

.section-desc {
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-gold {
    background: var(--gold-gradient);
    color: var(--bg-darker);
    box-shadow: var(--shadow-soft);
}

.btn-gold::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: 0.5s;
}

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

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

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

.btn-outline:hover {
    background: var(--gold-gradient);
    color: var(--bg-darker);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-large {
    padding: 18px 36px;
    font-size: 0.95rem;
}

.btn-full-width {
    width: 100%;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* Common text styles */
.gold-text {
    color: var(--primary-gold);
}

.gold-gradient-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.toast {
    background: rgba(28, 28, 28, 0.9);
    border-left: 4px solid var(--primary-gold);
    color: var(--text-white);
    padding: 16px 24px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
}

.toast.show {
    transform: translateX(0);
}

.toast i {
    color: var(--primary-gold);
    font-size: 1.25rem;
}

/* ==========================================================================
   4. HEADER & NAVIGATION
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    background: transparent;
    border-bottom: 1px solid transparent;
}

.main-header.scrolled {
    background: rgba(13, 13, 13, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.main-header.scrolled .header-container {
    padding: 14px 24px;
}

/* Logo Brand */
.logo-brand {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-brand .subtitle {
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 5px;
    color: var(--text-muted);
    margin-top: 4px;
    font-weight: 500;
}

/* Navigation Links */
.nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold-gradient);
    transition: var(--transition-quick);
}

.nav-link:hover {
    color: var(--text-white);
}

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

.nav-link.active {
    color: var(--primary-gold);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.phone-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.phone-btn i {
    color: var(--primary-gold);
}

.phone-btn:hover {
    color: var(--primary-gold);
}

/* Mobile Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
}

.hamburger-menu .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-white);
    transition: var(--transition-quick);
}

/* ==========================================================================
   5. HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background-image: url('assets/salon_interior.png');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(13, 13, 13, 0.95) 0%, rgba(13, 13, 13, 0.8) 50%, rgba(13, 13, 13, 0.5) 100%);
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 40px;
}

.hero-text-content {
    animation: fadeInUp 1s ease-out forwards;
}

.hero-tagline {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--primary-gold);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-tagline .line {
    width: 30px;
    height: 1px;
    background: var(--primary-gold);
    display: inline-block;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 580px;
}

.hero-actions-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Hero Badge Card */
.hero-badge-card {
    background: rgba(28, 28, 28, 0.5);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-soft);
    position: relative;
    justify-self: end;
    animation: fadeInUp 1.2s ease-out forwards;
    border-top: 2px solid var(--primary-gold);
}

.hero-badge-card::after {
    content: '';
    position: absolute;
    width: 80%;
    height: 1px;
    background: var(--gold-gradient);
    bottom: 0;
    left: 10%;
}

.badge-content .number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    display: block;
    line-height: 1;
    margin-bottom: 12px;
}

.badge-content .text {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-white);
}

/* Scroll Down Indicator */
.scroll-down-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-down-indicator:hover {
    color: var(--primary-gold);
}

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

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

/* ==========================================================================
   6. SERVICES SECTION
   ========================================================================== */
.services-section {
    background: var(--bg-darker);
}

.services-tabs {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 50px;
}

.tab-toggle-btn {
    padding: 16px 36px;
    font-size: 1.05rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 2px solid transparent;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-smooth);
}

.tab-toggle-btn.active {
    color: var(--primary-gold);
    border-bottom: 2px solid var(--primary-gold);
}

.tab-toggle-btn:hover {
    color: var(--text-white);
}

/* Services Panels display control */
.services-panel {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.services-panel.active {
    display: block;
    opacity: 1;
    animation: fadeIn 0.6s ease-in-out forwards;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

/* Service Category Cards */
.service-category-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
    transition: var(--transition-smooth);
}

.service-category-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: var(--shadow-soft);
}

.service-category-card:hover::before {
    background: var(--gold-gradient);
}

.category-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 24px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-category-card:hover .category-icon-wrapper {
    background: var(--gold-gradient);
    color: var(--bg-darker);
    transform: scale(1.05);
}

.service-category-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.category-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 30px;
}

/* Service Item Lists */
.service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.95rem;
}

.price-dash {
    flex-grow: 1;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
    margin: 0 12px;
}

.price-val {
    font-weight: 600;
    color: var(--primary-gold);
}

/* Special Highlight Card */
.highlight-card {
    border: 1px solid var(--border-gold);
    background: linear-gradient(180deg, rgba(28, 28, 28, 1) 0%, rgba(35, 30, 20, 0.7) 100%);
    display: flex;
    flex-direction: column;
}

.highlight-card .service-list {
    margin-bottom: 30px;
    flex-grow: 1;
}

.highlight-card button {
    margin-top: auto;
}

/* ==========================================================================
   7. INTERACTIVE QUIZ SECTION
   ========================================================================== */
.quiz-section {
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

.quiz-glass-wrapper {
    background: rgba(28, 28, 28, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border-color);
    padding: 60px 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    max-width: 900px;
    margin: 0 auto;
}

.quiz-header-content {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 40px auto;
}

.quiz-tag {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--primary-gold);
    margin-bottom: 8px;
    display: block;
}

.quiz-header-content h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.quiz-header-content p {
    color: var(--text-muted);
}

/* Quiz Steps */
.quiz-step {
    display: none;
}

.quiz-step.active {
    display: block;
    animation: fadeIn 0.4s ease-in-out forwards;
}

.quiz-progress-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: block;
}

.quiz-progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    margin-bottom: 30px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: var(--gold-gradient);
    transition: width 0.4s ease-out;
}

.quiz-question {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.quiz-options-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.quiz-option-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    color: var(--text-white);
    text-align: left;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition-quick);
}

.quiz-option-btn:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: var(--primary-gold);
    transform: translateX(4px);
}

.option-icon {
    font-size: 1.4rem;
    color: var(--primary-gold);
}

/* Quiz Results Card */
.quiz-result {
    display: none;
    text-align: center;
    padding: 30px;
    animation: fadeInUp 0.6s ease-out forwards;
}

.result-badge {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.result-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.result-desc {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 30px auto;
    line-height: 1.7;
}

.result-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ==========================================================================
   8. EXPERIENCE / ABOUT US SECTION
   ========================================================================== */
.experience-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.experience-text p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 40px;
}

/* Feature Items */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.feature-item {
    display: flex;
    gap: 20px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--primary-gold);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.feature-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.feature-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* Experience Image collage */
.experience-images {
    position: relative;
    height: 550px;
}

.image-wrapper {
    position: absolute;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.image-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(13, 13, 13, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.main-img {
    width: 75%;
    height: 75%;
    top: 0;
    left: 0;
    z-index: 1;
}

.secondary-img {
    width: 65%;
    height: 60%;
    bottom: 0;
    right: 0;
    z-index: 2;
    border: 4px solid var(--bg-dark);
}

/* ==========================================================================
   9. TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
    background: var(--bg-darker);
}

.testimonial-slider-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-wrapper {
    overflow: hidden;
    position: relative;
    min-height: 250px;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    text-align: center;
    transition: opacity 0.4s ease;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
    animation: fadeIn 0.5s ease forwards;
}

.rating-stars {
    color: var(--primary-gold);
    font-size: 1.1rem;
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    gap: 6px;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 30px;
    color: var(--text-white);
}

.client-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.client-location {
    color: var(--text-muted);
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.slider-btn {
    width: 48px;
    height: 48px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition-quick);
}

.slider-btn:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.05);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dots .dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-quick);
}

.slider-dots .dot.active {
    background: var(--primary-gold);
    width: 20px;
}

/* ==========================================================================
   10. CONTACT & LOCATION SECTION
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: var(--radius-md);
    display: flex;
    gap: 24px;
    transition: var(--transition-quick);
}

.contact-info-card:hover {
    border-color: var(--border-gold);
}

.contact-info-card .card-icon {
    font-size: 1.5rem;
    color: var(--primary-gold);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-info-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-info-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.contact-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-gold);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.contact-link:hover {
    color: var(--text-white);
}

/* Map Directions Panel */
.map-directions-panel {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.map-card-wrapper {
    height: 260px;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-color);
}

.map-bg-grid {
    width: 100%;
    height: 100%;
    background-color: #1a1a1a;
    background-image: 
        radial-gradient(rgba(212, 175, 55, 0.15) 1px, transparent 0),
        radial-gradient(rgba(212, 175, 55, 0.1) 1px, transparent 0);
    background-size: 24px 24px;
    background-position: 0 0, 12px 12px;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 13, 13, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    text-align: center;
    z-index: 2;
}

.map-overlay h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.map-overlay p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.map-marker-pin {
    font-size: 2.2rem;
    color: var(--primary-gold);
    animation: bouncePin 2s infinite ease-in-out;
    margin-bottom: 16px;
}

/* Quick Inquiry form */
.quick-inquiry-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: var(--radius-md);
}

.quick-inquiry-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.inquiry-form input,
.inquiry-form textarea,
.booking-details-form input,
.booking-details-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    color: var(--text-white);
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition-quick);
}

.inquiry-form input:focus,
.inquiry-form textarea:focus,
.booking-details-form input:focus,
.booking-details-form textarea:focus {
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-glow);
}

/* ==========================================================================
   11. FOOTER
   ========================================================================== */
.footer-section {
    background: #080808;
    border-top: 1px solid var(--border-color);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px 50px 24px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-brand-col p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 20px 0;
    max-width: 280px;
}

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

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.social-links a:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.05);
}

.footer-container h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links-col ul,
.footer-services-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-col a,
.footer-services-col a {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-links-col a:hover,
.footer-services-col a:hover {
    color: var(--primary-gold);
    padding-left: 4px;
}

.footer-newsletter-col p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.newsletter-form input {
    background: transparent;
    border: none;
    padding: 12px 16px;
    color: var(--text-white);
    flex-grow: 1;
    font-size: 0.85rem;
    outline: none;
}

.newsletter-form button {
    background: var(--gold-gradient);
    color: var(--bg-darker);
    padding: 0 16px;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 24px 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a:hover {
    color: var(--primary-gold);
}

.footer-credit a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 500;
}

.footer-credit a:hover {
    color: var(--text-light);
    text-decoration: underline;
}

/* ==========================================================================
   12. INTERACTIVE MODAL (WIZARD)
   ========================================================================== */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 8, 8, 0.9);
    backdrop-filter: blur(15px);
    z-index: 2000;
    display: none; /* Controlled by JS */
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-backdrop.active {
    display: flex;
}

.modal-card {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    width: 100%;
    max-width: 950px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    max-height: 90vh;
    animation: zoomIn 0.3s ease-out forwards;
}

.modal-close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 2rem;
    color: var(--text-muted);
    transition: var(--transition-quick);
    z-index: 10;
}

.modal-close-btn:hover {
    color: var(--text-white);
}

/* Wizard Header */
.wizard-header {
    background: var(--bg-card);
    padding: 30px 40px 24px 40px;
    border-bottom: 1px solid var(--border-color);
}

.wizard-header h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 4px;
}

.wizard-header p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* Wizard Steps progress indicators */
.wizard-steps-indicator {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.wizard-steps-indicator::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 5%;
    width: 90%;
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    flex: 1;
}

.step-indicator .step-num {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background: var(--bg-darker);
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: var(--transition-smooth);
    margin-bottom: 8px;
}

.step-indicator .step-label {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    transition: var(--transition-smooth);
    text-align: center;
}

.step-indicator.active .step-num {
    border-color: var(--primary-gold);
    color: var(--bg-darker);
    background: var(--gold-gradient);
    box-shadow: var(--shadow-glow);
}

.step-indicator.active .step-label {
    color: var(--primary-gold);
}

.step-indicator.completed .step-num {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.1);
}

.step-indicator.completed .step-label {
    color: var(--text-white);
}

/* Wizard Panels Content */
.wizard-content {
    padding: 40px;
    overflow-y: auto;
    flex-grow: 1;
}

.wizard-panel {
    display: none;
}

.wizard-panel.active {
    display: block;
    animation: fadeIn 0.4s ease forwards;
}

.select-hint {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

/* Step 1 layout details */
.wizard-services-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
    margin-bottom: 24px;
}

.wizard-gender-select {
    display: flex;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 4px;
}

.radio-label {
    cursor: pointer;
}

.radio-label input {
    display: none;
}

.radio-custom-btn {
    padding: 10px 24px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    border-radius: var(--radius-sm);
    transition: var(--transition-quick);
}

.radio-label input:checked + .radio-custom-btn {
    background: var(--gold-gradient);
    color: var(--bg-darker);
}

/* Wizard Services Lists Group */
.wizard-services-list {
    display: none;
    flex-direction: column;
    gap: 32px;
}

.wizard-services-list.active {
    display: flex;
}

.wizard-cat-group h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary-gold);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wizard-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
}

.wizard-service-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 18px;
    border-radius: var(--radius-md);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-quick);
}

.wizard-service-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

.wizard-service-item.selected {
    border-color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.05);
}

.item-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.item-meta .item-name {
    font-size: 0.95rem;
    font-weight: 500;
}

.item-meta .item-price {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-gold);
}

.wizard-service-item .select-icon {
    font-size: 1.25rem;
    color: var(--text-muted);
    transition: var(--transition-quick);
}

.wizard-service-item.selected .select-icon {
    color: var(--primary-gold);
    content: "\f058"; /* FA Check Circle replacement via Class list update in JS */
}

/* Step 2 Stylist Selection layout */
.stylist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.stylist-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stylist-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

.stylist-card.active {
    border-color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.05);
    box-shadow: var(--shadow-glow);
}

.stylist-avatar {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-gold);
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stylist-card.active .stylist-avatar {
    background: var(--gold-gradient);
    color: var(--bg-darker);
}

.stylist-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.stylist-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin-bottom: 16px;
}

.select-indicator {
    margin-top: auto;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    display: none;
}

.stylist-card.active .select-indicator {
    display: inline-block;
    color: var(--primary-gold);
}

/* Step 3: Date & Time Layout */
.date-time-flex-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
}

.sub-section-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary-gold);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.calendar-controls {
    text-align: center;
    font-weight: 600;
    margin-bottom: 16px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    text-align: center;
}

.day-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: 8px 0;
}

.cal-day {
    padding: 12px 0;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    transition: var(--transition-quick);
}

.cal-day:hover:not(.empty) {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--primary-gold);
}

.cal-day.active {
    background: var(--gold-gradient);
    color: var(--bg-darker);
    font-weight: 600;
    border-color: var(--primary-gold);
}

.cal-day.empty {
    background: transparent;
    border-color: transparent;
    cursor: default;
}

/* Time slots selection list */
.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
}

.time-slot-btn {
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-white);
    padding: 12px 0;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition-quick);
}

.time-slot-btn:hover {
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

.time-slot-btn.active {
    background: var(--gold-gradient);
    color: var(--bg-darker);
    font-weight: 600;
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-glow);
}

/* Step 4: Details & Summary Form layout */
.review-details-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.booking-summary-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: var(--radius-md);
}

.booking-summary-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.summary-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.07);
    margin: 16px 0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
}

.summary-row .sum-label {
    color: var(--text-muted);
}

.summary-row .sum-value {
    font-weight: 500;
}

.summary-services-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.total-row {
    font-size: 1.15rem;
    font-weight: 600;
}

.total-row .sum-value {
    color: var(--primary-gold);
}

.pay-hint {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 16px;
    font-style: italic;
}

.booking-details-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.booking-details-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.booking-details-form label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
}

/* Wizard Footer */
.wizard-footer {
    background: var(--bg-card);
    padding: 24px 40px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.selected-services-indicator {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-gold);
}

/* ==========================================================================
   13. ANIMATIONS KEYS
   ========================================================================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

@keyframes scrollMouse {
    0% {
        opacity: 1;
        top: 8px;
    }
    50% {
        opacity: 0.3;
        top: 20px;
    }
    100% {
        opacity: 1;
        top: 8px;
    }
}

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

/* ==========================================================================
   14. RESPONSIVE DESIGN MEDIA QUERIES
   ========================================================================== */

/* Tablet (max-width: 1024px) */
@media screen and (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-content-wrapper {
        grid-template-columns: 1.3fr 0.7fr;
    }
    
    .experience-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .experience-images {
        height: 480px;
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

/* Small Tablets / Landscape Phones (max-width: 768px) */
@media screen and (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    /* Navigation drawer menu toggling */
    .hamburger-menu {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-darker);
        border-left: 1px solid var(--border-color);
        z-index: 999;
        transition: var(--transition-smooth);
        padding: 100px 40px 40px 40px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 24px;
    }
    
    .hamburger-menu.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger-menu.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger-menu.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    /* Hero layout */
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 100px;
    }
    
    .hero-tagline {
        justify-content: center;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions-container {
        justify-content: center;
    }
    
    .hero-badge-card {
        justify-self: center;
        padding: 30px;
    }
    
    /* Grid Layouts to Single Column */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    /* Wizard modal details responsive */
    .wizard-steps-indicator {
        display: none; /* Hide labels, simplify for mobile */
    }
    
    .date-time-flex-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .review-details-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .phone-btn span {
        display: none; /* Icon only on mobile navbar to save space */
    }
}

/* Mobile Portrait Phones (max-width: 480px) */
@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .services-tabs {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .tab-toggle-btn {
        width: 100%;
        justify-content: center;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .experience-images {
        height: 380px;
    }
    
    .wizard-footer {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
    }
    
    .wizard-content {
        padding: 20px;
    }
    
    .stylist-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .modal-card {
        max-height: 95vh;
    }
}


/* ==========================================================================
   15. GALLERY SECTION & LIGHTBOX
   ========================================================================== */
.gallery-section {
    background: var(--bg-dark);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    transition: var(--transition-quick);
}

.filter-btn:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

.filter-btn.active {
    background: var(--gold-gradient);
    color: var(--bg-darker);
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-glow);
}

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

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    transition: var(--transition-smooth);
}

.gallery-item.hide {
    display: none;
}

.gallery-image-wrapper {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    cursor: pointer;
}

.gallery-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-image-wrapper img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 13, 13, 0.75);
    backdrop-filter: blur(4px);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.gallery-image-wrapper:hover .gallery-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    padding: 20px;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.gallery-image-wrapper:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content i {
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 12px;
    display: inline-block;
}

.overlay-content h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 6px;
    color: var(--text-white);
}

.overlay-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 8, 8, 0.98);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox-modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    font-size: 3rem;
    color: var(--text-muted);
    transition: var(--transition-quick);
    z-index: 10002;
}

.lightbox-close:hover {
    color: var(--text-white);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-quick);
    z-index: 10001;
}

.lightbox-nav:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.05);
}

.lightbox-prev {
    left: 32px;
}

.lightbox-next {
    right: 32px;
}

.lightbox-content {
    max-width: 80%;
    max-height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    animation: zoomIn 0.3s ease;
}

.lightbox-img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    border: 1px solid var(--border-color);
}

.lightbox-caption {
    color: var(--text-muted);
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-align: center;
    max-width: 500px;
}

@media screen and (max-width: 768px) {
    .lightbox-nav {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }
    .lightbox-prev {
        left: 12px;
    }
    .lightbox-next {
        right: 12px;
    }
    .lightbox-close {
        top: 16px;
        right: 20px;
    }
}


/* ==========================================================================
   16. PAGE PRELOADER (LOADER SCREEN)
   ========================================================================== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-darker);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(212, 175, 55, 0.1);
    border-top-color: var(--primary-gold);
    border-radius: var(--radius-full);
    animation: spinLoader 1s infinite linear;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.loader-logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-white);
    animation: pulseLogo 2s infinite ease-in-out;
}

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

@keyframes pulseLogo {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}


/* Custom Salon Loader Icon Art */
.salon-loader-art {
    position: relative;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.loader-icons {
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scissor-icon, .comb-icon {
    position: absolute;
    font-size: 2rem;
    color: var(--primary-gold);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    transition: var(--transition-quick);
}

.comb-icon {
    transform: rotate(-40deg) translate(-2px, -2px);
    opacity: 0.35;
}

.scissor-icon {
    transform: rotate(40deg);
    animation: snipScissors 1.4s infinite ease-in-out;
}

@keyframes snipScissors {
    0%, 100% {
        transform: rotate(40deg) scale(1);
    }
    50% {
        transform: rotate(15deg) scale(1.1); /* Snip handle squeeze animation */
    }
}


/* ==========================================================================
   17. FLOATING WHATSAPP WIDGET
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1999;
    transition: var(--transition-smooth);
    animation: whatsappPulse 2s infinite ease-in-out;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    background-color: #20ba5a;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    color: #fff;
}

@keyframes whatsappPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    }
}

@media screen and (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
        bottom: 20px;
        left: 20px;
    }
}

/* ==========================================================================
   13. LEGAL PAGES (PRIVACY & TERMS)
   ========================================================================== */
.legal-section {
    padding: 140px 24px 80px 24px;
    max-width: 900px;
    margin: 0 auto;
    min-height: 70vh;
}

.legal-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 48px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.legal-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 8px;
    text-align: center;
}

.legal-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    text-align: center;
    margin-bottom: 48px;
    letter-spacing: 1px;
}

.legal-content h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-gold);
    font-size: 1.6rem;
    margin-top: 36px;
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    padding-bottom: 8px;
}

.legal-content p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 1rem;
}

.legal-content ul {
    margin-bottom: 24px;
    padding-left: 24px;
}

.legal-content li {
    line-height: 1.8;
    margin-bottom: 10px;
    list-style-type: square;
    color: var(--text-muted);
    font-size: 0.98rem;
}

.legal-content strong {
    color: var(--text-light);
}

@media screen and (max-width: 768px) {
    .legal-section {
        padding: 100px 16px 60px 16px;
    }
    .legal-card {
        padding: 24px 16px;
    }
    .legal-title {
        font-size: 2.2rem;
    }
}
