/* ============================================
   ELEGANCE HAIR STUDIO - STYLESHEET
   Luxurious, Feminine, Modern Design
   ============================================ */

/* CSS Variables */
:root {
    --color-pink: #FFB6C1;
    --color-pink-dark: #FF91A4;
    --color-pink-light: #FFD1DC;
    --color-lavender: #E6E6FA;
    --color-lavender-dark: #D8BFD8;
    --color-purple: #BA55D3;
    --color-purple-dark: #9370DB;
    --color-gold: #D4AF37;
    --color-gold-light: #F4E4BC;
    --color-coral: #FF7F7F;
    --color-rose: #FF69B4;
    --color-white: #FFFFFF;
    --color-dark: #1a1a1a;
    --color-dark-light: #2C2C2C;
    --color-text: #2a2a2a;
    --color-text-light: #555555;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 15px 40px rgba(0, 0, 0, 0.15);
    --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.2);
    --shadow-colored: 0 15px 40px rgba(255, 182, 193, 0.3);
    --transition: all 0.3s ease;
    --gradient-pink: linear-gradient(135deg, #FFB6C1 0%, #FF91A4 50%, #FF69B4 100%);
    --gradient-lavender: linear-gradient(135deg, #E6E6FA 0%, #D8BFD8 50%, #BA55D3 100%);
    --gradient-gold: linear-gradient(135deg, #F4E4BC 0%, #D4AF37 50%, #C9A227 100%);
    --gradient-rainbow: linear-gradient(135deg, #FFB6C1 0%, #D8BFD8 25%, #BA55D3 50%, #FF91A4 75%, #FFB6C1 100%);
    --gradient-hero: linear-gradient(135deg, rgba(255, 182, 193, 0.9) 0%, rgba(186, 85, 211, 0.85) 50%, rgba(255, 105, 180, 0.9) 100%);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8F4FF 50%, #FFF0F5 100%);
    background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-dark);
}

h3 {
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-pink-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 248, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-soft);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
}

.logo span {
    background: var(--gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Lato', sans-serif;
    font-style: normal;
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 4px;
    line-height: 1;
    text-transform: uppercase;
}

.logo i {
    background: var(--gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
    filter: drop-shadow(0 2px 4px rgba(255, 182, 193, 0.5));
    transition: var(--transition);
}

.logo:hover i {
    transform: rotate(15deg) scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(255, 182, 193, 0.8));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #8B4A9B;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    padding: 0.75rem 1.5rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    border-radius: 30px;
    border: 2px solid rgba(255, 182, 193, 0.3);
    background: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.5px;
}

.nav-link i {
    font-size: 1rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 182, 193, 0.15);
    border-radius: 50%;
    transition: var(--transition);
    color: var(--color-pink);
}

.nav-link span {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-pink);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-link:hover {
    color: #BA55D3;
    background: rgba(255, 182, 193, 0.12);
    border-color: var(--color-pink);
    box-shadow: 0 2px 12px rgba(255, 182, 193, 0.25);
}

.nav-link:hover i {
    background: var(--color-pink);
    color: var(--color-white);
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 182, 193, 0.4);
}

.nav-link:hover::after {
    width: 60%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: linear-gradient(135deg, #FFB6C1 0%, #FF91A4 50%, #FF69B4 100%);
    transition: var(--transition);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-image: url('images/hero-image.jpg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.3) 0%, rgba(230, 230, 250, 0.25) 100%), url('images/hero-image.jpg.jpg');
    background-size: cover, cover;
    background-position: center, center;
    background-blend-mode: overlay, normal;
    z-index: 1;
    overflow: hidden;
    display: block;
    will-change: transform;
    transform: translateZ(0);
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

/* Geometric shapes */
.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #FFFFFF, #FFB6C1);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #FFC0CB, #E6E6FA);
    bottom: -50px;
    left: -50px;
    animation-delay: 2s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #FFF0F5, #FFB6C1);
    top: 30%;
    right: 10%;
    animation-delay: 4s;
}

.shape-4 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #E6E6FA, #FFC0CB);
    bottom: 20%;
    left: 15%;
    animation-delay: 6s;
}

.shape-5 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #FFFFFF, #FFF0F5);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 8s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

/* Hair SVG waves */
.hero-hair-svg {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 60%;
    height: 50%;
    opacity: 0.4;
    z-index: 2;
}

.hair-wave-1,
.hair-wave-2,
.hair-wave-3 {
    animation: waveMove 8s ease-in-out infinite;
}

.hair-wave-2 {
    animation-delay: 1s;
}

.hair-wave-3 {
    animation-delay: 2s;
}

@keyframes waveMove {
    0%, 100% {
        transform: translateX(0);
        opacity: 0.4;
    }
    50% {
        transform: translateX(20px);
        opacity: 0.6;
    }
}

/* Scissors icon */
.scissors-icon {
    position: absolute;
    top: 50%;
    right: 15%;
    transform: translateY(-50%) rotate(-15deg);
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.2);
    z-index: 2;
    animation: scissorsFloat 6s ease-in-out infinite;
}

