/* ============================================
   PINK NOIR - Luxury Dark Theme
   Pink Hair Salon | Elegant & Modern
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Dark Theme Colors */
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: #161616;
    --bg-card-hover: #1c1c1c;
    --bg-elevated: #1a1a1a;

    /* Pink Spectrum */
    --pink-hot: #ff1493;
    --pink-primary: #ff1493;
    --pink-light: #ff69b4;
    --pink-soft: #ffb6c1;
    --pink-glow: rgba(255, 20, 147, 0.6);
    --pink-glow-soft: rgba(255, 20, 147, 0.25);

    /* Accent */
    --purple: #9d4edd;
    --gradient-pink: linear-gradient(135deg, #ff1493 0%, #ff69b4 50%, #9d4edd 100%);
    --gradient-btn: linear-gradient(135deg, #ff1493 0%, #d63384 100%);
    --gradient-text: linear-gradient(135deg, #ff1493 0%, #ff69b4 100%);

    /* Text */
    --text-white: #ffffff;
    --text-light: #e0e0e0;
    --text-muted: #888888;
    --text-dim: #555555;

    /* Borders */
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-pink: rgba(255, 20, 147, 0.3);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: var(--text-light);
    background: var(--bg-primary);
    overflow-x: hidden;
}

/* Selection */
::selection {
    background: var(--pink-hot);
    color: white;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--pink-hot), var(--purple));
    border-radius: 5px;
}

/* ============================================
   NAVBAR - Floating Dark Glass
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 18px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid var(--border-subtle);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    padding: 12px 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5),
                0 0 80px rgba(255, 20, 147, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
}

/* Modern Logo with Glow */
.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.03);
}

.logo-icon {
    font-size: 2.8rem;
    color: var(--pink-hot);
    filter: drop-shadow(0 0 15px var(--pink-hot)) drop-shadow(0 0 30px var(--pink-glow));
    animation: scissorGlow 3s ease-in-out infinite;
}

@keyframes scissorGlow {
    0%, 100% {
        filter: drop-shadow(0 0 15px var(--pink-hot)) drop-shadow(0 0 30px var(--pink-glow));
        transform: rotate(0deg);
    }
    25% {
        filter: drop-shadow(0 0 25px var(--pink-hot)) drop-shadow(0 0 50px var(--pink-glow));
        transform: rotate(-15deg);
    }
    50% {
        filter: drop-shadow(0 0 20px var(--pink-hot)) drop-shadow(0 0 40px var(--pink-glow));
        transform: rotate(0deg);
    }
    75% {
        filter: drop-shadow(0 0 30px var(--pink-hot)) drop-shadow(0 0 60px var(--pink-glow));
        transform: rotate(15deg);
    }
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-pink {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--pink-hot);
    text-shadow: 0 0 20px var(--pink-glow), 0 0 40px var(--pink-glow-soft);
    letter-spacing: 2px;
}

.logo-salon {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-top: 5px;
}

/* Nav Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    padding: 12px 22px;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--text-white);
    background: rgba(255, 20, 147, 0.1);
}

.nav-links a.active {
    color: var(--text-white);
    background: var(--gradient-btn);
    box-shadow: 0 0 30px var(--pink-glow-soft);
}

/* Book Button */
.book-btn {
    background: var(--gradient-btn);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 30px var(--pink-glow-soft);
    position: relative;
    overflow: hidden;
}

.book-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.book-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px var(--pink-glow),
                0 0 60px var(--pink-glow-soft);
}

.book-btn:hover::before {
    left: 100%;
}

/* ============================================
   HERO SECTION - Cinematic Dark
   ============================================ */

.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(10, 10, 10, 0.3) 0%,
            rgba(10, 10, 10, 0.5) 50%,
            rgba(10, 10, 10, 0.95) 100%),
        linear-gradient(135deg,
            rgba(255, 20, 147, 0.15) 0%,
            transparent 50%,
            rgba(157, 78, 221, 0.1) 100%),
        url('images/pink1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -2;
}

