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

:root {
    --primary-purple: #9b59b6;
    --primary-pink: #ff6b9d;
    --primary-coral: #ff8c66;
    --primary-teal: #4ecdc4;
    --primary-yellow: #ffd93d;
    --soft-lavender: #f4ebff;
    --soft-pink: #fff0f5;
    --soft-blue: #e8f8f7;
    --accent-white: #ffffff;
    --text-dark: #2d3436;
    --text-light: #636e72;
    --shadow: rgba(155, 89, 182, 0.15);
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--accent-white);
    position: relative;
}

/* Decorative Flowers */
.flower {
    position: absolute;
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
}

.flower-1 {
    width: 60px;
    height: 60px;
    top: 10%;
    left: 5%;
    animation: float 6s ease-in-out infinite;
}

.flower-2 {
    width: 50px;
    height: 50px;
    top: 20%;
    right: 8%;
    animation: float 7s ease-in-out infinite 1s;
}

.flower-3 {
    width: 70px;
    height: 70px;
    top: 60%;
    left: 3%;
    animation: float 8s ease-in-out infinite 2s;
}

.flower-4 {
    width: 55px;
    height: 55px;
    top: 75%;
    right: 5%;
    animation: float 6.5s ease-in-out infinite 1.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

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

/* Header Styles */
header {
    background: var(--gradient-1);
    color: var(--accent-white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px var(--shadow);
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 80"><g opacity="0.15"><circle cx="100" cy="40" r="15" fill="%23ffd93d"/><circle cx="85" cy="30" r="8" fill="%23ff6b9d"/><circle cx="115" cy="30" r="8" fill="%23ff6b9d"/><circle cx="85" cy="50" r="8" fill="%23ff6b9d"/><circle cx="115" cy="50" r="8" fill="%23ff6b9d"/><circle cx="100" cy="22" r="8" fill="%23ff6b9d"/><circle cx="300" cy="50" r="12" fill="%23ff8c66"/><circle cx="288" cy="42" r="7" fill="%234ecdc4"/><circle cx="312" cy="42" r="7" fill="%234ecdc4"/><circle cx="288" cy="58" r="7" fill="%234ecdc4"/><circle cx="312" cy="58" r="7" fill="%234ecdc4"/><circle cx="500" cy="35" r="14" fill="%239b59b6"/><circle cx="487" cy="26" r="8" fill="%23ffd93d"/><circle cx="513" cy="26" r="8" fill="%23ffd93d"/><circle cx="487" cy="44" r="8" fill="%23ffd93d"/><circle cx="513" cy="44" r="8" fill="%23ffd93d"/><circle cx="500" cy="18" r="8" fill="%23ffd93d"/><circle cx="700" cy="45" r="13" fill="%23ff6b9d"/><circle cx="688" cy="36" r="7" fill="%234ecdc4"/><circle cx="712" cy="36" r="7" fill="%234ecdc4"/><circle cx="688" cy="54" r="7" fill="%234ecdc4"/><circle cx="712" cy="54" r="7" fill="%234ecdc4"/><circle cx="900" cy="30" r="12" fill="%234ecdc4"/><circle cx="888" cy="22" r="7" fill="%23ff6b9d"/><circle cx="912" cy="22" r="7" fill="%23ff6b9d"/><circle cx="888" cy="38" r="7" fill="%23ff6b9d"/><circle cx="912" cy="38" r="7" fill="%23ff6b9d"/><circle cx="1100" cy="50" r="14" fill="%23ffd93d"/><circle cx="1087" cy="41" r="8" fill="%23ff8c66"/><circle cx="1113" cy="41" r="8" fill="%23ff8c66"/><circle cx="1087" cy="59" r="8" fill="%23ff8c66"/><circle cx="1113" cy="59" r="8" fill="%23ff8c66"/></g></svg>');
    background-repeat: repeat-x;
    background-position: center;
    background-size: auto 100%;
    pointer-events: none;
    z-index: 0;
}

header .container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-yellow);
    font-style: italic;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.logo .tagline {
    font-size: 0.9rem;
    color: var(--accent-white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: -5px;
}

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

nav a {
    color: var(--accent-white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--primary-yellow);
}

.cta-button {
    background-color: var(--primary-pink);
    color: var(--accent-white) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.cta-button:hover {
    background-color: var(--primary-coral);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.5);
}

/* Hero Section */
.hero {
    background: var(--gradient-2);
    color: var(--accent-white);
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><g opacity="0.15"><path d="M 150 100 m -25,0 a 25,25 0 1,0 50,0 a 25,25 0 1,0 -50,0" fill="%23ffd93d"/><path d="M 120 120 m -15,0 a 15,15 0 1,0 30,0 a 15,15 0 1,0 -30,0" fill="%23ff6b9d"/><path d="M 180 120 m -15,0 a 15,15 0 1,0 30,0 a 15,15 0 1,0 -30,0" fill="%23ff6b9d"/><path d="M 120 80 m -15,0 a 15,15 0 1,0 30,0 a 15,15 0 1,0 -30,0" fill="%23ff6b9d"/><path d="M 180 80 m -15,0 a 15,15 0 1,0 30,0 a 15,15 0 1,0 -30,0" fill="%23ff6b9d"/><path d="M 150 140 m -15,0 a 15,15 0 1,0 30,0 a 15,15 0 1,0 -30,0" fill="%23ff6b9d"/><line x1="150" y1="140" x2="150" y2="200" stroke="%234ecdc4" stroke-width="3"/><path d="M 1000 450 m -30,0 a 30,30 0 1,0 60,0 a 30,30 0 1,0 -60,0" fill="%23ff8c66"/><path d="M 970 480 m -18,0 a 18,18 0 1,0 36,0 a 18,18 0 1,0 -36,0" fill="%239b59b6"/><path d="M 1030 480 m -18,0 a 18,18 0 1,0 36,0 a 18,18 0 1,0 -36,0" fill="%239b59b6"/><path d="M 970 420 m -18,0 a 18,18 0 1,0 36,0 a 18,18 0 1,0 -36,0" fill="%239b59b6"/><path d="M 1030 420 m -18,0 a 18,18 0 1,0 36,0 a 18,18 0 1,0 -36,0" fill="%239b59b6"/><line x1="1000" y1="510" x2="1000" y2="580" stroke="%234ecdc4" stroke-width="4"/></g><path d="M0,400 Q300,350 600,400 T1200,400 L1200,600 L0,600 Z" fill="rgba(255,255,255,0.1)"/></svg>') no-repeat center;
    background-size: cover;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--accent-white);
    font-weight: 600;
    font-style: italic;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--accent-white);
    font-weight: 500;
}

