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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background: linear-gradient(135deg, #F0C2D6 0%, #F5C2D1 50%, #E8B4C7 100%);
    overflow-x: hidden;
    position: relative;
}

/* Global Sparkles Background */
.global-sparkles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.bg-sparkle {
    position: absolute;
    font-size: 12px;
    opacity: 0.4;
    animation: globalSparkle 8s ease-in-out infinite;
    filter: drop-shadow(0 0 6px rgba(232, 220, 224, 0.3));
}

.bg-sparkle:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.bg-sparkle:nth-child(2) {
    top: 30%;
    right: 15%;
    animation-delay: -2s;
}

.bg-sparkle:nth-child(3) {
    top: 60%;
    left: 20%;
    animation-delay: -4s;
}

.bg-sparkle:nth-child(4) {
    top: 80%;
    right: 25%;
    animation-delay: -6s;
}

.bg-sparkle:nth-child(5) {
    top: 45%;
    left: 60%;
    animation-delay: -1s;
}

.bg-sparkle:nth-child(6) {
    top: 25%;
    right: 45%;
    animation-delay: -3s;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
    font-weight: 600;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(245, 240, 243, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(245, 240, 243, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-image {
    width: 55px;
    height: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(232, 180, 199, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    object-fit: cover;
}

.logo-image:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(232, 180, 199, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    background: linear-gradient(135deg, #E8B4C7 0%, #F0C2D6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-left: 0.5rem;
}

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

.nav-link {
    text-decoration: none;
    color: #2d3748;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 14px 24px;
    border-radius: 30px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(248, 245, 250, 0.9) 40%,
        rgba(245, 240, 248, 0.95) 100%
    );
    backdrop-filter: blur(25px);
    border: 2px solid rgba(255, 255, 255, 0.6);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.05);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(248, 232, 255, 0.6), 
        transparent
    );
    transition: left 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-link::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(248, 232, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.nav-link:hover {
    color: #2d3748;
    transform: translateY(-5px) scale(1.08);
    background: linear-gradient(135deg, 
        rgba(248, 232, 255, 0.98) 0%, 
        rgba(245, 228, 248, 0.95) 40%,
        rgba(242, 225, 245, 0.98) 100%
    );
    border: 2px solid rgba(240, 220, 248, 0.8);
    box-shadow: 
        0 20px 50px rgba(132, 60, 180, 0.15),
        0 8px 25px rgba(248, 232, 255, 0.3),
        0 0 40px rgba(248, 232, 255, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 1),
        inset 0 -2px 0 rgba(240, 220, 248, 0.3);
    animation: navButtonGlow 2.5s ease-in-out infinite;
}

@keyframes navButtonGlow {
    0%, 100% { 
        box-shadow: 
            0 20px 50px rgba(132, 60, 180, 0.15),
            0 8px 25px rgba(248, 232, 255, 0.3),
            0 0 40px rgba(248, 232, 255, 0.4),
            inset 0 2px 0 rgba(255, 255, 255, 1);
    }
    50% { 
        box-shadow: 
            0 25px 60px rgba(132, 60, 180, 0.2),
            0 12px 35px rgba(248, 232, 255, 0.4),
            0 0 55px rgba(248, 232, 255, 0.6),
            inset 0 2px 0 rgba(255, 255, 255, 1);
    }
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover::after {
    width: 120px;
    height: 120px;
}

.nav-link:active {
    transform: translateY(-3px) scale(1.05);
    transition: all 0.1s ease;
}

.book-btn {
    background: linear-gradient(135deg, #F0B7C7, #E8B4C7);
    color: white !important;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(232, 220, 224, 0.3);
    transform: scale(1);
    transition: all 0.3s ease;
}

.book-btn:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 220, 224, 0.4);
}

.book-btn::after {
    display: none;
}

.phone-btn {
    background: transparent !important;
    color: #F0B7C7 !important;
    padding: 8px 16px;
    border: 1px solid #F0B7C7;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.phone-btn:hover {
    background: #F0B7C7 !important;
    color: white !important;
    transform: scale(1.05) translateY(-2px);
}

.phone-btn::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #F0B7C7;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #fff 0%, #F0C2D6 50%, #ffe8f0 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.hero-subtitle {
    display: block;
    font-size: 1.2rem;
    color: #F0B7C7;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-main {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c2c2c;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #F0B7C7, #E8B4C7);
    color: white;
    box-shadow: 0 4px 15px rgba(232, 220, 224, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(232, 220, 224, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #F0B7C7;
    border: 2px solid #F0B7C7;
}

.btn-secondary:hover {
    background: #F0B7C7;
    color: white;
    transform: translateY(-3px);
}

.btn-instagram {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    color: white;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(131, 58, 180, 0.3);
    transition: all 0.4s ease;
}

.btn-instagram::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.5s ease;
}

.btn-instagram:hover {
    background: linear-gradient(135deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d, #f56040, #f77737, #fcaf45, #ffdc80);
    background-size: 200% 200%;
    animation: instagramGradient 2s ease-in-out infinite;
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 12px 35px rgba(131, 58, 180, 0.5);
    color: white;
    text-decoration: none;
}

@keyframes instagramGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image-container {
    width: 400px;
    height: 500px;
    position: relative;
    overflow: visible;
    animation: float 3s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-main-image {
    width: 350px;
    height: 450px;
    object-fit: cover;
    object-position: center top;
    border-radius: 30px;
    box-shadow: 
        0 20px 40px rgba(232, 220, 224, 0.3),
        0 0 60px rgba(232, 220, 224, 0.1);
    position: relative;
    z-index: 2;
    border: 3px solid rgba(255, 255, 255, 0.4);
    filter: brightness(1.05) contrast(1.1);
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, #fff, #F5C2D1);
    animation: float 4s ease-in-out infinite;
}

.floating-1 {
    width: 80px;
    height: 80px;
    top: -40px;
    right: -40px;
    animation-delay: -1s;
}

.floating-2 {
    width: 60px;
    height: 60px;
    bottom: -30px;
    left: -30px;
    animation-delay: -2s;
}

.floating-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    right: -50px;
    animation-delay: -0.5s;
}

/* Fairy Elements */
.fairy-container {
    position: absolute;
    width: 120px;
    height: 150px;
    top: 20px;
    right: -40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.fairy-silhouette {
    width: 80px;
    height: 120px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(245, 240, 243, 0.8));
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    position: relative;
    animation: fairyFloat 4s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

.fairy-silhouette::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.9), rgba(245, 240, 243, 0.7));
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

.fairy-wings {
    position: absolute;
    top: 20%;
    left: -10%;
    width: 140%;
    height: 80px;
    opacity: 0.7;
    animation: wingsFlutter 2s ease-in-out infinite;
}

.fairy-wings::before,
.fairy-wings::after {
    content: '';
    position: absolute;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.8), rgba(245, 240, 243, 0.6), rgba(232, 220, 224, 0.4));
    border-radius: 50% 10% 50% 10%;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

.fairy-wings::before {
    width: 60px;
    height: 80px;
    left: 0;
    animation: leftWing 2s ease-in-out infinite;
}

.fairy-wings::after {
    width: 60px;
    height: 80px;
    right: 0;
    animation: rightWing 2s ease-in-out infinite;
}

.fairy-wand {
    position: absolute;
    top: 25%;
    right: -20px;
    width: 4px;
    height: 60px;
    background: linear-gradient(to bottom, #F5C2D1, #F0B7C7);
    border-radius: 2px;
    animation: wandWave 3s ease-in-out infinite;
    z-index: 3;
}

.fairy-wand::before {
    content: '⭐';
    position: absolute;
    top: -10px;
    left: -8px;
    font-size: 20px;
    animation: starTwinkle 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(248, 232, 255, 0.8));
}

.sparkles-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: visible;
}

.sparkle {
    position: absolute;
    font-size: 16px;
    animation: sparkleFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
}

.sparkle-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 2.5s;
}

.sparkle-2 {
    top: 20%;
    right: 15%;
    animation-delay: -0.5s;
    animation-duration: 3s;
}

.sparkle-3 {
    top: 40%;
    left: 5%;
    animation-delay: -1s;
    animation-duration: 2.8s;
}

.sparkle-4 {
    top: 60%;
    right: 10%;
    animation-delay: -1.5s;
    animation-duration: 3.2s;
}

.sparkle-5 {
    top: 80%;
    left: 20%;
    animation-delay: -2s;
    animation-duration: 2.7s;
}

.sparkle-6 {
    top: 30%;
    right: 30%;
    animation-delay: -0.8s;
    animation-duration: 3.1s;
}

.sparkle-7 {
    top: 70%;
    right: 25%;
    animation-delay: -1.3s;
    animation-duration: 2.9s;
}

.sparkle-8 {
    top: 50%;
    left: 15%;
    animation-delay: -1.8s;
    animation-duration: 3.3s;
}

.magic-dust {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, transparent 40%, rgba(232, 220, 224, 0.1) 60%);
    border-radius: 50%;
    animation: magicPulse 4s ease-in-out infinite;
    z-index: 1;
}