/* Animated Glow Orbs */
.hero::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--pink-glow-soft) 0%, transparent 70%);
    top: 20%;
    left: -10%;
    animation: floatOrb 15s ease-in-out infinite;
    z-index: -1;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    33% { transform: translate(100px, 50px) scale(1.1); opacity: 0.7; }
    66% { transform: translate(50px, -30px) scale(0.9); opacity: 0.4; }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 30px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 30px;
    line-height: 1.1;
    text-shadow:
        0 0 20px rgba(255, 255, 255, 0.3),
        0 0 40px rgba(255, 20, 147, 0.2),
        0 4px 30px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
    letter-spacing: -1px;
}

.hero-content h1 span {
    background: linear-gradient(135deg, #ff1493 0%, #ff69b4 50%, #ff1493 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 0 40px var(--pink-glow));
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        filter: drop-shadow(0 0 30px rgba(255, 20, 147, 0.6));
    }
    50% {
        filter: drop-shadow(0 0 50px rgba(255, 20, 147, 0.9));
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content p {
    font-size: clamp(1.2rem, 2.2vw, 1.5rem);
    color: #ffffff;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.3s forwards;
    opacity: 0;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    font-weight: 400;
    letter-spacing: 0.5px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-btn);
    color: white;
    padding: 20px 50px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 40px var(--pink-glow-soft),
                0 20px 40px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.6s forwards;
    opacity: 0;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 0 60px var(--pink-glow),
                0 30px 60px rgba(0, 0, 0, 0.4);
}

.cta-button:hover::before {
    left: 100%;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--pink-light);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 10px;
    background: var(--pink-hot);
    border-radius: 3px;
    animation: scrollDown 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

@keyframes scrollDown {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 25px; }
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
    padding: 150px 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--pink-hot), transparent);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--text-white);
    margin-bottom: 40px;
    line-height: 1.2;
    position: relative;
}

.about-text h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--gradient-pink);
    margin-top: 25px;
    border-radius: 2px;
    box-shadow: 0 0 20px var(--pink-glow-soft);
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.9;
}

.about-image {
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid var(--pink-hot);
    border-radius: 20px;
    opacity: 0.3;
    z-index: -1;
}

.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--pink-glow-soft) 0%, transparent 50%);
    border-radius: 20px;
    pointer-events: none;
}

.about-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.02);
}

/* Image Divider - Hidden in dark theme */
.image-divider {
    display: none;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services {
    padding: 150px 0;
    background: var(--bg-secondary);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--pink-hot), transparent);
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--text-white);
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.section-title h2::before,
.section-title h2::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 1px;
    background: var(--gradient-pink);
}

.section-title h2::before {
    right: calc(100% + 30px);
}

.section-title h2::after {
    left: calc(100% + 30px);
}

.section-title p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-card);
    padding: 45px 35px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-subtle);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-pink);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-10px);
    border-color: var(--border-pink);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4),
                0 0 40px var(--pink-glow-soft);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 20, 147, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2rem;
    transition: all 0.4s ease;
    border: 1px solid var(--border-pink);
}

.service-icon i {
    color: var(--pink-hot);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: var(--gradient-btn);
    border-color: transparent;
    box-shadow: 0 0 30px var(--pink-glow);
    transform: scale(1.1);
}

.service-card:hover .service-icon i {
    color: white;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-price {
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--pink-hot);
}

.price-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-subtle);
}

.old-price {
    font-size: 1rem;
    color: var(--text-dim);
    text-decoration: line-through;
}

.new-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--pink-hot);
}

.discount-label {
    font-size: 0.75rem;
    background: var(--gradient-btn);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   TEAM SECTION
   ============================================ */

.team {
    padding: 150px 0;
    background: var(--bg-primary);
    position: relative;
}

.team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--pink-hot), transparent);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.team-member {
    background: var(--bg-card);
    border-radius: 25px;
    padding: 50px 35px 40px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-subtle);
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.1) 0%, transparent 100%);
}

