@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Mr+Dafoe&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Moulpali&family=Mr+Dafoe&display=swap');

:root {
    --primary: #ff4fa1;
    --primary-dark: #e63d8e;
    --primary-soft: #ffe1f0;
    --mint: #effaf5;
    --mint-strong: #e7f7f0;
    --dark: #171717;
    --text: #4b4b4b;
    --muted: #747474;
    --white: #ffffff;
    --shadow: 0 24px 70px rgba(255, 79, 161, .18);
    --shadow-dark: 0 20px 50px rgba(20, 20, 20, .12);
    --radius: 28px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark);
    background: #fff;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

.container {
    width: min(1180px, 92%);
    margin-inline: auto;
}

.section {
    padding: 110px 0;
}

.section-bg-soft {
    background:
        radial-gradient(circle at 12% 20%, rgba(255, 79, 161, .12), transparent 28%),
        radial-gradient(circle at 88% 8%, rgba(255, 202, 226, .45), transparent 30%),
        var(--mint);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    background: rgba(255, 255, 255, .84);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.navbar {
    width: min(1180px, 92%);
    height: 82px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    text-decoration: none;
    line-height: .9;
    display: flex;
    flex-direction: column;
    align-items: start;
}

.brand img {
    width: 35%;
}

.brand-script {
    font-family: 'Pacifico', cursive;
    color: var(--primary);
    font-size: 2.15rem;
    letter-spacing: .5px;
}

.brand-small {
    font-size: .58rem;
    letter-spacing: 3px;
    font-weight: 800;
    color: #777;
}

.nav-links {
    display: flex;
    gap: 34px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    font-weight: 700;
    color: #222;
    position: relative;
    transition: .25s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 3px;
    border-radius: 10px;
    background: var(--primary);
    transition: .25s ease;
}

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

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: var(--primary-soft);
    border-radius: 12px;
    padding: 10px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 2px;
    background: var(--primary);
    margin: 5px 0;
    border-radius: 8px;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 90px;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.04fr .96fr;
    align-items: center;
    gap: 70px;
    position: relative;
    z-index: 2;
}

.hero-shape {
    position: absolute;
    border: 3px solid rgba(255, 79, 161, .28);
    border-radius: 50%;
    width: 580px;
    height: 580px;
    pointer-events: none;
}

.shape-one {
    left: -220px;
    bottom: -260px;
}

.shape-two {
    right: -260px;
    top: 100px;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 800;
    letter-spacing: .03em;
    text-transform: uppercase;
    font-size: .82rem;
    background: rgba(255, 79, 161, .12);
    padding: 10px 16px;
    border-radius: 999px;
    margin-bottom: 22px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 7vw, 6.4rem);
    line-height: .95;
    letter-spacing: -.05em;
    margin-bottom: 26px;
}

.hero h1 span {
    color: var(--primary);
    display: block;
}

.hero p,
.section-copy p,
.section-heading p {
    font-size: 1.06rem;
    line-height: 1.85;
    color: var(--text);
}

.hero p {
    max-width: 610px;
    margin-bottom: 34px;
}

.hero-actions,
.contact-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 26px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 800;
    transition: .25s ease;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 16px 32px rgba(255, 79, 161, .25);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.btn-secondary {
    background: #fff;
    color: var(--primary);
    border: 2px solid rgba(255, 79, 161, .35);
}

.btn-secondary:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 42px;
    max-width: 650px;
}

.hero-stats article {
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 20px;
    padding: 18px;
    box-shadow: 0 16px 35px rgba(0, 0, 0, .05);
    transition: .25s ease;

}

.hero-stats article:hover {
    cursor: pointer;
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(255, 79, 161, .25);

}

.hero-stats strong {
    display: block;
    color: var(--primary);
    font-size: 2rem;
    line-height: 1;
}

.hero-stats span {
    display: block;
    margin-top: 8px;
    font-size: .86rem;
    color: var(--muted);
    font-weight: 600;
}

.hero-visual {
    position: relative;
    min-height: 620px;
}

.hero-main-photo {
    width: 72%;
    margin-left: auto;
    border-radius: 42px;
    overflow: hidden;
    box-shadow: var(--shadow-dark);
    transform: rotate(1.8deg);
}

