/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    color: #243b35;
    background: #ffffff;
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

button {
    cursor: pointer;
}


/* =========================================
   VARIABLE
========================================= */

:root {
    --primary: #5d8f7d;
    --primary-dark: #3f705f;
    --secondary: #e8f2ee;
    --cream: #f8f6ef;
    --text: #243b35;
    --text-light: #687a74;
    --white: #ffffff;
    --border: #dce8e2;
    --shadow: 0 15px 40px rgba(40, 75, 65, 0.08);
}


/* =========================================
   GLOBAL
========================================= */

.container {
    width: min(1150px, 92%);
    margin: auto;
}

.section {
    padding: 100px 0;
}

.section-light {
    background: #f6faf8;
}

.section-heading {
    max-width: 700px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-label {
    display: inline-block;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-heading h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 15px;
}

.section-heading h2 span,
.hero h1 span,
.contact-info h2 span {
    color: var(--primary);
}

.section-heading p {
    color: var(--text-light);
}


/* =========================================
   BUTTON
========================================= */

.btn {
    border: none;
    padding: 13px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
    display: inline-block;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-dark);
    border: 1px solid var(--primary);
}

.btn-outline:hover {
    background: var(--secondary);
}

.btn-white {
    background: white;
    color: var(--primary-dark);
}

.btn-white:hover {
    transform: translateY(-2px);
}

.full {
    width: 100%;
}


/* =========================================
   NAVBAR
========================================= */

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid #edf2ef;
    backdrop-filter: blur(10px);
}

.nav-container {
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
}

.logo span:last-child span {
    color: var(--primary);
}

.logo-icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    color: var(--primary);
    border-radius: 50%;
}

nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    color: #50645e;
    font-size: 14px;
    transition: 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-button {
    padding: 10px 20px;
}

.menu-toggle {
    display: none;
    border: none;
    background: none;
    font-size: 26px;
}


/* =========================================
   HERO
========================================= */

.hero {
    background:
        linear-gradient(
            120deg,
            #f1f8f5,
            #ffffff
        );
    padding: 90px 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 60px;
}

.badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--primary-dark);
    padding: 7px 15px;
    border-radius: 50px;
    font-size: 13px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.15;
    margin-bottom: 25px;
}

.hero-content > p {
    color: var(--text-light);
    max-width: 620px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-stat {
    display: flex;
    gap: 40px;
    margin-top: 45px;
}

.hero-stat div {
    display: flex;
    flex-direction: column;
}

.hero-stat strong {
    font-size: 22px;
    color: var(--primary-dark);
}

.hero-stat span {
    font-size: 12px;
    color: var(--text-light);
}

.hero-image {
    min-height: 450px;
    background: linear-gradient(
        145deg,
        #d9ece3,
        #edf6f2
    );
    border-radius: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card {
    width: 75%;
    padding: 45px 35px;
    text-align: center;
    background: white;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.hero-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--secondary);
    color: var(--primary);
    font-size: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.hero-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.hero-card p {
    color: var(--text-light);
    margin-bottom: 25px;
}


/* =========================================
   ABOUT
========================================= */

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.about-card {
    padding: 35px;
    border: 1px solid var(--border);
    border-radius: 20px;
    transition: 0.3s;
}

.about-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
}

.icon {
    font-size: 35px;
    margin-bottom: 20px;
}

.about-card h3 {
    margin-bottom: 10px;
}

.about-card p {
    color: var(--text-light);
}


/* =========================================
   SERVICES
========================================= */

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
}

.service-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    border-radius: 15px;
    font-size: 25px;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 10px;
}

.service-card p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 20px;
}

.service-card button,
.article-content button {
    background: none;
    border: none;
    color: var(--primary-dark);
    font-weight: 700;
}


/* =========================================
   PRICING
========================================= */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.pricing-card {
    position: relative;
    border: 1px solid var(--border);
    border-radius: 25px;
    padding: 35px;
    background: white;
}

.pricing-card.popular {
    border: 2px solid var(--primary);
    transform: scale(1.03);
    box-shadow: var(--shadow);
}

.popular-label {
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--primary);
    color: white;
    padding: 5px 10px;
    border-radius: 30px;
    font-size: 10px;
    font-weight: 700;
}

.pricing-description {
    color: var(--text-light);
    font-size: 14px;
}