@keyframes scissorsFloat {
    0%, 100% {
        transform: translateY(-50%) rotate(-15deg) scale(1);
    }
    50% {
        transform: translateY(-60%) rotate(-10deg) scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 182, 193, 0.25) 0%, 
        rgba(255, 192, 203, 0.2) 50%,
        rgba(230, 230, 250, 0.15) 100%);
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--color-white);
    padding: 2rem;
    max-width: 800px;
    will-change: transform, opacity;
    transition: opacity 0.3s ease;
}

.hero-content .btn-primary {
    width: 280px;
    text-align: center;
    display: inline-block;
    box-sizing: border-box;
}

.hero-tagline {
    font-size: 1.2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-pink);
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(255, 182, 193, 0.5);
    animation: fadeInUp 1s ease 0.1s both;
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 900;
    font-style: italic;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
    color: #FFFFFF;
    text-shadow: 3px 3px 20px rgba(0, 0, 0, 0.5), 
                 0 0 40px rgba(255, 182, 193, 0.4),
                 0 0 60px rgba(186, 85, 211, 0.3);
    letter-spacing: 2px;
    line-height: 1.1;
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 2.1rem;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.7), 
                 0 0 40px rgba(0, 0, 0, 0.5),
                 0 0 60px rgba(255, 182, 193, 0.4),
                 0 0 80px rgba(186, 85, 211, 0.3);
    animation: fadeInUp 1s ease 0.2s both;
    color: rgba(255, 255, 255, 1);
    letter-spacing: 1px;
    line-height: 1.4;
}

.hero-contact {
    margin: 2.5rem 0;
    animation: fadeInUp 1s ease 0.3s both;
    display: inline-block;
}

.hero-contact .btn {
    width: 280px;
    text-align: center;
    box-sizing: border-box;
}

.hero-gallery-link {
    /* Inherits all styles from .btn and .btn-primary */
    /* Ensure same dimensions as other btn-primary */
    min-width: fit-content;
    box-sizing: border-box;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: var(--color-white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-soft);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.btn-primary {
    background: var(--gradient-pink);
    color: var(--color-white);
    border: 2px solid var(--color-pink-dark);
    box-shadow: 0 5px 15px rgba(255, 182, 193, 0.4);
}

.btn-primary:hover {
    transform: translateY(-5px) rotateX(5deg) rotateY(-5deg) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 182, 193, 0.6), 0 5px 15px rgba(218, 112, 214, 0.4);
    background: linear-gradient(135deg, #FF91A4 0%, #FF69B4 50%, #FF1493 100%);
}

.btn-secondary {
    background: var(--color-white);
    color: var(--color-pink-dark);
    border: 2px solid var(--color-pink-dark);
    box-shadow: 0 3px 10px rgba(255, 182, 193, 0.3);
}

.btn-secondary:hover {
    background: var(--gradient-pink);
    color: var(--color-white);
    transform: translateY(-5px) rotateX(5deg) rotateY(5deg) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 182, 193, 0.6), 0 5px 15px rgba(218, 112, 214, 0.4);
    border-color: var(--color-rose);
}

.btn-block {
    width: 100%;
}

.booking-form .btn-primary.btn-block {
    margin-top: 1rem;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.booking-form .btn-primary.btn-block::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.booking-form .btn-primary.btn-block:hover::before {
    width: 300px;
    height: 300px;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 3.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: var(--gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(255, 182, 193, 0.3);
    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-pink);
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(255, 182, 193, 0.5);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-light);
    font-weight: 300;
}

/* Services Section */
.services {
    background: linear-gradient(135deg, #E6E6FA 0%, #D8BFD8 30%, #F0E6FF 60%, #E6E6FA 100%);
    padding: 2rem 0 4rem 0;
    position: relative;
    overflow: hidden;
}

/* Diagonal divider before Services */
.services::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 248, 255, 0.95) 50%, transparent 50%);
    clip-path: polygon(0 0, 100% 50px, 100% 0);
    z-index: 1;
}

.services .section-title {
    color: #FFFFFF;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #FFFFFF;
    background-clip: unset;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.services .section-subtitle {
    color: #FFFFFF;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 400;
    font-style: italic;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.services::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 182, 193, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(186, 85, 211, 0.2) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.service-card {
    opacity: 1;
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }

.service-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF8FF 100%);
    padding: 1.8rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 182, 193, 0.2), 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(255, 182, 193, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 0;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-rainbow);
    opacity: 0.15;
    transition: var(--transition);
}

