/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-purple: #b026ff;
    --primary-pink: #ff69b4;
    --dark-purple: #4a0e78;
    --light-purple: #e6b3ff;
    --neon-glow: #ff1aff;
    --text-dark: #2d1b4e;
    --text-light: #ffffff;
    --gradient-bg: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #b026ff 100%);
    --gradient-purple-pink: linear-gradient(135deg, #b026ff 0%, #ff69b4 100%);
    --shadow-purple: 0 10px 40px rgba(176, 38, 255, 0.3);
    --shadow-pink: 0 10px 40px rgba(255, 105, 180, 0.3);
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: #faf8ff;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* Page Load Animation - Simplified */
.navbar {
    animation: fadeInDown 0.6s ease-out;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out 0.2s;
}

.hero-background {
    animation: fadeIn 1s ease-out;
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 24px rgba(176, 38, 255, 0.08);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 32px rgba(176, 38, 255, 0.12);
    border-bottom: 1px solid rgba(176, 38, 255, 0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    background: var(--gradient-purple-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: -0.5px;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.language-switcher {
    display: flex;
    gap: 8px;
    align-items: center;
    background: rgba(176, 38, 255, 0.05);
    padding: 6px;
    border-radius: 12px;
    border: 1px solid rgba(176, 38, 255, 0.1);
}

.lang-btn {
    background: none;
    border: none;
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 14px;
}

.lang-btn.active {
    background: var(--gradient-purple-pink);
    color: white;
    box-shadow: 0 2px 8px rgba(176, 38, 255, 0.3);
}

.lang-btn:hover:not(.active) {
    background: rgba(176, 38, 255, 0.1);
}

.lang-divider {
    color: #ccc;
    font-weight: 300;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-purple-pink);
    transition: width 0.3s ease;
}

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

.nav-link:hover {
    color: var(--primary-purple);
}

.menu-toggle {
    display: none;
    order: 3;
    margin-left: 0;
    padding: 5px 8px;
    border: none;
    background: none;
    cursor: pointer;
    position: relative;
    z-index: 1101;
    width: 40px;
    height: 40px;
    overflow: hidden;
    font-size: 0;
    line-height: 0;
    color: transparent;
    text-indent: -9999px;
}

.menu-toggle::before {
    content: '☰';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    line-height: 1;
    color: var(--text-dark);
    text-indent: 0;
    transition: content 0.2s ease;
}

.menu-toggle[aria-expanded="true"]::before {
    content: '×';
    font-size: 30px;
}

.menu-toggle:focus {
    outline: none;
}

.menu-toggle:focus-visible {
    box-shadow: 0 0 0 3px rgba(176, 38, 255, 0.4);
    border-radius: 4px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 30%, #b026ff 70%, #ff69b4 100%);
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 80px;
}

.hero-content {
    margin-top: 60px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.butterfly {
    position: absolute;
    font-size: 2rem;
    opacity: 0.65;
    animation: float 8s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
    transition: all 0.3s ease;
}

.butterfly:hover {
    transform: scale(1.3);
    opacity: 0.9;
}

/* Left side butterflies */
.butterfly-1 {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
    font-size: 2.2rem;
}

.butterfly-2 {
    top: 35%;
    left: 12%;
    animation-delay: 1.5s;
    font-size: 1.8rem;
}

.butterfly-3 {
    top: 55%;
    left: 6%;
    animation-delay: 3s;
    font-size: 2rem;
}

.butterfly-4 {
    top: 75%;
    left: 10%;
    animation-delay: 4.5s;
    font-size: 1.9rem;
}

/* Right side butterflies */
.butterfly-5 {
    top: 20%;
    right: 10%;
    left: auto;
    animation-delay: 2s;
    font-size: 2.1rem;
}

.butterfly-6 {
    top: 45%;
    right: 8%;
    left: auto;
    animation-delay: 3.5s;
    font-size: 1.85rem;
}

.butterfly-7 {
    top: 65%;
    right: 13%;
    left: auto;
    animation-delay: 5s;
    font-size: 2rem;
}

.butterfly-8 {
    top: 85%;
    right: 9%;
    left: auto;
    animation-delay: 6s;
    font-size: 1.95rem;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    20% {
        transform: translateY(-25px) translateX(15px) rotate(8deg);
    }
    40% {
        transform: translateY(-15px) translateX(-12px) rotate(-6deg);
    }
    60% {
        transform: translateY(-35px) translateX(8px) rotate(4deg);
    }
    80% {
        transform: translateY(-20px) translateX(-15px) rotate(-7deg);
    }
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 10;
    max-width: 800px;
    padding: 2rem;
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.neon-text-full {
    font-family: 'Poppins', sans-serif;
    font-size: 5.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 
        0 0 10px #fff,
        0 0 20px #fff,
        0 0 30px #ff1aff,
        0 0 40px #ff1aff,
        0 0 70px #ff1aff;
    letter-spacing: -1px;
    text-transform: lowercase;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-primary, .btn-secondary {
    padding: 12px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #b026ff 0%, #ff69b4 100%);
    color: white;
    box-shadow: 0 4px 16px rgba(176, 38, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(176, 38, 255, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
    backdrop-filter: blur(10px);
}

.btn-secondary::before {
    background: linear-gradient(90deg, transparent, rgba(176, 38, 255, 0.2), transparent);
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-purple);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.4);
}

.btn-lg {
    font-size: 1.1rem;
    padding: 1.2rem 3rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.social-links {
    display: flex;
    justify-content: center;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}


/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-purple-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-purple-pink);
    border-radius: 2px;
}

.section-header {
    position: relative;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
}

/* Services Section */
.services {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(176, 38, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    border: 2px solid transparent;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 60px rgba(176, 38, 255, 0.35);
    border-color: var(--primary-purple);
}

.service-card:active {
    transform: translateY(-5px) scale(1.01);
}

.service-card.featured {
    background: var(--gradient-bg);
    color: white;
}

.service-card.featured h3,
.service-card.featured p {
    color: white;
}

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--primary-pink);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: var(--shadow-pink);
    animation: badgePulse 2s ease-in-out infinite;
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(10deg);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.8;
}

.service-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.95rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(176, 38, 255, 0.2);
}

.service-card.featured .service-details {
    border-top-color: rgba(255, 255, 255, 0.3);
}

.duration, .price {
    font-weight: 500;
}

/* Gallery Section */
.gallery {
    background: linear-gradient(to bottom, white, #f8f5ff);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1/1;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.gallery-item:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 25px 60px rgba(176, 38, 255, 0.5);
    z-index: 10;
}

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

.gallery-item:active {
    transform: scale(0.98);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #b026ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    font-size: 1.2rem;
}

.neon-sign {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 
        0 0 10px #fff,
        0 0 20px #fff,
        0 0 30px #ff1aff,
        0 0 40px #ff1aff;
    animation: neonFlickerSlow 4s ease-in-out infinite;
}

@keyframes neonFlickerSlow {
    0%, 100% {
        text-shadow: 
            0 0 10px #fff,
            0 0 20px #fff,
            0 0 30px #ff1aff,
            0 0 40px #ff1aff;
    }
    50% {
        text-shadow: 
            0 0 15px #fff,
            0 0 25px #fff,
            0 0 40px #ff1aff,
            0 0 50px #ff1aff;
    }
}

.gallery-butterflies {
    display: flex;
    gap: 1rem;
    font-size: 2rem;
    margin-top: 2rem;
    animation: float 3s ease-in-out infinite;
}

.gallery-placeholder.tools {
    background: linear-gradient(135deg, #b026ff 0%, #764ba2 100%);
}

.tool-visual {
    display: flex;
    gap: 2rem;
}

.lash-tool {
    width: 4px;
    height: 120px;
    background: linear-gradient(to bottom, #fff 0%, #ff69b4 100%);
    border-radius: 2px;
    position: relative;
}

.lash-tool::before {
    content: '';
    position: absolute;
    top: 0;
    left: -3px;
    width: 10px;
    height: 30px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 5px;
}

.gallery-placeholder.room {
    background: linear-gradient(135deg, #ff69b4 0%, #b026ff 100%);
}

.treatment-bed {
    width: 150px;
    height: 80px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    margin-bottom: 1rem;
}

.sparkles {
    font-size: 1.5rem;
    letter-spacing: 0.5rem;
}

.gallery-placeholder.decor {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.decor-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 3rem;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(176, 38, 255, 0.95), transparent);
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.gallery-overlay p {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.gallery-cta {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(176, 38, 255, 0.1);
}

.gallery-cta p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

/* About Section */
.about {
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--gradient-bg);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-purple);
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.lash-icon {
    font-size: 8rem;
    filter: drop-shadow(0 10px 30px rgba(176, 38, 255, 0.5));
    animation: float 3s ease-in-out infinite;
}

.about-text h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: #f8f5ff;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature:hover {
    background: linear-gradient(135deg, #f8f5ff 0%, #f0e6ff 100%);
    transform: translateX(5px);
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: var(--gradient-purple-pink);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

/* Contact Section */
.contact {
    background: linear-gradient(to bottom, white, #f8f5ff);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(176, 38, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px) scale(1.02);
    box-shadow: 0 8px 35px rgba(176, 38, 255, 0.25);
}

.contact-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: var(--gradient-bg);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 30px;
    height: 30px;
    fill: white;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-item p {
    color: #666;
    line-height: 1.6;
}

.contact-item a {
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(176, 38, 255, 0.15);
}

.contact-form-wrapper h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem 1.5rem;
    border: 2px solid #e6e6e6;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(176, 38, 255, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-note {
    text-align: center;
    color: #888;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2d1b4e 0%, #4a0e78 100%);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    opacity: 0.8;
}

.footer-links h4,
.footer-social h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 10px;
}

.social-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* Mobile Styles */
@media (max-width: 968px) {
    .nav-content {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        padding-top: 0.875rem;
        padding-bottom: 0.875rem;
    }

    .logo {
        flex: 1;
        order: 1;
    }

    .menu-toggle {
        display: block;
        order: 2;
    }

    /* Hidden until burger — full-width dropdown under header row */
    .nav-menu {
        display: none;
        order: 3;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        list-style: none;
        padding: 0;
        margin: 0;
        background: #ffffff;
        border-top: 1px solid rgba(176, 38, 255, 0.12);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    }

    .nav-menu.active {
        display: flex;
        animation: mobileMenuDrop 0.2s ease-out;
    }

    @keyframes mobileMenuDrop {
        from {
            opacity: 0;
            transform: translateY(-8px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-menu li {
        margin: 0;
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 16px 0;
        text-decoration: none;
        color: var(--text-dark);
        border-bottom: 1px solid #f0f0f0;
        font-weight: 600;
        font-size: 1.05rem;
        text-align: center;
    }

    .nav-link:hover {
        background-color: #faf5ff;
        color: var(--primary-purple);
    }

    .nav-link::after {
        display: none;
    }

    .nav-menu .language-switcher {
        margin: 20px auto 8px;
        justify-content: center;
    }

    .hero {
        min-height: 100svh;
        padding-top: 70px;
    }

    .neon-text-full {
        font-size: 3rem;
    }

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

    .section-title {
        font-size: 2rem;
    }

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

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem;
    }

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

    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }

    .image-placeholder {
        aspect-ratio: 1/1;
    }

    .contact-item {
        padding: 1.2rem;
    }

    section {
        padding: 60px 0;
    }

    .butterfly {
        font-size: 1.5rem;
    }

    .lash-icon {
        font-size: 5rem;
    }
}

@media (max-width: 640px) {
    .logo {
        font-size: 1.3rem;
    }

    .neon-text-full {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .btn-primary, .btn-secondary, .btn-lg {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

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

    section {
        padding: 50px 0;
    }

    .butterfly {
        font-size: 1.3rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .service-card p {
        font-size: 0.95rem;
    }

    .gallery-grid {
        gap: 1rem;
    }

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-links ul {
        align-items: center;
    }

    .lash-icon {
        font-size: 4rem;
    }

    .hero-content {
        padding: 1rem;
    }

    .social-link {
        font-size: 1rem;
        padding: 0.7rem 1.2rem;
    }
}

/* Scroll Reveal Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Scroll reveal animations - simple and performant */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Pulse animation for CTA buttons */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(255, 26, 255, 0.4);
    }
    50% {
        box-shadow: 0 5px 30px rgba(255, 26, 255, 0.7);
    }
}

/* Removed pulse animation for performance */

/* Ripple effect for interactions */
.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    width: 100px;
    height: 100px;
    margin-top: -50px;
    margin-left: -50px;
    animation: ripple 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple {
    from {
        transform: scale(0);
        opacity: 1;
    }
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Expanded card state */
.service-card.expanded {
    grid-column: span 2;
}

@media (max-width: 968px) {
    .service-card.expanded {
        grid-column: span 1;
    }
}