.team-member:hover {
    transform: translateY(-15px);
    border-color: var(--border-pink);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5),
                0 0 50px var(--pink-glow-soft);
}

.team-member img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 25px auto;
    border: 4px solid var(--bg-card);
    box-shadow: 0 0 0 2px var(--pink-hot),
                0 15px 40px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.team-member:hover img {
    box-shadow: 0 0 0 3px var(--pink-hot),
                0 0 40px var(--pink-glow),
                0 20px 50px rgba(0, 0, 0, 0.5);
    transform: scale(1.05);
}

.team-member h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--text-white);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.team-member p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    font-size: 0.95rem;
}

.stylist-gallery-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--pink-hot);
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.4s ease;
    border: 2px solid var(--pink-hot);
    position: relative;
    z-index: 1;
}

.stylist-gallery-btn:hover {
    background: var(--gradient-btn);
    color: white;
    border-color: transparent;
    box-shadow: 0 0 30px var(--pink-glow-soft);
    transform: translateY(-2px);
}

/* ============================================
   GALLERY SECTION
   ============================================ */

.gallery {
    padding: 150px 0;
    background: var(--bg-secondary);
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--pink-hot), transparent);
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    width: 300px;
    aspect-ratio: 4/5;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        transparent 0%,
        transparent 40%,
        rgba(255, 20, 147, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.gallery-item::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    color: white;
    font-size: 1.5rem;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5),
                0 0 40px var(--pink-glow-soft);
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
    padding: 150px 0;
    background: var(--bg-primary);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--pink-hot), transparent);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--text-white);
    margin-bottom: 40px;
    position: relative;
}

.contact-info h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gradient-pink);
    margin-top: 20px;
    border-radius: 2px;
}

.contact-item {
    margin-bottom: 25px;
    padding: 25px 30px;
    background: var(--bg-card);
    border-radius: 15px;
    border: 1px solid var(--border-subtle);
    transition: all 0.3s ease;
    border-left: 3px solid var(--pink-hot);
}

.contact-item:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-pink);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-item h4 {
    color: var(--pink-hot);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.contact-image {
    display: none;
}

.contact-form {
    background: var(--bg-card);
    padding: 50px;
    border-radius: 25px;
    border: 1px solid var(--border-subtle);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-pink);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 22px;
    background: var(--bg-primary);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-dim);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--pink-hot);
    box-shadow: 0 0 0 3px var(--pink-glow-soft);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: var(--gradient-btn);
    color: white;
    padding: 18px 50px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.4s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px var(--pink-glow-soft);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--pink-glow);
}

/* ============================================
   MAP SECTION
   ============================================ */

.map-section {
    padding: 100px 0;
    background: var(--bg-secondary);
    position: relative;
}

.map-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--pink-hot), transparent);
}

.map-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

.map-title {
    text-align: center;
    margin-bottom: 60px;
}

.map-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--text-white);
    margin-bottom: 20px;
}

.map-title p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.map-embed {
    border-radius: 20px;
    overflow: hidden;
    height: 450px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-subtle);
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(100%) invert(92%) contrast(90%);
    transition: filter 0.4s ease;
}

.map-embed:hover iframe {
    filter: grayscale(50%) invert(92%) contrast(90%);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: linear-gradient(135deg, #fff0f5 0%, #ffe4ec 50%, #ffd6e7 100%) !important;
    padding: 80px 0 40px;
    position: relative;
    border-top: 3px solid #ff1493;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: transparent;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.footer-menu {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-menu a {
    color: #d63384;
    text-decoration: none;
    padding: 10px 18px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border-radius: 25px;
}

.footer-menu a:hover {
    color: #fff;
    background: linear-gradient(135deg, #ff1493 0%, #d63384 100%);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    transition: all 0.4s ease;
}

.social-icon:hover {
    transform: translateY(-5px);
}

.social-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f8bbd9;
    transition: all 0.3s ease;
    filter: grayscale(0%);
}

.social-img:hover {
    border-color: #ff1493;
    box-shadow: 0 0 25px rgba(255, 20, 147, 0.4);
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 2px solid #f8bbd9;
}

.footer-bottom p {
    color: #d63384;
    font-size: 0.9rem;
    font-weight: 500;
}

/* ============================================
   MOBILE MENU
   ============================================ */

.mobile-menu {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--pink-hot);
    cursor: pointer;
    padding: 10px;
}