.service-card:hover::before {
    left: 0;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 40px rgba(255, 182, 193, 0.4), 0 10px 25px rgba(186, 85, 211, 0.3);
    border-color: var(--color-pink-dark);
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF0F5 100%);
    opacity: 1;
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    background: var(--gradient-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.8rem;
    box-shadow: 0 8px 20px rgba(255, 182, 193, 0.5);
    border: 3px solid rgba(255, 255, 255, 0.5);
    transition: var(--transition);
    flex-shrink: 0;
}

.service-card:hover .service-icon {
    background: var(--gradient-rainbow);
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 10px 30px rgba(186, 85, 211, 0.6);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-pink-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: var(--transition);
    line-height: 1.3;
}

.service-card:hover h3 {
    background: var(--gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.95rem;
    flex-grow: 1;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    background: var(--gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 2px 10px rgba(255, 182, 193, 0.3);
    flex-shrink: 0;
}

/* Services Intro & CTA */
.services {
    text-align: center;
    padding: 4rem 0;
}

.services-intro {
    margin: 2rem 0;
}

.services-description {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 1);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4), 
                 0 2px 8px rgba(0, 0, 0, 0.3);
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.services-cta {
    margin-top: 2.5rem;
}

.services-cta .services-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.85rem 1.8rem;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #FFFFFF;
    background: linear-gradient(135deg, #FFB6C1 0%, #DA70D6 100%);
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(255, 182, 193, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    text-transform: none;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.services-cta .services-link-btn:hover {
    background: linear-gradient(135deg, #FF91A4 0%, #FF69B4 50%, #FF1493 100%);
    transform: translateY(-4px) rotateX(8deg) rotateY(-3deg) scale(1.03);
    box-shadow: 0 12px 30px rgba(255, 182, 193, 0.6), 0 5px 15px rgba(218, 112, 214, 0.4);
}

.services-cta .services-link-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.services-cta .services-link-btn:hover i {
    transform: translateX(3px);
}


/* Gallery Section */
.gallery {
    padding: 6rem 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #FFF8FF 50%, #FFFFFF 100%);
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 182, 193, 0.1) 100%);
    pointer-events: none;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 2rem;
    background: transparent;
    border: 2px solid var(--color-pink-dark);
    color: var(--color-pink-dark);
    border-radius: 50px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--gradient-pink);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.filter-btn:hover::before,
.filter-btn.active::before {
    width: 300px;
    height: 300px;
}

.filter-btn:hover,
.filter-btn.active {
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-colored);
    border-color: var(--color-rose);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 3/4;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    border: 3px solid rgba(255, 182, 193, 0.3);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-colored);
    border-color: var(--color-pink-dark);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 3rem;
    color: var(--color-white);
}

.gallery-item.hidden {
    display: none;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 10px;
    display: none;
}

.lightbox-video {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    display: none;
}

.lightbox.active .lightbox-image[style*="display: block"],
.lightbox.active .lightbox-video[style*="display: block"] {
    display: block !important;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 3rem;
    color: var(--color-white);
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--color-pink);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: var(--color-white);
    cursor: pointer;
    padding: 1rem;
    transition: var(--transition);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--color-pink);
    transform: translateY(-50%) scale(1.2);
}

/* About Section */
.about {
    background: linear-gradient(135deg, #E6E6FA 0%, #D8BFD8 25%, #F0E6FF 50%, #E6E6FA 75%, #FFF0F5 100%);
    padding: 3rem 0 2rem 0;
    position: relative;
    overflow: hidden;
}

.about .section-title {
    color: #FFFFFF;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #FFFFFF;
    background-clip: unset;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.about .section-subtitle {
    color: #FFFFFF;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 400;
    font-style: italic;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Diagonal divider before About */
.about::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(135deg, #E6E6FA 0%, #D8BFD8 30%, #F0E6FF 60%, #E6E6FA 100%);
    clip-path: polygon(0 60px, 100% 0, 100% 60px, 0 120px);
    z-index: 1;
}

.about::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 182, 193, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.team-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF8FF 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 2px solid rgba(255, 182, 193, 0.3);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-colored);
    border-color: var(--color-pink-dark);
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF0F5 100%);
}

.team-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-info {
    padding: 2rem;
    text-align: center;
}

.team-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
}

