/* Premium Joyful Design for Site 3 */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800;900&display=swap');

:root {
    --primary: #FF6B6B;
    --secondary: #4ECDC4;
    --yellow: #FFE66D;
    --dark: #292F36;
    --white: #FFFFFF;
    --light-bg: #F7FFF7;
    --transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

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

a { text-decoration: none; color: inherit; transition: var(--transition); }

/* Navigation */
.navbar {
    position: fixed; top: 0; width: 100%;
    padding: 20px 5%;
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(247, 255, 247, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0,0,0,0.03);
}

.brand { font-size: 1.8rem; font-weight: 900; color: var(--primary); letter-spacing: -1px; }
.brand span { color: var(--secondary); }

.nav-links { display: flex; gap: 30px; list-style: none; }
.nav-links a { font-weight: 600; color: var(--dark); font-size: 1.1rem; }
.nav-links a:hover { color: var(--primary); }

.nav-cta {
    background: var(--primary); color: var(--white);
    padding: 12px 25px; border-radius: 30px;
    font-weight: 800; font-size: 1rem;
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
}
.nav-cta:hover { transform: translateY(-3px); box-shadow: 0 15px 25px rgba(255, 107, 107, 0.4); }

/* Hamburger */
.hamburger {
    display: none; background: none; border: none;
    cursor: pointer; padding: 10px; z-index: 1001;
}
.hamburger div {
    width: 30px; height: 3px; background: var(--dark);
    margin: 6px 0; border-radius: 3px; transition: 0.4s;
}
.hamburger.is-active .line1 { transform: rotate(-45deg) translate(-6px, 6px); }
.hamburger.is-active .line2 { opacity: 0; }
.hamburger.is-active .line3 { transform: rotate(45deg) translate(-7px, -7px); }

/* Mobile Nav */
.mobile-nav {
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100vh;
    background: var(--white);
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    transform: translateY(-100%);
    transition: transform 0.5s ease;
    z-index: 999;
}
.mobile-nav.is-active { transform: translateY(0); }
.mobile-nav a { font-size: 2rem; font-weight: 800; margin: 15px 0; color: var(--dark); }
.mobile-nav a:hover { color: var(--primary); }

/* Hero */
.hero {
    min-height: 100vh;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    text-align: center; padding: 120px 5% 80px;
    background: linear-gradient(135deg, rgba(255,107,107,0.1) 0%, rgba(78,205,196,0.1) 100%);
    position: relative; overflow: hidden;
}
.hero::before, .hero::after {
    content: ''; position: absolute; border-radius: 50%; z-index: -1;
}
.hero::before {
    width: 400px; height: 400px; background: var(--yellow);
    top: -100px; left: -100px; filter: blur(80px); opacity: 0.3;
}
.hero::after {
    width: 500px; height: 500px; background: var(--secondary);
    bottom: -150px; right: -150px; filter: blur(100px); opacity: 0.3;
}

.hero-title { font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 900; line-height: 1.1; margin-bottom: 20px; color: var(--dark); max-width: 1000px; }
.hero-desc { font-size: 1.3rem; color: #555; max-width: 700px; margin-bottom: 40px; font-weight: 400; }
.hero-btns { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }

.btn-main { background: var(--primary); color: white; padding: 18px 40px; border-radius: 40px; font-weight: 800; font-size: 1.1rem; box-shadow: 0 10px 25px rgba(255,107,107,0.4); }
.btn-main:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(255,107,107,0.6); }

.btn-alt { background: var(--white); color: var(--dark); padding: 18px 40px; border-radius: 40px; font-weight: 800; font-size: 1.1rem; box-shadow: 0 10px 25px rgba(0,0,0,0.05); }
.btn-alt:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); color: var(--secondary); }

/* Services Grid */
.section { padding: 100px 5%; max-width: 1400px; margin: 0 auto; }
.section-title { text-align: center; font-size: 3rem; font-weight: 900; margin-bottom: 60px; color: var(--dark); }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }

.card {
    background: var(--white); padding: 50px 40px;
    border-radius: 30px; text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.04);
    transition: var(--transition);
    border: 2px solid transparent;
}
.card:hover { transform: translateY(-15px); border-color: var(--secondary); box-shadow: 0 30px 60px rgba(78,205,196,0.15); }
.card h3 { font-size: 1.8rem; font-weight: 800; margin-bottom: 15px; color: var(--dark); }
.card p { color: #666; font-size: 1.1rem; }

/* Contact */
.contact-box {
    background: var(--dark); color: var(--white);
    padding: 80px 50px; border-radius: 40px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 50px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}
.contact-box h3 { font-size: 2.5rem; font-weight: 900; margin-bottom: 20px; color: var(--yellow); }
.contact-box p { font-size: 1.2rem; margin-bottom: 20px; color: #ddd; }
.contact-box strong { color: var(--white); }

/* Footer */
footer {
    background: var(--white); padding: 80px 5% 40px;
    border-top: 1px solid rgba(0,0,0,0.05);
}
.footer-wrap { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 50px; }
.footer-wrap h4 { font-size: 1.2rem; font-weight: 800; margin-bottom: 25px; color: var(--dark); }
.footer-wrap ul { list-style: none; }
.footer-wrap ul li { margin-bottom: 15px; }
.footer-wrap ul li a { color: #666; font-weight: 600; }
.footer-wrap ul li a:hover { color: var(--primary); }
.copyright { text-align: center; margin-top: 80px; padding-top: 30px; border-top: 1px solid #eee; color: #888; font-weight: 600; }

/* WhatsApp Float */
.wp-btn {
    position: fixed; bottom: 30px; right: 30px;
    background: #25D366; color: white; width: 65px; height: 65px;
    border-radius: 50%; display: flex; justify-content: center; align-items: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4); z-index: 1000; transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.wp-btn:hover { transform: scale(1.15) rotate(5deg); }
.wp-btn svg { width: 35px; height: 35px; fill: currentColor; }

/* Responsive */
@media (max-width: 992px) {
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: block; }
    .hero { padding: 150px 5% 80px; }
    .hero-title { font-size: 3rem; }
    .contact-box { grid-template-columns: 1fr; padding: 40px; }
}