.button-primary {
    display: inline-block;
    background-color: var(--accent-white);
    color: var(--primary-purple);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.3);
}

.button-primary:hover {
    background-color: var(--primary-yellow);
    color: var(--text-dark);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 217, 61, 0.5);
}

/* About Section */
.about {
    padding: 5rem 2rem;
    background: linear-gradient(to bottom, var(--soft-lavender) 0%, var(--soft-pink) 100%);
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-purple);
    text-shadow: 1px 1px 2px rgba(155, 89, 182, 0.1);
    position: relative;
    z-index: 1;
}

.about h2::before,
.about h2::after {
    content: '✿';
    font-size: 1.5rem;
    color: var(--primary-pink);
    margin: 0 1rem;
    opacity: 0.7;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.highlight {
    font-size: 1.3rem !important;
    font-weight: 500;
    color: var(--text-dark);
    border-left: 5px solid var(--primary-pink);
    padding-left: 1.5rem;
    margin-bottom: 2.5rem !important;
    background: linear-gradient(to right, rgba(255, 107, 157, 0.1), transparent);
    padding: 1rem 1.5rem;
    border-radius: 0 10px 10px 0;
}

.story {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 240, 245, 0.9));
    padding: 2rem;
    border-radius: 20px;
    margin-top: 3rem;
    box-shadow: 0 8px 30px var(--shadow);
    border: 3px solid var(--primary-teal);
}