.magic-dust::before,
.magic-dust::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    animation: magicRipple 3s ease-out infinite;
}

.magic-dust::before {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 20%, transparent 70%);
    animation-delay: -1s;
}

.magic-dust::after {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(245, 240, 243, 0.4) 30%, transparent 70%);
    animation-delay: -2s;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    cursor: pointer;
    animation: bounce 2s infinite;
}

.scroll-indicator {
    color: #666;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-bottom: 2px solid #F0B7C7;
    border-right: 2px solid #F0B7C7;
    transform: rotate(45deg);
    animation: arrowBounce 1.5s infinite;
}

/* Section Styles */
.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, #F0B7C7, #F5C2D1);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    color: #2c2c2c;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

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

/* Personal Introduction */
.personal-intro {
    padding: 6rem 0;
    background: linear-gradient(135deg, #fff 0%, #F0C2D6 100%);
}

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

.intro-text .section-tag {
    margin-bottom: 1rem;
}

.intro-text .section-title {
    text-align: left;
    margin-bottom: 2rem;
    font-size: 2.2rem;
}

.intro-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.intro-highlights {
    margin: 2.5rem 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(232, 220, 224, 0.05);
    border-radius: 15px;
    border-left: 4px solid #F0B7C7;
}

.highlight-icon {
    font-size: 1.5rem;
}

.highlight-item h4 {
    color: #2c2c2c;
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
}

.highlight-item p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.intro-cta {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.intro-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.intro-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(232, 220, 224, 0.1);
    border: 1px solid rgba(245, 240, 243, 0.2);
    transition: all 0.3s ease;
    min-width: 180px;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(232, 220, 224, 0.15);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #F0B7C7;
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: white;
}

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

.about-text .section-tag {
    margin-bottom: 1rem;
}

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

.about-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

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

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #F0B7C7;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

.about-visual {
    display: flex;
    justify-content: center;
}

.about-image-container {
    position: relative;
}

.about-image {
    width: 350px;
    height: 450px;
    background: linear-gradient(135deg, #F5C2D1, #F0B7C7);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(232, 220, 224, 0.2);
}

.about-image-real {
    width: 350px;
    height: 450px;
    border-radius: 20px;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 20px 40px rgba(232, 220, 224, 0.2);
}

.about-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #fff, #F5C2D1);
    border-radius: 50%;
    z-index: -1;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: linear-gradient(135deg, #F0C2D6 0%, #fff 50%, #F0C2D6 100%);
}

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

.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(245, 240, 243, 0.2);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(232, 220, 224, 0.15);
    border-color: rgba(232, 220, 224, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #F0B7C7, #F5C2D1);
    border-radius: 50%;
    position: relative;
}

.icon-lashes, .icon-brows, .icon-facials {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
}

.service-title {
    font-size: 1.5rem;
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.service-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.service-features span {
    background: rgba(232, 220, 224, 0.1);
    color: #F0B7C7;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.service-btn {
    background: transparent;
    color: #F0B7C7;
    border: 2px solid #F0B7C7;
    padding: 12px 24px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.service-btn:hover {
    background: #F0B7C7;
    color: white;
    transform: scale(1.05);
}

/* Products Section */
.products {
    padding: 6rem 0;
    background: linear-gradient(135deg, #fff 0%, #F0C2D6 50%, #fff 100%);
}

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

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(232, 220, 224, 0.1);
    border: 1px solid rgba(245, 240, 243, 0.2);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(232, 220, 224, 0.2);
    border-color: rgba(232, 220, 224, 0.3);
}

.featured-product {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(232, 220, 224, 0.05), white);
    border: 2px solid #F0B7C7;
}

.product-image {
    height: 250px;
    background: linear-gradient(135deg, #F5C2D1 0%, #F0B7C7 50%, #F5C2D1 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #F0B7C7, #E8B4C7);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-badge.special {
    background: linear-gradient(135deg, #F5C2D1, #F0B7C7);
    animation: badgePulse 2s ease-in-out infinite;
}

.product-visual {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(232, 220, 224, 0.3);
    animation: productFloat 3s ease-in-out infinite;
}

.product-visual::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F0B7C7, #F5C2D1);
}

.lash-clusters::before {
    background: linear-gradient(135deg, #000, #333);
    border-radius: 10px 50% 10px 50%;
    width: 50px;
    height: 70px;
}

.brow-serum::before {
    background: linear-gradient(135deg, #8b4513, #d4af37);
    border-radius: 40% 40% 60% 60%;
    width: 40px;
    height: 80px;
}

.lash-serum::before {
    background: linear-gradient(135deg, #F0B7C7, #E8B4C7);
    border-radius: 40% 40% 60% 60%;
    width: 35px;
    height: 75px;
}

.bullies::before {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    border-radius: 50% 10%;
    width: 60px;
    height: 15px;
    transform: rotate(45deg);
}

.cleanser::before {
    background: linear-gradient(135deg, #87ceeb, #4169e1);
    border-radius: 20%;
    width: 50px;
    height: 70px;
}

.complete-kit::before {
    background: linear-gradient(135deg, #F5C2D1, #F0B7C7, #F5C2D1);
    width: 80px;
    height: 80px;
    animation: kitGlow 2s ease-in-out infinite;
}

.product-sparkles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.product-sparkle {
    position: absolute;
    font-size: 14px;
    animation: productSparkle 3s ease-in-out infinite;
    opacity: 0.8;
}

.product-sparkle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.product-sparkle:nth-child(2) {
    top: 30%;
    right: 25%;
    animation-delay: -1s;
}

.product-sparkle:nth-child(3) {
    bottom: 25%;
    left: 30%;
    animation-delay: -2s;
}

.product-sparkle:nth-child(4) {
    bottom: 20%;
    right: 20%;
    animation-delay: -1.5s;
}

.product-info {
    padding: 2rem;
}

.product-title {
    font-size: 1.4rem;
    color: #2c2c2c;
    margin-bottom: 1rem;
    font-weight: 600;
}

.product-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.product-features span {
    color: #F0B7C7;
    font-size: 0.85rem;
    font-weight: 500;
}

.product-pricing {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.product-price {
    font-size: 2rem;
    font-weight: 700;
    color: #F0B7C7;
    font-family: 'Playfair Display', serif;
}

.product-original {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
    font-weight: 500;
}

.product-price-note {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
}

.product-btn {
    width: 100%;
    background: transparent;
    color: #F0B7C7;
    border: 2px solid #F0B7C7;
    padding: 16px 24px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
}

.product-btn:hover {
    background: #F0B7C7;
    color: white;
    transform: scale(1.02);
}

.bundle-btn {
    background: linear-gradient(135deg, #F0B7C7, #E8B4C7);
    color: white;
    border: none;
}

.bundle-btn:hover {
    background: linear-gradient(135deg, #E8B4C7, #F0B7C7);
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(232, 220, 224, 0.4);
}

.products-cta {
    text-align: center;
    background: linear-gradient(135deg, rgba(232, 220, 224, 0.1), rgba(245, 240, 243, 0.1));
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(232, 220, 224, 0.2);
}

.cta-content h3 {
    color: #2c2c2c;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.cta-content p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Gallery Section */
.gallery {
    padding: 6rem 0;
    background: white;
}

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

.gallery-item {
    position: relative;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #F0C2D6, #fff);
}

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

.gallery-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #F5C2D1, #F0B7C7);
    transition: all 0.3s ease;
}

.gallery-image-real {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #F0C2D6, #fff);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

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

.gallery-category {
    font-size: 0.85rem;
    color: #F5C2D1;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: block;
}

.gallery-overlay h4 {
    font-size: 1.2rem;
    margin: 0;
}

.gallery-cta {
    text-align: center;
    padding: 3rem 0;
}

.gallery-cta p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: linear-gradient(135deg, #F0C2D6 0%, #fff 100%);
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    height: 300px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s ease;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
}

.testimonial-content {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(232, 220, 224, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stars {
    color: #F0B7C7;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    text-align: center;
}

.author-name {
    display: block;
    font-weight: 600;
    color: #2c2c2c;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.author-service {
    display: block;
    color: #F0B7C7;
    font-size: 0.9rem;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(232, 220, 224, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: #F0B7C7;
    transform: scale(1.2);
}

/* Booking Section */
.booking-simple {
    padding: 6rem 0;
    background: linear-gradient(135deg, #F5C2D1 0%, #F0C2D6 50%, #E8B4C7 100%);
    color: #2d3748;
    text-align: center;
    position: relative;
}

.booking-logo {
    position: absolute;
    top: 2rem;
    left: 2rem;
    z-index: 10;
}

.booking-logo .logo-image {
    width: 70px;
    height: 42px;
    box-shadow: 0 12px 35px rgba(232, 180, 199, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
}

.call-to-action {
    max-width: 800px;
    margin: 0 auto;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.cta-btn {
    padding: 18px 40px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.4s ease;
    font-size: 1.1rem;
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
}

.benefit-icon {
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .cta-benefits {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .booking-logo {
        top: 1rem;
        left: 1rem;
    }
    
    .booking-logo .logo-image {
        width: 60px;
        height: 36px;
    }
}

/* Expandable Service Details */
.service-details {
    max-height: 0;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-top: 0;
    opacity: 0;
}

.service-details.expanded {
    max-height: 1000px;
    margin-top: 2rem;
    opacity: 1;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(245, 194, 209, 0.1) 50%,
        rgba(240, 194, 214, 0.1) 100%
    );
    border-radius: 20px;
    border: 1px solid rgba(245, 194, 209, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 30px rgba(245, 194, 209, 0.15);
}

.pricing-item {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(255, 255, 255, 0.8) 100%
    );
    padding: 1.8rem;
    border-radius: 18px;
    border: 1px solid rgba(245, 194, 209, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(5px);
}

.pricing-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 15px 40px rgba(245, 194, 209, 0.3),
        0 5px 15px rgba(245, 194, 209, 0.2);
    border-color: rgba(245, 194, 209, 0.4);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(248, 240, 245, 0.9) 100%
    );
}

.pricing-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
}

.pricing-item p {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

.expand-icon {
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.expand-btn.expanded .expand-icon {
    transform: rotate(180deg);
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(245, 194, 209, 0.1) 100%
    );
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.9) 0%, 
        rgba(245, 194, 209, 0.05) 100%
    );
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(245, 194, 209, 0.2);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(245, 194, 209, 0.2);
    border-color: rgba(245, 194, 209, 0.3);
}

.faq-question {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.faq-answer {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
    
    .faq-question {
        font-size: 1.2rem;
    }
}

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

.booking-text .section-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.booking-text .section-title {
    color: white;
    margin-bottom: 1.5rem;
}

.booking-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.booking-benefits {
    margin-bottom: 2.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.benefit-icon {
    font-size: 1.2rem;
    width: 30px;
}

.booking-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.booking-btn.btn-primary {
    background: white;
    color: #F0B7C7;
}

.booking-btn.btn-primary:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px);
}

.booking-btn.btn-secondary {
    border-color: white;
    color: white;
}

.booking-btn.btn-secondary:hover {
    background: white;
    color: #F0B7C7;
}

.booking-visual {
    display: flex;
    justify-content: center;
}

.booking-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    max-width: 400px;
}

.booking-card h3 {
    color: white;
    margin-bottom: 2rem;
    text-align: center;
}

.booking-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.booking-option {
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.95) 0%,
        rgba(248, 232, 255, 0.05) 30%,
        rgba(232, 220, 224, 0.05) 70%,
        rgba(255, 255, 255, 0.95) 100%
    );
    padding: 3rem 2rem;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
    border: 3px solid transparent;
    background-clip: padding-box;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.1),
        0 10px 30px rgba(245, 240, 243, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        inset 0 -1px 0 rgba(248, 232, 255, 0.1);
}

.booking-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(248, 232, 255, 0.3), 
        transparent
    );
    transition: left 0.8s ease;
    z-index: 1;
}

.booking-option:hover {
    background: linear-gradient(145deg, 
        rgba(248, 232, 255, 0.15) 0%,
        rgba(232, 220, 224, 0.1) 50%,
        rgba(245, 240, 243, 0.15) 100%
    );
    transform: translateY(-10px) scale(1.03);
    border: 3px solid;
    border-image: linear-gradient(45deg, #F5C2D1, #F0B7C7, #E8B4C7, #F5C2D1) 1;
    box-shadow: 
        0 35px 100px rgba(0, 0, 0, 0.2),
        0 0 60px rgba(248, 232, 255, 0.4),
        0 0 30px rgba(232, 220, 224, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        inset 0 -1px 0 rgba(248, 232, 255, 0.3);
}

.booking-option:hover::before {
    left: 100%;
}

.option-icon {
    font-size: 4.5rem;
    background: linear-gradient(135deg, #F5C2D1, #F0B7C7, #E8B4C7);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: iconBounce 2s ease-in-out infinite;
    filter: drop-shadow(0 0 25px rgba(248, 232, 255, 0.4));
    position: relative;
    z-index: 2;
    margin-bottom: 1rem;
}

@keyframes iconGlow {
    0%, 100% { 
        background-position: 0% 50%;
        filter: drop-shadow(0 0 25px rgba(248, 232, 255, 0.4));
    }
    50% { 
        background-position: 100% 50%;
        filter: drop-shadow(0 0 35px rgba(232, 220, 224, 0.6));
    }
}

.option-text {
    position: relative;
    z-index: 2;
}

.option-text h4 {
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #E8B4C7, #F0B7C7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(245, 240, 243, 0.2);
}

.option-text p {
    color: #555;
    font-size: 1.1rem;
    margin: 0 0 1rem 0;
    font-weight: 500;
    line-height: 1.5;
}

.service-subcategories {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid;
    border-image: linear-gradient(90deg, transparent, #F5C2D1, transparent) 1;
    width: 100%;
}

.sub-service {
    margin-bottom: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, 
        rgba(248, 232, 255, 0.1) 0%,
        rgba(232, 220, 224, 0.05) 50%,
        rgba(245, 240, 243, 0.1) 100%
    );
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(248, 232, 255, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.sub-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(248, 232, 255, 0.2), 
        transparent
    );
    transition: left 0.5s ease;
}

.sub-service:hover {
    transform: translateY(-2px);
    border-color: #F5C2D1;
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.15),
        0 0 25px rgba(248, 232, 255, 0.3);
}

.sub-service:hover::before {
    left: 100%;
}

.sub-service strong {
    display: block;
    font-size: 1.2rem;
    color: #E8B4C7;
    margin-bottom: 8px;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(245, 240, 243, 0.2);
}

.sub-service span {
    font-size: 1rem;
    color: #666;
    display: block;
    line-height: 1.5;
    font-weight: 400;
}

.booking-option.selected {
    background: linear-gradient(145deg, 
        rgba(248, 232, 255, 0.2) 0%,
        rgba(232, 220, 224, 0.15) 50%,
        rgba(245, 240, 243, 0.2) 100%
    ) !important;
    transform: translateY(-12px) scale(1.05) !important;
    border: 3px solid;
    border-image: linear-gradient(45deg, #F5C2D1, #F0B7C7, #E8B4C7, #F5C2D1) 1;
    box-shadow: 
        0 40px 120px rgba(0, 0, 0, 0.25),
        0 0 80px rgba(248, 232, 255, 0.5),
        0 0 40px rgba(232, 220, 224, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 1),
        inset 0 -2px 0 rgba(248, 232, 255, 0.4) !important;
    animation: selectedPulse 2s ease-in-out infinite;
}

@keyframes selectedPulse {
    0%, 100% { 
        box-shadow: 
            0 40px 120px rgba(0, 0, 0, 0.25),
            0 0 80px rgba(248, 232, 255, 0.5),
            0 0 40px rgba(232, 220, 224, 0.4),
            inset 0 2px 0 rgba(255, 255, 255, 1),
            inset 0 -2px 0 rgba(248, 232, 255, 0.4);
    }
    50% { 
        box-shadow: 
            0 40px 120px rgba(0, 0, 0, 0.25),
            0 0 100px rgba(248, 232, 255, 0.7),
            0 0 60px rgba(232, 220, 224, 0.6),
            inset 0 2px 0 rgba(255, 255, 255, 1),
            inset 0 -2px 0 rgba(248, 232, 255, 0.6);
    }
}

.booking-option.selected .option-icon {
    animation: selectedIconSpin 1s ease-out;
}

@keyframes selectedIconSpin {
    0% { transform: scale(1); }
    50% { transform: scale(1.2) rotate(10deg); }
    100% { transform: scale(1) rotate(0deg); }
}

.booking-option.selected .service-subcategories {
    border-image: linear-gradient(90deg, transparent, #F5C2D1, transparent) 1;
}

.booking-option.selected .sub-service {
    background: linear-gradient(135deg, 
        rgba(248, 232, 255, 0.2) 0%,
        rgba(232, 220, 224, 0.1) 50%,
        rgba(245, 240, 243, 0.2) 100%
    );
    border-color: #F5C2D1;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: white;
}

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

.contact-info .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.contact-description {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(232, 220, 224, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(232, 220, 224, 0.1);
    transform: translateX(5px);
}

.contact-icon {
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
}

.contact-details h4 {
    color: #2c2c2c;
    margin-bottom: 0.2rem;
    font-size: 1rem;
}

.contact-details a, .contact-details span {
    color: #F0B7C7;
    text-decoration: none;
    font-weight: 500;
}

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

.contact-visual {
    display: flex;
    justify-content: center;
}

.contact-image {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #F5C2D1, #F0B7C7);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(232, 220, 224, 0.2);
}

.contact-image-real {
    width: 400px;
    height: 400px;
    border-radius: 20px;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 20px 40px rgba(232, 220, 224, 0.2);
}

/* Footer */
.footer {
    background: #2c2c2c;
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

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

.footer-brand p {
    color: #999;
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section a {
    display: block;
    color: #999;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #F0B7C7;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 1.5rem;
    text-align: center;
    color: #999;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

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

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

@keyframes arrowBounce {
    0%, 100% {
        transform: rotate(45deg) translateY(0);
    }
    50% {
        transform: rotate(45deg) translateY(-3px);
    }
}

/* Fairy Animations */
@keyframes fairyFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-8px) rotate(1deg);
    }
    50% {
        transform: translateY(-5px) rotate(0deg);
    }
    75% {
        transform: translateY(-12px) rotate(-1deg);
    }
}

@keyframes wingsFlutter {
    0%, 100% {
        transform: scaleY(1);
    }
    50% {
        transform: scaleY(0.8);
    }
}

@keyframes leftWing {
    0%, 100% {
        transform: rotate(-5deg) scaleX(1);
    }
    50% {
        transform: rotate(-15deg) scaleX(0.9);
    }
}

@keyframes rightWing {
    0%, 100% {
        transform: rotate(5deg) scaleX(1);
    }
    50% {
        transform: rotate(15deg) scaleX(0.9);
    }
}

@keyframes wandWave {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(15deg);
    }
    50% {
        transform: rotate(-5deg);
    }
    75% {
        transform: rotate(10deg);
    }
}

@keyframes starTwinkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

@keyframes sparkleFloat {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.5);
    }
    50% {
        opacity: 1;
        transform: translateY(-10px) scale(1.2);
    }
    100% {
        opacity: 0;
        transform: translateY(-40px) scale(0.8);
    }
}

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

@keyframes magicRipple {
    0% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(0.8);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(2);
    }
}

@keyframes globalSparkle {
    0%, 100% {
        opacity: 0.2;
        transform: translateY(0px) scale(1);
    }
    25% {
        opacity: 0.6;
        transform: translateY(-20px) scale(1.2);
    }
    50% {
        opacity: 0.4;
        transform: translateY(-10px) scale(0.8);
    }
    75% {
        opacity: 0.8;
        transform: translateY(-30px) scale(1.1);
    }
}

/* Product Animations */
@keyframes productFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-8px) rotate(2deg);
    }
}

@keyframes productSparkle {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.2) rotate(180deg);
    }
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(248, 232, 255, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(248, 232, 255, 0.6);
    }
}

@keyframes kitGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(248, 232, 255, 0.5);
    }
    50% {
        box-shadow: 0 0 30px rgba(232, 220, 224, 0.7);
    }
}

/* Luxury Loading Screen */
.luxury-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #F0B7C7 0%, #F5C2D1 25%, #F0C2D6 50%, #F5C2D1 75%, #F0B7C7 100%);
    background-size: 400% 400%;
    animation: luxuryGradient 3s ease infinite;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: all 0.5s ease;
}

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

.loader-background {
    text-align: center;
    position: relative;
    width: 100%;
    max-width: 400px;
    padding: 2rem;
}

.loader-fairy {
    width: 120px;
    height: 120px;
    margin: 0 auto 3rem;
    position: relative;
    animation: fairyFly 4s ease-in-out infinite;
}

.fairy-body {
    width: 60px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(245, 240, 243, 0.8));
    border-radius: 50% 50% 60% 40%;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
    animation: fairyGlow 2s ease-in-out infinite;
}

.fairy-head {
    width: 25px;
    height: 25px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.9), rgba(245, 240, 243, 0.7));
    border-radius: 50%;
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.9);
}