.team-role {
    background: var(--gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-bio {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.team-specialties {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.team-specialties span {
    padding: 0.5rem 1rem;
    background: var(--gradient-lavender);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--color-dark);
    font-weight: 600;
    border: 1px solid rgba(255, 182, 193, 0.3);
    box-shadow: 0 2px 8px rgba(186, 85, 211, 0.2);
}

.about-content {
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF8FF 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    border: 2px solid rgba(255, 182, 193, 0.3);
    position: relative;
    z-index: 1;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
}

.about-text p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.about-features {
    list-style: none;
    margin-top: 2rem;
}

.about-features li {
    padding: 1rem 0;
    color: var(--color-text);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about-features i {
    background: var(--gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 4px rgba(255, 182, 193, 0.5));
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #FFF0F5 50%, #F8F4FF 100%);
    position: relative;
}

.testimonials-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-track {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.testimonial-slide {
    display: none;
    padding: 3rem;
    background: linear-gradient(135deg, #E6E6FA 0%, #FFF0F5 50%, #F0E6FF 100%);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    border: 2px solid rgba(255, 182, 193, 0.3);
}

.testimonial-slide.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.testimonial-content {
    text-align: center;
}

.stars {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-quote {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--color-text);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-family: 'Playfair Display', serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.testimonial-author img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-pink-dark);
    box-shadow: 0 5px 15px rgba(255, 182, 193, 0.5);
}

.testimonial-author h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: var(--color-dark);
}

.testimonial-author p {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-pink);
    color: var(--color-white);
    border: 2px solid var(--color-pink-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(255, 182, 193, 0.4);
}

.testimonial-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-colored);
    background: var(--gradient-rainbow);
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-lavender);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--color-pink-dark);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(255, 182, 193, 0.8);
}

/* Booking Section */
.booking {
    padding: 2rem 0 6rem 0;
    background: linear-gradient(135deg, #E6E6FA 0%, #D8BFD8 30%, #FFF0F5 60%, #F0E6FF 100%);
    position: relative;
    overflow: hidden;
}

/* Diagonal divider before Booking */
.booking::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(135deg, #E6E6FA 0%, #D8BFD8 25%, #F0E6FF 50%, #E6E6FA 75%, #FFF0F5 100%);
    clip-path: polygon(0 0, 100% 50px, 100% 0);
    z-index: 1;
}

.booking::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 182, 193, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.booking-form-section,
.contact-info-section {
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF8FF 100%);
    padding: 3.5rem;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(255, 182, 193, 0.25), 
                0 5px 20px rgba(186, 85, 211, 0.15);
    border: 2px solid rgba(255, 182, 193, 0.4);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.contact-info-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 182, 193, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.booking-form-section {
    border: 4px solid rgba(255, 182, 193, 0.8);
    box-shadow: 0 10px 40px rgba(255, 182, 193, 0.3), 
                0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.booking-form-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 182, 193, 0.12) 0%, transparent 70%);
    pointer-events: none;
    animation: float 20s ease-in-out infinite;
}

.booking-form-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -30%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(186, 85, 211, 0.08) 0%, transparent 70%);
    pointer-events: none;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(20px, 20px) rotate(5deg);
    }
}

.booking-form .section-title,
.contact-info-section .section-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.booking-form .section-subtitle,
.contact-info-section .section-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
}

.booking-form-section .section-subtitle {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.1rem;
    background: var(--gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    position: relative;
    z-index: 2;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 700;
    color: var(--color-dark);
    font-size: 1rem;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.3px;
    position: relative;
}

.form-group label::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-pink);
    border-radius: 2px;
    opacity: 0.6;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: 3px solid rgba(255, 182, 193, 0.6);
    border-radius: 12px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: #FFFFFF;
    box-shadow: 0 2px 8px rgba(255, 182, 193, 0.15);
    color: var(--color-dark);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(0, 0, 0, 0.4);
    opacity: 1;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #DA70D6;
    border-width: 3px;
    box-shadow: 0 0 0 4px rgba(255, 182, 193, 0.4), 
                0 5px 20px rgba(186, 85, 211, 0.25),
                0 2px 10px rgba(255, 182, 193, 0.2);
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF8FF 100%);
    transform: translateY(-2px);
}

.contact-details {
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.contact-item {
    display: flex;
    gap: 1.8rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    border-radius: 18px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 182, 193, 0.5);
    box-shadow: 0 4px 15px rgba(255, 182, 193, 0.2),
                0 2px 8px rgba(186, 85, 211, 0.15);
    position: relative;
}

.contact-item::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.6), rgba(186, 85, 211, 0.4));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-item:hover::before {
    opacity: 1;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(255, 182, 193, 0.35),
                0 4px 12px rgba(186, 85, 211, 0.25);
    border-color: rgba(255, 182, 193, 0.8);
}