.hero-main-photo img {
    height: 620px;
    width: 100%;
    object-fit: cover;
}

.floating-card {
    position: absolute;
    background: #fff;
    padding: 3px;
    border-radius: 18px;
    box-shadow: var(--shadow);
    width: 185px;
}

.floating-card img {
    height: 170px;
    width: 100%;
    object-fit: cover;
    border-radius: 18px;
}

.card-top {
    left: 0;
    top: 70px;
    transform: rotate(-5deg);
}

.card-bottom {
    left: 30px;
    bottom: 60px;
    transform: rotate(4deg);
}

.hero-badge {
    position: absolute;
    right: -50px;
    bottom: -50px;
    width: 190px;
    border-radius: 50%;
    color: #fff;
    place-items: center;
    text-align: center;
}

.split-grid,
.academy-layout,
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.image-stack {
    position: relative;
    padding: 22px;
}

.image-stack img {
    position: relative;
    z-index: 2;
    border-radius: 36px;
    height: 540px;
    width: 100%;
    object-fit: cover;
    box-shadow: var(--shadow-dark);
}

.accent-box {
    position: absolute;
    inset: 0;
    background: var(--primary-soft);
    border-radius: 36px;
    transform: rotate(-4deg);
}

.section-copy h2,
.section-heading h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 4.2rem);
    line-height: 1.08;
    letter-spacing: -.035em;
    margin-bottom: 22px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 28px;
}

.benefits-grid span {
    background: var(--mint-strong);
    padding: 16px;
    border-radius: 16px;
    font-weight: 800;
    color: #2a2a2a;
    transition: .25s ease;

}

.benefits-grid span:hover {
    cursor: pointer;
    transform: translateY(-3px);
    box-shadow: 0 4px 13px rgba(255, 79, 161, .15);
}

.section-heading {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 54px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    justify-content: center;
}


.service-card {
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .08);
    transition: .25s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 60px rgba(255, 79, 161, .18);
}

.service-card img {
    height: 400px;
    width: 100%;
    object-fit: cover;
}

.service-card div {
    padding: 24px;
}

.service-card h3 {
    margin-bottom: 10px;
    font-size: 1.15rem;
}

.service-card p {
    color: var(--muted);
    line-height: 1.6;
}

.academy {
    background: #fff;
}

.course-list {
    display: grid;
    gap: 22px;
}

.course-card {
    background: #fff;
    border: 1px solid rgba(255, 79, 161, .18);
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .07);
}

.course-card.featured {
    background: linear-gradient(135deg, #fff, #ffe4f1);
    border-color: rgba(255, 79, 161, .35);
}

.course-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.course-top span {
    color: var(--primary);
    font-weight: 900;
    text-transform: uppercase;
    font-size: .78rem;
}

.course-top strong {
    font-size: 1.7rem;
    line-height: 1;
}

.course-card ul {
    margin: 18px 0 22px 20px;
    color: var(--text);
    line-height: 1.8;
}

.course-card a {
    color: var(--primary);
    font-weight: 900;
}

.gallery-grid {
    columns: 3 260px;
    column-gap: 20px;
}

.gallery-grid img {
    width: 100%;
    margin: 0 0 20px;
    border-radius: 28px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .1);
    break-inside: avoid;
    cursor: pointer;
    transition: .25s ease;
}

.gallery-grid img:hover {
    transform: scale(.985);
    filter: saturate(1.08);
}

.community-slider {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.student-card {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .08);
    text-align: center;
    padding-bottom: 28px;
    border: 1px solid rgba(255, 79, 161, .16);
}

.student-card img {
    height: 320px;
    width: 100%;
    object-fit: cover;
    object-position: top;
}

.student-card h3 {
    font-size: 1rem;
    margin: 20px 14px 6px;
}

.student-card p {
    color: var(--muted);
    font-weight: 700;
    margin-bottom: 8px;
}

.student-card span {
    color: var(--primary);
    font-weight: 900;
}

.contact-card {
    background: #fff;
    padding: 42px;
    border-radius: 34px;
    box-shadow: var(--shadow-dark);
}

.contact-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.7rem);
    line-height: 1.05;
    margin-bottom: 20px;
}

.contact-card p {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 28px;
}