.fairy-wings-loader {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 50px;
}

.wing {
    position: absolute;
    width: 35px;
    height: 45px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.9), rgba(245, 240, 243, 0.7), rgba(232, 220, 224, 0.5));
    border-radius: 70% 20% 70% 20%;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.7);
}

.wing-left {
    left: 10px;
    animation: wingFlutterLeft 1.5s ease-in-out infinite;
}

.wing-right {
    right: 10px;
    animation: wingFlutterRight 1.5s ease-in-out infinite;
}

.fairy-trail {
    position: absolute;
    top: 50%;
    left: 100%;
    width: 100px;
    height: 20px;
}

.trail-sparkle {
    position: absolute;
    font-size: 12px;
    animation: trailSparkle 2s ease-in-out infinite;
    opacity: 0.8;
}

.trail-sparkle:nth-child(1) {
    left: 10px;
    animation-delay: 0s;
}

.trail-sparkle:nth-child(2) {
    left: 30px;
    animation-delay: -0.3s;
}

.trail-sparkle:nth-child(3) {
    left: 50px;
    animation-delay: -0.6s;
}

.trail-sparkle:nth-child(4) {
    left: 70px;
    animation-delay: -0.9s;
}

.loader-progress {
    margin-bottom: 2rem;
}

.progress-text {
    margin-bottom: 1.5rem;
}