.contact-item i {
    font-size: 1.8rem;
    background: var(--gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 0.2rem;
    min-width: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-item:hover i {
    transform: scale(1.15);
}

.contact-item h4 {
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
    color: var(--color-dark);
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.5px;
}

.contact-item p {
    color: var(--color-text-light);
    line-height: 1.9;
    font-size: 1rem;
}

.contact-item a {
    background: var(--gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-pink);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(255, 182, 193, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1) rotate(360deg);
    box-shadow: var(--shadow-colored);
    background: var(--gradient-rainbow);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    margin-top: 2rem;
}

.map-container iframe {
    border-radius: 15px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #FFD1DC 0%, #E6E6FA 30%, #D8BFD8 60%, #F8F4FF 100%);
    color: var(--color-text);
    padding: 3rem 0 1.5rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-pink);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-logo-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
}

.footer-logo-icon i {
    background: var(--gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
    filter: drop-shadow(0 2px 4px rgba(255, 182, 193, 0.5));
}

.footer-logo-icon span {
    background: var(--gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Lato', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.footer-tagline {
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    font-style: italic;
    color: var(--color-text-light);
    margin: 0;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--color-text);
    font-size: 0.95rem;
}

.footer-contact-item i {
    color: var(--color-pink);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.footer-contact-item a {
    color: var(--color-text);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact-item a:hover {
    color: var(--color-pink-dark);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 182, 193, 0.2);
    color: var(--color-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 2px solid rgba(255, 182, 193, 0.3);
}

.footer-social a:hover {
    background: var(--gradient-pink);
    color: var(--color-white);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 182, 193, 0.5);
    border-color: var(--color-pink);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 182, 193, 0.3);
    color: var(--color-text-light);
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Desktop Optimizations */
@media (min-width: 969px) {
    .container {
        max-width: 1400px;
        padding: 0 40px;
    }

    /* Navigation - Desktop */
    .navbar {
        padding: 0;
    }

    .nav-wrapper {
        padding: 0.6rem 0;
    }

    .logo {
        font-size: 1.3rem;
    }

    .logo span {
        font-size: 2rem;
        letter-spacing: 3px;
    }

    .logo i {
        font-size: 1.5rem;
    }

    .nav-menu {
        gap: 1.5rem;
    }

    .nav-link {
        font-size: 0.95rem;
        padding: 0.5rem 1.2rem;
    }

    .nav-link i {
        font-size: 0.85rem;
        width: 24px;
        height: 24px;
    }

    /* Hide mobile menu footer and header on desktop */
    .mobile-menu-header,
    .mobile-menu-footer {
        display: none !important;
    }

    /* Hide any contact info or social links in nav menu on desktop */
    .nav-menu .mobile-contact,
    .nav-menu .mobile-social {
        display: none !important;
    }

    /* Compact navbar styling */
    .navbar {
        box-shadow: 0 1px 10px rgba(0, 0, 0, 0.03);
    }

    .navbar.scrolled {
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    }

    /* Hero Section - Desktop */
    .hero {
        min-height: 700px;
    }

    .hero-content {
        max-width: 900px;
        padding: 3rem;
    }

    /* Group buttons with more space on desktop */
    .hero-content .hero-contact {
        margin-right: 4rem;
        margin-bottom: 0;
    }

    .hero-content > a.btn-primary:last-of-type {
        margin-left: 0;
    }

    .hero-title {
        font-size: 6rem;
        margin-bottom: 2rem;
        letter-spacing: 3px;
    }

    .hero-subtitle {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
        letter-spacing: 1.5px;
    }

    .hero-cta-group {
        gap: 2rem;
        margin-top: 3rem;
    }

    .hero-content .btn-primary {
        width: 320px;
        padding: 1.2rem 3rem;
        font-size: 1.1rem;
    }

    /* Separate hero buttons on desktop - increase gap between them */
    .hero-contact {
        margin-bottom: 0;
        margin-right: 4rem;
        display: inline-block;
    }

    .hero-content > .btn-primary:not(.hero-gallery-link) {
        margin-top: 0;
        display: inline-block;
        vertical-align: middle;
    }

    /* Ensure buttons are on same line with more space on desktop */
    .hero-content .hero-contact + .btn-primary {
        margin-left: 0;
    }

    /* Section Styles - Desktop */
    section {
        padding: 7rem 0;
    }

    .section-header {
        margin-bottom: 4rem;
    }

    .section-title {
        font-size: 4.5rem;
        margin-bottom: 1.5rem;
    }

    .section-subtitle {
        font-size: 1.4rem;
    }

    /* Services Section - Desktop */
    .services {
        padding: 6rem 0 7rem 0;
    }

    .services-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
        margin: 3rem 0;
    }

    .service-card {
        padding: 2.5rem;
        min-height: 380px;
    }

    .service-icon {
        width: 90px;
        height: 90px;
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

    .service-card h3 {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
    }

    .service-card p {
        font-size: 1.05rem;
        line-height: 1.8;
        margin-bottom: 1.5rem;
    }

    .service-price {
        font-size: 1.5rem;
    }

    .services-description {
        font-size: 1.3rem;
        max-width: 800px;
        line-height: 2;
    }

    .services-cta {
        margin-top: 3.5rem;
    }

    .services-cta .services-link-btn {
        padding: 1.1rem 2.5rem;
        font-size: 1.1rem;
    }

    /* Services Section with Image - Desktop */
    .services-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .services-content {
        display: flex;
        flex-direction: column;
    }

    .services-image-desktop {
        display: block;
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 50px rgba(255, 182, 193, 0.3),
                    0 10px 30px rgba(186, 85, 211, 0.2);
        border: 3px solid rgba(255, 182, 193, 0.4);
        height: 100%;
        min-height: 500px;
    }

    .services-side-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 20px;
        transition: transform 0.5s ease;
    }

    .services-image-desktop:hover .services-side-image {
        transform: scale(1.05);
    }

    .services-image-desktop::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, 
            rgba(255, 182, 193, 0.1) 0%, 
            rgba(186, 85, 211, 0.1) 100%);
        z-index: 1;
        pointer-events: none;
        border-radius: 20px;
    }

    /* About Section - Desktop */
    .about {
        padding: 6rem 0 5rem 0;
    }

    .about-content {
        padding: 4rem;
        max-width: 1000px;
        margin: 0 auto;
    }

    .about-text h3 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    .about-text p {
        font-size: 1.2rem;
        line-height: 2;
        margin-bottom: 2rem;
    }

    /* Booking Section - Desktop */
    .booking {
        padding: 6rem 0 8rem 0;
    }

    .booking-wrapper {
        gap: 5rem;
        align-items: stretch;
    }

    .booking-form-section,
    .contact-info-section {
        padding: 4.5rem;
    }

    .booking-form .section-title,
    .contact-info-section .section-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    .booking-form .section-subtitle,
    .contact-info-section .section-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2.5rem;
    }

    .form-group {
        margin-bottom: 2rem;
    }

    .form-group label {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 1.4rem;
        font-size: 1.05rem;
        border-radius: 15px;
    }

    .form-row {
        gap: 1.5rem;
    }

    .contact-item {
        padding: 2rem;
        margin-bottom: 3rem;
        gap: 2rem;
    }

    .contact-item i {
        font-size: 2.2rem;
        min-width: 40px;
    }

    .contact-item h4 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .contact-item p {
        font-size: 1.1rem;
        line-height: 2;
    }

    .map-container {
        margin-top: 3rem;
    }

    .map-container iframe {
        height: 400px;
    }

    /* Footer - Desktop */
    .footer {
        padding: 4rem 0 2rem;
    }

    .footer-content {
        gap: 3rem;
        margin-bottom: 3rem;
    }

    .footer-logo-icon {
        font-size: 1.8rem;
    }

    .footer-logo-icon span {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }

    .footer-contact {
        gap: 1.2rem;
    }

    .footer-contact-item {
        font-size: 1.05rem;
        gap: 1rem;
    }

    .footer-social {
        gap: 1.5rem;
    }

    .footer-social a {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }

    /* Additional Desktop Enhancements */
    .hero-content .btn-primary {
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .hero-content .btn-primary:hover {
        transform: translateY(-8px) rotateX(8deg) rotateY(-5deg) scale(1.08);
        box-shadow: 0 20px 45px rgba(255, 182, 193, 0.7), 0 8px 20px rgba(218, 112, 214, 0.5);
    }

    .service-card {
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .service-card:hover {
        transform: translateY(-12px) scale(1.05);
        box-shadow: 0 25px 50px rgba(255, 182, 193, 0.5), 0 12px 30px rgba(186, 85, 211, 0.4);
    }

    .about-content {
        transition: all 0.4s ease;
    }

    .about-content:hover {
        box-shadow: 0 20px 50px rgba(255, 182, 193, 0.3), 0 8px 25px rgba(186, 85, 211, 0.2);
    }

    .booking-form-section:hover,
    .contact-info-section:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 60px rgba(255, 182, 193, 0.35), 
                    0 10px 30px rgba(186, 85, 211, 0.25);
    }

    .contact-item {
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .contact-item:hover {
        transform: translateX(10px) translateY(-3px);
        box-shadow: 0 12px 35px rgba(255, 182, 193, 0.4),
                    0 6px 18px rgba(186, 85, 211, 0.3);
    }
}

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
    .container {
        max-width: 1600px;
        padding: 0 60px;
    }

    .hero-title {
        font-size: 7rem;
    }

    .hero-subtitle {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 5rem;
    }

    .services-grid {
        gap: 3rem;
    }

    .booking-wrapper {
        gap: 6rem;
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        flex-direction: column;
        background: linear-gradient(135deg, #FFD1DC 0%, #E6E6FA 30%, #D8BFD8 60%, #F8F4FF 100%);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow-medium);
        padding: 0;
        justify-content: space-between;
        align-items: stretch;
        z-index: 999;
        backdrop-filter: blur(15px);
        overflow: hidden;
    }

    .nav-menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: 
            radial-gradient(circle at 20% 20%, rgba(255, 182, 193, 0.2) 0%, transparent 40%),
            radial-gradient(circle at 80% 80%, rgba(230, 230, 250, 0.2) 0%, transparent 40%);
        pointer-events: none;
        z-index: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu.active ~ .hamburger {
        opacity: 0;
        pointer-events: none;
        z-index: -1;
    }

    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 1.5rem;
        border-bottom: 2px solid rgba(255, 182, 193, 0.4);
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(10px);
        position: relative;
        z-index: 1001;
        flex-shrink: 0;
        min-height: 60px;
    }

    .mobile-logo {
        display: flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
        cursor: pointer;
        transition: var(--transition);
    }

    .mobile-logo:hover {
        transform: scale(1.05);
    }

    .mobile-logo i {
        color: var(--color-pink);
        font-size: 1.5rem;
    }

    .mobile-logo span {
        background: var(--gradient-pink);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-family: 'Lato', sans-serif;
        font-size: 1.8rem;
        font-weight: 900;
        letter-spacing: 3px;
        text-transform: uppercase;
    }

    .mobile-close {
        background: rgba(255, 182, 193, 0.25);
        border: 2px solid rgba(255, 182, 193, 0.6);
        font-size: 1.4rem;
        color: #8B4A9B;
        cursor: pointer;
        padding: 0;
        transition: var(--transition);
        width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        position: relative;
        z-index: 1002;
        flex-shrink: 0;
        min-width: 42px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .mobile-close i {
        position: relative;
        z-index: 1;
    }

    .mobile-close:hover {
        background: var(--color-pink);
        color: var(--color-white);
        border-color: var(--color-pink);
        transform: scale(1.1);
    }

    .nav-menu li:not(.mobile-menu-header):not(.mobile-menu-footer) {
        margin: 0.2rem 0;
        padding: 0 1.5rem;
        position: relative;
        z-index: 1;
    }

    .nav-link {
        font-family: 'Playfair Display', serif;
        font-size: 1.3rem;
        font-weight: 600;
        padding: 1rem 1.5rem;
        display: flex;
        align-items: center;
        gap: 1.2rem;
        width: 100%;
        border-radius: 15px;
        position: relative;
        color: #8B4A9B;
        transition: var(--transition);
        margin: 0.4rem 0;
        border: 2.5px solid rgba(255, 182, 193, 0.5);
        background: rgba(255, 255, 255, 0.8);
        letter-spacing: 0.5px;
    }

    .nav-link i {
        font-size: 1.2rem;
        width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 182, 193, 0.2);
        border-radius: 12px;
        transition: var(--transition);
        color: var(--color-pink);
        flex-shrink: 0;
    }

    .nav-link span {
        flex: 1;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover {
        color: #BA55D3;
        background: rgba(255, 182, 193, 0.25);
        border-color: var(--color-pink);
        transform: translateX(8px);
        box-shadow: 0 4px 15px rgba(255, 182, 193, 0.4);
    }

    .nav-link:hover i {
        background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-pink-dark) 100%);
        color: var(--color-white);
        transform: scale(1.1);
        box-shadow: 0 4px 15px rgba(255, 182, 193, 0.4);
    }

    .mobile-menu-footer {
        padding: 1rem 1.5rem;
        border-top: 2px solid rgba(255, 182, 193, 0.4);
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(10px);
        position: relative;
        z-index: 1;
    }

    .mobile-contact {
        margin-bottom: 0.8rem;
        text-align: center;
    }

    .mobile-contact p {
        margin: 0.4rem 0;
        color: var(--color-text);
        font-size: 0.85rem;
    }

    .mobile-contact i {
        color: var(--color-pink);
        margin-right: 0.6rem;
        width: 18px;
    }

    .mobile-contact a {
        color: var(--color-text);
        transition: var(--transition);
    }

    .mobile-contact a:hover {
        color: var(--color-pink-dark);
    }

    .mobile-social {
        display: flex;
        justify-content: center;
        gap: 1rem;
    }

    .mobile-social a {
        width: 35px;
        height: 35px;
        border-radius: 50%;
        background: var(--gradient-pink);
        color: var(--color-white);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        transition: var(--transition);
        box-shadow: 0 3px 10px rgba(255, 182, 193, 0.3);
    }

    .mobile-social a:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(255, 182, 193, 0.5);
    }

    .hamburger {
        display: flex;
        z-index: 1001;
        position: relative;
    }

    .nav-menu.active ~ .hamburger,
    .nav-menu.active + * .hamburger {
        opacity: 0;
        pointer-events: none;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-tagline {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .hero-title {
        font-size: 3.5rem;
        letter-spacing: 1.5px;
    }

    .hero-subtitle {
        font-size: 1.5rem;
        letter-spacing: 0.8px;
    }

    .hero-contact {
        margin: 2rem 0;
    }


    .section-title {
        font-size: 2.5rem;
    }

    /* Hide services image on mobile */
    .services-image-desktop {
        display: none !important;
    }

    .services-wrapper {
        display: block;
    }

    .services-content {
        width: 100%;
    }

    .booking-wrapper {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .services-carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .services-carousel-prev {
        left: -20px;
    }
    
    .services-carousel-next {
        right: -20px;
    }
    
    .services-carousel-indicators {
        margin-top: 2rem;
        gap: 0.6rem;
    }
    
    .services-carousel-indicator {
        width: 10px;
        height: 10px;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin: 1rem 0;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.6rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
        line-height: 1.5;
    }
    
    .service-price {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-tagline {
        font-size: 0.9rem;
        letter-spacing: 1.5px;
    }

    .hero-title {
        font-size: 2.8rem;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        letter-spacing: 0.5px;
    }

    .hero-contact {
        margin: 1.5rem 0;
    }


    .section-title {
        font-size: 2rem;
    }

    .service-card {
        flex: 0 0 260px;
        min-width: 260px;
    }
    
    .services-carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .services-carousel-prev {
        left: -15px;
    }
    
    .services-carousel-next {
        right: -15px;
    }
    
    .services-carousel-indicators {
        margin-top: 1.5rem;
        gap: 0.5rem;
    }
    
    .services-carousel-indicator {
        width: 8px;
        height: 8px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .testimonial-quote {
        font-size: 1.1rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .footer-logo {
        align-items: center;
    }

    .footer-contact {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 500px;
    }

    .hero-tagline {
        font-size: 0.85rem;
        letter-spacing: 1px;
    }

    .hero-title {
        font-size: 2.2rem;
        letter-spacing: 0.5px;
    }

    .hero-contact {
        margin: 1.2rem 0;
    }


    .section-title {
        font-size: 1.8rem;
    }

    .services-grid {
        gap: 0.8rem;
        margin: 0.8rem 0;
    }
    
    .service-card {
        padding: 1.2rem;
    }
    
    .service-icon {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
        margin-bottom: 0.6rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .service-card p {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
        line-height: 1.4;
    }
    
    .service-price {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }
    
    .booking-form-section,
    .contact-info-section {
        padding: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Success Popup Modal */
.success-popup {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 999999 !important;
    display: none !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease;
    pointer-events: none !important;
    visibility: hidden !important;
}

.success-popup.active {
    display: flex !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    visibility: visible !important;
}

.success-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 100000;
    pointer-events: auto;
}

.success-popup-content {
    position: relative;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF8FF 100%);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(255, 182, 193, 0.4),
                0 10px 30px rgba(186, 85, 211, 0.3),
                0 5px 15px rgba(0, 0, 0, 0.2);
    border: 3px solid rgba(255, 182, 193, 0.5);
    max-width: 500px;
    width: 90%;
    text-align: center;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    z-index: 100001 !important;
    pointer-events: auto;
}

.success-popup.active .success-popup-content {
    transform: scale(1);
}

.success-popup-icon {
    font-size: 4rem;
    color: #DA70D6;
    margin-bottom: 1.5rem;
    animation: checkmark 0.6s ease;
}

@keyframes checkmark {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-popup-title {
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
    background: linear-gradient(135deg, #FFB6C1 0%, #DA70D6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-weight: 700;
}

.success-popup-message {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-family: 'Lato', sans-serif;
}

.success-popup-close {
    min-width: 150px;
    padding: 0.8rem 2rem;
}

@media (max-width: 768px) {
    .success-popup {
        z-index: 99999 !important;
    }
    
    .success-popup-content {
        padding: 2rem 1.5rem;
        max-width: 90%;
        z-index: 100001 !important;
    }

    .success-popup-icon {
        font-size: 3rem;
    }

    .success-popup-title {
        font-size: 1.5rem;
    }

    .success-popup-message {
        font-size: 1rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 3px solid var(--color-pink);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .navbar,
    .footer,
    .btn,
    .testimonial-controls,
    .gallery-filters {
        display: none;
    }
}