.contact-info {
    display: grid;
    gap: 10px;
    margin-top: 28px;
    color: var(--muted);
    font-weight: 700;
}

.map-card {
    border-radius: 34px;
    overflow: hidden;
    min-height: 600px;
    box-shadow: var(--shadow-dark);
    border: 10px solid #fff;
}

.map-card iframe {
    width: 100%;
    height: 600px;
    border: 0;
}

.footer {
    background: #151515;
    color: #fff;
    padding: 44px 0;
}

.footer-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer-brand .brand-small {
    color: #bbb;
}

.footer p {
    margin-top: 14px;
    color: #bbb;
}

.footer-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-links a {
    text-decoration: none;
    color: #ddd;
    font-weight: 700;
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 100;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 900;
    box-shadow: 0 18px 40px rgba(37, 211, 102, .35);
    transition: .25s ease;
}

.whatsapp-float:hover {
    background: #1ebe5d;
    transform: translateY(-3px);
}

.whatsapp-float i {
    font-size: 2.2rem;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: .12s;
}

.delay-2 {
    transition-delay: .2s;
}

.delay-3 {
    transition-delay: .28s;
}

@media (max-width:1050px) {

    .hero-grid,
    .split-grid,
    .academy-layout,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 560px;
    }

    .services-grid,
    .community-slider {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:760px) {
    .section {
        padding: 78px 0;
    }

    .navbar {
        height: 76px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 76px;
        left: 4%;
        right: 4%;
        background: #fff;
        border-radius: 22px;
        box-shadow: 0 22px 45px rgba(0, 0, 0, .12);
        padding: 24px;
        flex-direction: column;
        align-items: flex-start;
        display: none;
    }

    .nav-links.open {
        display: flex;
    }

    .hero {
        padding-top: 125px;
    }

    .hero-actions,
    .contact-actions {
        display: grid;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: auto;
        display: grid;
        gap: 16px;
    }

    .hero-main-photo,
    .floating-card {
        position: relative;
        width: 100%;
        left: auto;
        top: auto;
        right: auto;
        bottom: auto;
        transform: none;
    }

    .hero-main-photo img {
        height: 420px;
    }

    .floating-card img {
        height: 230px;
    }

    .hero-badge {
        right: 18px;
        bottom: 18px;
        width: 120px;
        height: 120px;
    }

    .benefits-grid,
    .services-grid,
    .community-slider {
        grid-template-columns: 1fr;
    }

    .image-stack img {
        height: 390px;
    }

    .footer-grid {
        flex-direction: column;
        align-items: flex-start;
    }


    .services-grid {
        display: flex;
        overflow-x: auto;
        gap: 16px;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        padding-bottom: 10px;
        scrollbar-width: none;
    }

    .services-grid::-webkit-scrollbar {
        display: none;
    }

    .service-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
        opacity: .5;
    }

    .card-one {
        margin: 0 0 0 1.3rem;
    }

    .course-list {
        display: flex;
        overflow-x: auto;
        gap: 16px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .course-list::-webkit-scrollbar {
        display: none;
    }

    .course-card {
        flex: 0 0 93%;
        scroll-snap-align: center;
    }

    .community-slider {
        display: flex;
        overflow-x: auto;
        gap: 16px;
        overflow-y: hidden;

        scroll-snap-type: x mandatory;
        padding-bottom: 10px;
        scrollbar-width: none;
    }

    .community-slider::-webkit-scrollbar {
        display: none;
    }

    .student-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
    }

    .student-card img {
        height: 380px;
        width: 100%;
        object-fit: cover;
        object-position: top;
    }

    .student-card:first-child {
        margin-left: 1.9rem;
    }



    .gallery-grid {
        display: flex;
        overflow-x: auto;
        gap: 1rem;
        column-gap: 0;
        padding-bottom: 12px;
        scrollbar-width: none;

    }

    .gallery-grid::-webkit-scrollbar {
        display: none;
    }

    .gallery-grid img {
        flex: 0 0 85%;
        margin: 0 2px 0 1.2rem;
        scroll-snap-align: center;
        height: 420px;
        object-fit: cover;
    }

    .map-card {
        min-height: 300px;
    }

    .map-card iframe {
        width: 100%;
        height: 300px;
        border: 0;
    }

    .hero-visual {
        display: none;
    }


}