.loading-brand {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.loading-tagline {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    letter-spacing: 1px;
}

.progress-bar-container {
    width: 300px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    margin: 0 auto 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 10px rgba(232, 220, 224, 0.3);
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #fff, #F5C2D1, #F0B7C7, #fff);
    background-size: 200% 100%;
    border-radius: 20px;
    width: 0%;
    transition: width 0.1s ease;
    animation: progressShimmer 2s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

.progress-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: progressGlow 3s ease-in-out infinite;
}

.progress-percentage {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    font-family: 'Playfair Display', serif;
}

.loader-sparkles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-sparkle {
    position: absolute;
    font-size: 16px;
    animation: loaderSparkleFloat 4s ease-in-out infinite;
    opacity: 0.7;
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.floating-sparkle:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-sparkle:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: -0.5s;
}

.floating-sparkle:nth-child(3) {
    top: 60%;
    left: 5%;
    animation-delay: -1s;
}

.floating-sparkle:nth-child(4) {
    top: 70%;
    right: 10%;
    animation-delay: -1.5s;
}

.floating-sparkle:nth-child(5) {
    top: 30%;
    left: 80%;
    animation-delay: -2s;
}

.floating-sparkle:nth-child(6) {
    top: 50%;
    right: 80%;
    animation-delay: -2.5s;
}

.floating-sparkle:nth-child(7) {
    top: 80%;
    left: 70%;
    animation-delay: -3s;
}

.floating-sparkle:nth-child(8) {
    top: 40%;
    right: 60%;
    animation-delay: -3.5s;
}

/* Loading Animations */
@keyframes luxuryGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes fairyFly {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) translateX(10px) rotate(2deg);
    }
    50% {
        transform: translateY(-8px) translateX(-5px) rotate(0deg);
    }
    75% {
        transform: translateY(-20px) translateX(8px) rotate(-2deg);
    }
}