.mobile-nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-subtle);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.mobile-nav-links.active {
    display: block;
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-nav-links a {
    display: block;
    padding: 20px 30px;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--border-subtle);
    transition: all 0.3s ease;
}

.mobile-nav-links a:hover {
    background: rgba(255, 20, 147, 0.1);
    color: var(--pink-hot);
    padding-left: 40px;
}

.mobile-book-btn {
    background: var(--gradient-btn) !important;
    color: white !important;
    margin: 15px;
    border-radius: 50px;
    text-align: center;
}

/* ============================================
   GALLERY MODAL
   ============================================ */

.gallery-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.gallery-modal-content {
    background: var(--bg-card);
    margin: 3% auto;
    border-radius: 25px;
    width: 90%;
    max-width: 950px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    border: 1px solid var(--border-subtle);
    animation: modalSlideIn 0.4s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.gallery-modal-header {
    background: var(--gradient-btn);
    color: white;
    padding: 25px 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gallery-modal-header h3 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
}

.gallery-close {
    font-size: 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
}

.gallery-close:hover {
    transform: rotate(90deg);
    background: rgba(255,255,255,0.2);
}

.gallery-modal-body {
    padding: 35px;
    max-height: 70vh;
    overflow-y: auto;
    background: var(--bg-card);
}

.stylist-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.stylist-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s ease;
    aspect-ratio: 4/5;
}

.stylist-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.stylist-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.stylist-gallery-item:hover img {
    transform: scale(1.05);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
    .nav-container,
    .container,
    .map-container {
        padding: 0 30px;
    }

    .about-grid {
        gap: 60px;
    }
}

@media (max-width: 1024px) {
    .section-title h2::before,
    .section-title h2::after {
        display: none;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links, .book-btn {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .nav-container {
        padding: 0 20px;
    }

    .logo-pink {
        font-size: 1.5rem;
    }

    .logo-salon {
        font-size: 0.65rem;
        letter-spacing: 2px;
    }

    .logo-icon {
        font-size: 1.8rem;
    }

    /* Hero Mobile */
    .hero {
        min-height: 600px;
    }

    .hero::before {
        background-attachment: scroll;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    /* Sections Mobile */
    .about,
    .services,
    .gallery,
    .contact,
    .team {
        padding: 100px 0;
    }

    .container {
        padding: 0 20px;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image::before {
        display: none;
    }

    .about-image img {
        height: 400px;
    }

    .services-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        gap: 10px;
    }

    .gallery-item {
        width: calc(50% - 5px);
    }

    .contact-form {
        padding: 35px 25px;
    }

    .map-embed {
        height: 350px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-menu {
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .cta-button {
        padding: 16px 35px;
        font-size: 14px;
    }

    .gallery-grid {
        gap: 15px;
    }

    .gallery-item {
        width: 100%;
    }

    .team-member {
        padding: 40px 25px 35px;
    }

    .service-card {
        padding: 35px 25px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .footer-menu a {
        padding: 8px 12px;
        font-size: 13px;
    }
}

/* ============================================
   SPECIAL EFFECTS
   ============================================ */

/* Pink glow on specific elements */
.pink-glow {
    box-shadow: 0 0 40px var(--pink-glow);
}

/* Neon text effect */
.neon-text {
    text-shadow: 0 0 10px var(--pink-hot),
                 0 0 20px var(--pink-hot),
                 0 0 40px var(--pink-hot);
}

/* Divider line */
.divider-image {
    display: none;
}
