:root {
    --pink-dress: #D4648A;
    --pink-light: #E8A4B8;
    --purple-deep: #4A1942;
    --purple-soft: #7B5B7B;
    --lavender-bg: #F5EEF5;
    --blue-accent: #8B9CC5;
    --cream: #FDF8F9;
    --text-dark: #2D1F2D;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Quicksand', sans-serif;
    background: var(--lavender-bg);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Flowing background waves */
.bg-waves {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.4;
}

.wave {
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, transparent 40%, var(--pink-light) 60%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.wave:nth-child(1) {
    top: -50%;
    left: -50%;
    animation-delay: 0s;
}

.wave:nth-child(2) {
    top: -30%;
    right: -70%;
    background: radial-gradient(ellipse at center, transparent 40%, var(--blue-accent) 60%, transparent 70%);
    animation-delay: -5s;
    animation-duration: 25s;
}

.wave:nth-child(3) {
    bottom: -60%;
    left: -30%;
    background: radial-gradient(ellipse at center, transparent 40%, var(--purple-soft) 60%, transparent 70%);
    animation-delay: -10s;
    animation-duration: 30s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(2%, 3%) rotate(5deg); }
    50% { transform: translate(-1%, 5%) rotate(-3deg); }
    75% { transform: translate(3%, 2%) rotate(3deg); }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    position: relative;
}

.logo-container {
    max-width: 320px;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out;
}

.logo-container img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(74, 25, 66, 0.2));
}

.hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--purple-soft);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: var(--purple-deep);
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-location svg {
    width: 20px;
    height: 20px;
    fill: var(--pink-dress);
}

.scroll-hint {
    position: absolute;
    bottom: 2rem;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-hint svg {
    width: 30px;
    height: 30px;
    stroke: var(--purple-soft);
}

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

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

/* Section Styling */
section {
    padding: 4rem 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Pinyon Script', cursive;
    font-size: 3rem;
    color: var(--purple-deep);
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--purple-soft);
    text-align: center;
    margin-bottom: 3rem;
    font-style: italic;
}

/* About Section */
.about {
    background: linear-gradient(135deg, var(--cream) 0%, var(--lavender-bg) 100%);
    border-radius: 30px;
    margin: 2rem 1rem;
    padding: 3rem 2rem;
    box-shadow: 0 20px 60px rgba(74, 25, 66, 0.08);
}

.about-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    text-align: center;
    color: var(--text-dark);
    max-width: 600px;
    margin: 0 auto;
}

.founder-name {
    font-family: 'Pinyon Script', cursive;
    font-size: 2rem;
    color: var(--pink-dress);
    display: block;
    margin-top: 1.5rem;
}

/* Services Section */
.services {
    padding-top: 2rem;
}

.pricing-grid {
    display: grid;
    gap: 1.5rem;
}

.pricing-card {
    background: var(--cream);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(74, 25, 66, 0.06);
    border: 1px solid rgba(212, 100, 138, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--pink-light), var(--pink-dress), var(--purple-soft));
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(74, 25, 66, 0.12);
}

.pricing-card.featured {
    border: 2px solid var(--pink-dress);
    background: linear-gradient(135deg, var(--cream) 0%, #FFF5F7 100%);
}

.pricing-card.featured::before {
    height: 6px;
}

.card-emoji {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--purple-deep);
    margin-bottom: 0.5rem;
}

.card-examples {
    font-size: 0.9rem;
    color: var(--purple-soft);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px dashed rgba(74, 25, 66, 0.1);
}

.price-row:last-of-type {
    border-bottom: none;
}

.price-label {
    font-size: 0.9rem;
    color: var(--text-dark);
}

.price-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--pink-dress);
}

.card-meta {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(74, 25, 66, 0.1);
    font-size: 0.85rem;
    color: var(--purple-soft);
}

.card-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Other Services */
.other-services {
    margin-top: 3rem;
}

.service-list {
    background: var(--cream);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(74, 25, 66, 0.06);
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px dashed rgba(74, 25, 66, 0.1);
}

.service-item:last-child {
    border-bottom: none;
}

.service-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.service-price {
    font-weight: 600;
    color: var(--pink-dress);
    text-align: right;
}

.hd {
    display: block;
    font-size: 0.85em;
    color: var(--purple-soft);
    font-weight: 500;
}

/* Policies */
.policies {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--purple-deep) 0%, #5B2B52 100%);
    border-radius: 24px;
    color: var(--cream);
}

.policies h3 {
    font-family: 'Pinyon Script', cursive;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.policy-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.policy-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: var(--pink-dress);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

/* Gallery Placeholder */
.gallery {
    background: var(--cream);
    margin: 2rem 1rem;
    border-radius: 30px;
    padding: 3rem 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.gallery-item {
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--lavender-bg) 0%, var(--pink-light) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(74, 25, 66, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(74, 25, 66, 0.15);
}

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

/* Contact Section */
.contact {
    text-align: center;
    padding-bottom: 6rem;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    text-decoration: none;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.contact-note {
    margin-top: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--purple-soft);
}

/* Footer */
footer {
    background: var(--purple-deep);
    color: var(--cream);
    text-align: center;
    padding: 2rem;
}

footer p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    opacity: 0.8;
}

footer .footer-tagline {
    font-family: 'Pinyon Script', cursive;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    opacity: 1;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    animation: pulse 2s ease-in-out infinite;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 5px 30px rgba(37, 211, 102, 0.6); }
}

/* Responsive */
@media (min-width: 600px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

@media (min-width: 900px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-tagline {
        font-size: 1.5rem;
    }

    .logo-container {
        max-width: 400px;
    }
}