.price {
    font-size: 30px;
    font-weight: 700;
    margin: 25px 0;
    color: var(--primary-dark);
}

.price small {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 400;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-card li {
    margin: 10px 0;
    font-size: 14px;
}


/* =========================================
   COUNSELOR
========================================= */

.counselor-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.counselor-card {
    text-align: center;
    background: white;
    padding: 35px 25px;
    border-radius: 25px;
    box-shadow: var(--shadow);
}

.counselor-photo {
    width: 120px;
    height: 120px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    border-radius: 50%;
    font-size: 55px;
    margin-bottom: 20px;
}

.counselor-card p {
    color: var(--primary);
    font-weight: 600;
}

.counselor-card span {
    display: block;
    color: var(--text-light);
    font-size: 13px;
    margin-bottom: 20px;
}

.counselor-card button {
    border: none;
    background: var(--secondary);
    color: var(--primary-dark);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
}


/* =========================================
   ARTICLE
========================================= */

.article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.article-card {
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    background: white;
}

.article-image {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    font-size: 60px;
}

.article-content {
    padding: 25px;
}

.article-content > span {
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
}

.article-content h3 {
    margin: 10px 0;
}

.article-content p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
}


/* =========================================
   TESTIMONIAL
========================================= */

.testimonial-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.testimonial {
    max-width: 650px;
    text-align: center;
}

.stars {
    color: #e6b84c;
    font-size: 22px;
    margin-bottom: 20px;
}

.testimonial p {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial h4 {
    color: var(--primary);
}

.slider-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: white;
    color: var(--primary);
}


/* =========================================
   FAQ
========================================= */

.faq-container {
    max-width: 800px;
    margin: auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    border: none;
    background: white;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    text-align: left;
}

.faq-answer {
    display: none;
    padding-bottom: 20px;
}

.faq-answer p {
    color: var(--text-light);
}

.faq-item.open .faq-answer {
    display: block;
}

.faq-item.open .faq-question span {
    transform: rotate(45deg);
}


/* =========================================
   CONTACT
========================================= */

.contact-section {
    background: var(--secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 42px;
    line-height: 1.3;
    margin: 15px 0;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item > div {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item p {
    color: var(--text-light);
    font-size: 14px;
}

.contact-form {
    background: white;
    padding: 35px;
    border-radius: 25px;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 7px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    border: 1px solid var(--border);
    padding: 13px 15px;
    border-radius: 12px;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
}


/* =========================================
   CTA
========================================= */

.cta {
    padding: 80px 20px;
    text-align: center;
    background: var(--primary);
    color: white;
}

.cta h2 {
    font-size: 35px;
    margin-bottom: 10px;
}

.cta p {
    margin-bottom: 25px;
    opacity: 0.9;
}


/* =========================================
   FOOTER
========================================= */

footer {
    background: #20352f;
    color: white;
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
}

.footer-logo {
    color: white;
    margin-bottom: 15px;
}

.footer-grid p {
    color: #b9c9c3;
    font-size: 13px;
}

.footer-grid h4 {
    margin-bottom: 15px;
}

.footer-grid > div > a:not(.logo) {
    display: block;
    color: #b9c9c3;
    font-size: 13px;
    margin: 8px 0;
}

.footer-grid > div > a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px;
    text-align: center;
}


/* =========================================
   WHATSAPP
========================================= */

.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    background: #25D366;
    color: white;
    font-size: 28px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    z-index: 999;
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1000px) {

    nav {
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        background: white;
        display: none;
        flex-direction: column;
        padding: 25px;
        box-shadow: var(--shadow);
    }

    nav.show {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .nav-button {
        display: none;
    }

    .hero-container {
        grid-template-columns: 1fr;
    }

    .about-grid,
    .service-grid,
    .pricing-grid,
    .counselor-grid,
    .article-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 650px) {

    .section {
        padding: 70px 0;
    }

    .section-heading h2 {
        font-size: 30px;
    }

    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero-stat {
        gap: 20px;
    }

    .hero-image {
        min-height: 350px;
    }

    .hero-card {
        width: 85%;
    }

    .about-grid,
    .service-grid,
    .pricing-grid,
    .counselor-grid,
    .article-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.popular {
        transform: none;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .contact-info h2 {
        font-size: 32px;
    }

    .cta h2 {
        font-size: 28px;
    }
}