:root {
    /* Color Palette */
    --color-teal: #7dd3db;
    --color-pink: #ff6b9e;
    --color-yellow: #fadd52;
    --color-orange: #fe9836;
    --color-bg: #f2fcfc;
    --color-text: #2c3e50;
    --color-white: #ffffff;
    
    /* Gradients */
    --gradient-bg: linear-gradient(135deg, #e0faff 0%, #fff0f5 50%, #fffce0 100%);
    --gradient-primary: linear-gradient(135deg, #ff6b9e 0%, #fe9836 100%);
    
    /* Shadows & Effects */
    --shadow-soft: 0 10px 30px rgba(0,0,0,0.05);
    --shadow-glow-pink: 0 10px 25px rgba(255, 107, 158, 0.4);
    --border-radius: 24px;
}

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

body {
    font-family: 'Fredoka', 'Nunito', sans-serif;
    color: var(--color-text);
    background: var(--gradient-bg);
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

/* Background Animated Blobs */
#blob-bg {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(125, 211, 219, 0.2), transparent 40%),
                radial-gradient(circle at 30% 70%, rgba(255, 107, 158, 0.2), transparent 40%),
                radial-gradient(circle at 70% 30%, rgba(250, 221, 82, 0.2), transparent 40%);
    z-index: -1;
    animation: rotate 60s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Typography */
h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: var(--color-text);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

p {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #4a5d70;
}

/* Utilities */
.glass-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.btn-primary {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--color-white);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-glow-pink);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-primary:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 15px 35px rgba(255, 107, 158, 0.6);
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 1.25rem;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-pink);
}

.navbar ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.navbar a {
    text-decoration: none;
    color: var(--color-text);
    font-weight: 600;
    transition: color 0.3s ease;
}

.navbar a:hover {
    color: var(--color-pink);
}

.navbar a.nav-btn {
    color: var(--color-white);
}

/* Layout Elements */
main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

section {
    padding: 6rem 0;
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 80vh;
}

.tagline {
    display: inline-block;
    background: var(--color-yellow);
    color: #8c7300;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-image {
    position: relative;
    width: 100%;
}

.image-wrapper {
    padding: 1rem;
    background: var(--color-white);
    border-radius: 36px;
    transform: rotate(2deg);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    display: block;
}

/* Floaty Elements */
.floaty {
    position: absolute;
    font-size: 3rem;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(8px);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: var(--shadow-soft);
}

.float-1 { top: -20px; left: -20px; animation: bounce 3s ease-in-out infinite alternate; }
.float-2 { bottom: 40px; right: -30px; animation: bounce 4s ease-in-out infinite alternate-reverse; }
.float-3 { bottom: -20px; left: 40px; animation: bounce 3.5s ease-in-out infinite alternate; }

@keyframes bounce {
    0% { transform: translateY(0); }
    100% { transform: translateY(-20px); }
}

/* Services */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem auto;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.service-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card .icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.card-pink { border-top: 5px solid var(--color-pink); }
.card-teal { border-top: 5px solid var(--color-teal); }

.image-card {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    padding: 0;
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.image-card:hover img {
    transform: scale(1.05);
}

/* Community Section */
.community-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.community-image .image-wrapper {
    transform: rotate(-2deg);
}

.benefit-list {
    list-style: none;
    margin-bottom: 2rem;
}

.benefit-list li {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding-top: 2rem;
}

.cta-card {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255,255,255,0.8) 0%, rgba(125, 211, 219, 0.4) 100%);
    border: 2px solid var(--color-white);
}

.contact-form {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.contact-form input {
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 50px;
    font-family: 'Fredoka', sans-serif;
    font-size: 1rem;
    background: rgba(255,255,255,0.9);
    outline: none;
    min-width: 250px;
    transition: border-color 0.3s ease;
}

.contact-form input:focus {
    border-color: var(--color-pink);
}

/* Footer */
footer {
    background: white;
    padding: 3rem 5%;
    text-align: center;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content .logo {
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-image {
        order: 2;
        max-width: 600px;
        margin: 0 auto;
    }

    .service-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .community-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .benefit-list li {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .navbar ul {
        display: none; /* simple hidden for mobile mockup */
    }
}