.story h3 {
    color: var(--primary-teal);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Services Section */
.services {
    padding: 5rem 2rem;
    background: linear-gradient(to bottom, var(--soft-pink) 0%, var(--soft-blue) 100%);
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-purple);
    text-shadow: 1px 1px 2px rgba(155, 89, 182, 0.1);
    position: relative;
    z-index: 1;
}

.services h2::before,
.services h2::after {
    content: '❀';
    font-size: 1.5rem;
    color: var(--primary-teal);
    margin: 0 1rem;
    opacity: 0.7;
}

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

.service-card {
    background: var(--accent-white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    box-shadow: 0 5px 20px rgba(155, 89, 182, 0.1);
    position: relative;
}

.card-flower {
    margin-bottom: 1rem;
    opacity: 0.8;
    transition: transform 0.3s ease;
}

.service-card:hover .card-flower {
    transform: rotate(15deg) scale(1.1);
}

.service-card:nth-child(1) {
    border-color: var(--primary-pink);
}

.service-card:nth-child(2) {
    border-color: var(--primary-teal);
}

.service-card:nth-child(3) {
    border-color: var(--primary-coral);
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px var(--shadow);
}

.service-card h3 {
    color: var(--primary-purple);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card:nth-child(1) h3 {
    color: var(--primary-pink);
}

.service-card:nth-child(2) h3 {
    color: var(--primary-teal);
}

.service-card:nth-child(3) h3 {
    color: var(--primary-coral);
}

.service-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 5rem 2rem;
    background: var(--gradient-3);
    color: var(--accent-white);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent);
    border-radius: 50%;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.contact h2::before,
.contact h2::after {
    content: '✾';
    font-size: 1.5rem;
    color: var(--primary-yellow);
    margin: 0 1rem;
    opacity: 0.9;
}

.contact-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.contact-item h3 {
    color: var(--primary-yellow);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-item a {
    color: var(--accent-white);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--primary-yellow);
    text-decoration: underline;
}

/* Footer */
footer {
    background: var(--gradient-1);
    color: var(--accent-white);
    text-align: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-image:
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 20"><g opacity="0.3"><circle cx="50" cy="10" r="8" fill="%23ffd93d"/><circle cx="42" cy="6" r="4" fill="%23ff6b9d"/><circle cx="58" cy="6" r="4" fill="%23ff6b9d"/><circle cx="42" cy="14" r="4" fill="%23ff6b9d"/><circle cx="58" cy="14" r="4" fill="%23ff6b9d"/><circle cx="150" cy="10" r="7" fill="%234ecdc4"/><circle cx="143" cy="6" r="4" fill="%23ff8c66"/><circle cx="157" cy="6" r="4" fill="%23ff8c66"/><circle cx="143" cy="14" r="4" fill="%23ff8c66"/><circle cx="157" cy="14" r="4" fill="%23ff8c66"/><circle cx="250" cy="10" r="8" fill="%23ff6b9d"/><circle cx="242" cy="6" r="4" fill="%234ecdc4"/><circle cx="258" cy="6" r="4" fill="%234ecdc4"/><circle cx="242" cy="14" r="4" fill="%234ecdc4"/><circle cx="258" cy="14" r="4" fill="%234ecdc4"/></g></svg>');
    background-repeat: repeat-x;
    background-position: top center;
    background-size: auto 20px;
    pointer-events: none;
    z-index: 0;
}

footer .container {
    position: relative;
    z-index: 1;
}

footer p {
    margin: 0.5rem 0;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 1rem;
    }

    nav {
        flex-direction: column;
        gap: 1rem;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .about h2,
    .services h2,
    .contact h2 {
        font-size: 2rem;
    }

    .about h2::before,
    .about h2::after,
    .services h2::before,
    .services h2::after,
    .contact h2::before,
    .contact h2::after {
        font-size: 1.2rem;
        margin: 0 0.5rem;
    }

    .highlight {
        font-size: 1.1rem !important;
    }

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

    .contact-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .flower {
        opacity: 0.4;
    }

    .flower-1,
    .flower-3 {
        width: 40px;
        height: 40px;
    }

    .flower-2,
    .flower-4 {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 4rem 1rem;
    }

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

    .about,
    .services,
    .contact {
        padding: 3rem 1rem;
    }

    .button-primary {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}