@keyframes fairyGlow {
    0%, 100% {
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 255, 255, 1), 0 0 60px rgba(245, 240, 243, 0.8);
    }
}

@keyframes wingFlutterLeft {
    0%, 100% {
        transform: rotate(-10deg) scaleY(1);
    }
    50% {
        transform: rotate(-25deg) scaleY(0.8);
    }
}

@keyframes wingFlutterRight {
    0%, 100% {
        transform: rotate(10deg) scaleY(1);
    }
    50% {
        transform: rotate(25deg) scaleY(0.8);
    }
}

@keyframes trailSparkle {
    0% {
        opacity: 0;
        transform: scale(0.5) translateY(0px);
    }
    50% {
        opacity: 1;
        transform: scale(1.2) translateY(-10px);
    }
    100% {
        opacity: 0;
        transform: scale(0.8) translateY(-20px);
    }
}

@keyframes progressShimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes progressGlow {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes loaderSparkleFloat {
    0%, 100% {
        opacity: 0.4;
        transform: translateY(0px) scale(1) rotate(0deg);
    }
    25% {
        opacity: 0.8;
        transform: translateY(-20px) scale(1.2) rotate(90deg);
    }
    50% {
        opacity: 1;
        transform: translateY(-10px) scale(0.8) rotate(180deg);
    }
    75% {
        opacity: 0.6;
        transform: translateY(-30px) scale(1.1) rotate(270deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 2rem;
        transition: all 0.3s ease;
        gap: 2rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(245, 240, 243, 0.2);
        width: 100%;
        text-align: center;
    }
    
    .book-btn {
        margin-top: 1rem;
        align-self: center;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-main {
        font-size: 2.5rem;
    }
    
    .hero-image-container {
        width: 300px;
        height: 400px;
    }
    
    .hero-main-image {
        width: 280px;
        height: 380px;
    }
    
    .intro-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .intro-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stat-card {
        min-width: 140px;
    }
    
    .about-content,
    .contact-content,
    .booking-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-product {
        grid-column: span 1;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .about-stats {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .booking-buttons {
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-logo {
        gap: 0.5rem;
    }
    
    .logo-aa {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
        border-radius: 15px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .hero-main {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-image {
        width: 250px;
        height: 350px;
    }
    
    .about-image {
        width: 250px;
        height: 350px;
    }
    
    .contact-image {
        width: 300px;
        height: 300px;
    }
    
    .btn {
        padding: 14px 28px;
        font-size: 0.9rem;
    }
    
    .service-card,
    .testimonial-content,
    .booking-card {
        padding: 2rem 1.5rem;
    }
    
    .about-stats {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

/* Booking Form Styles */
.booking-option {
    cursor: pointer;
    transition: all 0.3s ease;
}

.booking-option.selected {
    background: #F0B7C7;
    color: white;
    border-color: #F0B7C7;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(245, 240, 243, 0.25);
}

.booking-form-container {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    padding: 0 20px;
}

.booking-form-card {
    background: linear-gradient(135deg, 
        rgba(20, 20, 35, 0.95) 0%, 
        rgba(35, 25, 50, 0.97) 50%, 
        rgba(20, 20, 35, 0.95) 100%
    );
    backdrop-filter: blur(30px);
    border-radius: 30px;
    padding: 50px;
    max-width: 600px;
    width: 100%;
    border: 2px solid transparent;
    background-clip: padding-box;
    box-shadow: 
        0 30px 100px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.booking-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, 
        #E8B4C7 0%, 
        #F0B7C7 25%, 
        #F5C2D1 50%, 
        #F0B7C7 75%, 
        #E8B4C7 100%
    );
    background-size: 200% 100%;
    animation: gradientMove 3s ease-in-out infinite;
}

@keyframes gradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.booking-form-card h3 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-align: center;
    background: linear-gradient(135deg, #F5C2D1, #F0B7C7, #E8B4C7);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientText 4s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(248, 232, 255, 0.3);
    position: relative;
}

.booking-form-card h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #F5C2D1, transparent);
    border-radius: 2px;
}

@keyframes gradientText {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.booking-form-card > p {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.8;
    font-size: 1.1rem;
    font-weight: 300;
}

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

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}

.form-group.half {
    flex: 1;
}

.form-group label {
    font-weight: 600;
    color: #F5C2D1;
    font-size: 1rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(248, 232, 255, 0.3);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 20px 24px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    font-size: 1.1rem;
    font-family: inherit;
    transition: all 0.4s ease;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 100%
    );
    backdrop-filter: blur(20px);
    color: white;
    font-weight: 500;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23d4358a' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 16px center;
    background-repeat: no-repeat;
    background-size: 16px;
    cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #F5C2D1;
    box-shadow: 
        0 0 0 3px rgba(248, 232, 255, 0.3),
        0 8px 30px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.15) 0%, 
        rgba(255, 255, 255, 0.1) 100%
    );
    transform: translateY(-3px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    font-weight: 300;
}

.form-group select {
    color: white;
    cursor: pointer;
}

.form-group select option {
    color: #2d3748;
    background: white;
    padding: 10px;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
    line-height: 1.6;
}

.form-submit-btn {
    margin-top: 30px;
    align-self: center;
    min-width: 280px;
    padding: 22px 50px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    background: linear-gradient(135deg, #E8B4C7 0%, #F0B7C7 50%, #F5C2D1 100%);
    background-size: 200% 100%;
    border: 2px solid transparent;
    color: white;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: buttonGlow 3s ease-in-out infinite;
}

@keyframes buttonGlow {
    0%, 100% { 
        background-position: 0% 50%;
        box-shadow: 
            0 12px 40px rgba(0, 0, 0, 0.4),
            0 0 20px rgba(248, 232, 255, 0.2);
    }
    50% { 
        background-position: 100% 50%;
        box-shadow: 
            0 12px 40px rgba(0, 0, 0, 0.4),
            0 0 30px rgba(248, 232, 255, 0.4);
    }
}

.form-submit-btn::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: left 0.6s;
}

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

.form-submit-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(248, 232, 255, 0.6);
}

.form-note {
    margin-top: 35px;
    padding: 30px;
    background: linear-gradient(135deg, 
        rgba(248, 232, 255, 0.1) 0%, 
        rgba(232, 220, 224, 0.05) 100%
    );
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    position: relative;
}

.form-note::before {
    content: '✨';
    position: absolute;
    top: -10px;
    left: 30px;
    background: linear-gradient(135deg, #E8B4C7, #F0B7C7);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.form-note p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
    font-weight: 300;
}

.form-note strong {
    color: #F5C2D1;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(248, 232, 255, 0.3);
}

/* Enhanced Mobile Responsive Styles */
@media (max-width: 768px) {
    .booking-form-container {
        margin-top: 40px;
        padding: 0 15px;
    }
    
    .booking-form-card {
        padding: 30px 25px;
        margin: 0;
        border-radius: 20px;
        box-shadow: 0 15px 50px rgba(245, 240, 243, 0.2);
    }
    
    .booking-form-card h3 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .booking-form-card > p {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-group.half {
        flex: none;
    }
    
    .form-group {
        gap: 8px;
    }
    
    .form-group label {
        font-size: 0.95rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 16px 18px;
        font-size: 1rem;
        border-radius: 12px;
    }
    
    .form-submit-btn {
        min-width: 200px;
        padding: 18px 35px;
        font-size: 1rem;
    }
    
    .form-note {
        padding: 20px;
        margin-top: 25px;
    }
    
    .form-note p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .booking-form-card {
        padding: 25px 20px;
    }
    
    .booking-form-card h3 {
        font-size: 1.6rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 15px 16px;
        font-size: 0.95rem;
    }
}

/* Additional Mobile Booking Fixes */
@media (max-width: 768px) {
    .booking {
        padding: 4rem 0;
    }
    
    .booking-content {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    
    .booking-visual {
        order: -1;
        margin-bottom: 0;
    }
    
    .booking-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        width: 100%;
    }
    
    .booking-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .booking-card {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
        border-radius: 20px;
    }
    
    .booking-options {
        gap: 1rem;
    }
    
    .booking-options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .booking-option {
        padding: 2.5rem 1.5rem;
        border-radius: 25px;
    }
    
    .option-icon {
        font-size: 3.5rem;
    }
    
    .option-text h4 {
        font-size: 1.5rem;
    }
    
    .option-text p {
        font-size: 1rem;
    }
    
    .sub-service {
        padding: 1.2rem;
    }
    
    .sub-service strong {
        font-size: 1.1rem;
    }
    
    .sub-service span {
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        width: 100%;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}