
/* =========================================================
   COLEGIO CHARLOT
   MAIN STYLES
========================================================= */

/* ---------------------------------------------------------
   VARIABLES
--------------------------------------------------------- */

:root {
    --primary: #195587;
    --primary-dark: #123f65;
    --primary-light: #eaf2f8;

    --pink: #d95f67;
    --orange: #d98a45;
    --yellow: #d9b84a;
    --green: #5d9d78;
    --blue: #3f82b8;
    --teal: #4b9e9b;

    --red: #c33527;
    --red-dark: #a52b20;
    --red-light: #fbeceb;

    --dark: #202b35;
    --dark-soft: #424e58;

    --text: #5f6871;
    --text-light: #858e96;

    --white: #ffffff;
    --background: #f7f9fb;
    --background-soft: #eef3f7;

    --border: #e1e7ec;

    --shadow-sm: 0 8px 25px rgba(25, 85, 135, 0.06);
    --shadow-md: 0 18px 45px rgba(25, 85, 135, 0.10);
    --shadow-lg: 0 30px 70px rgba(25, 85, 135, 0.14);

    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;

    --transition: 0.3s ease;
}


/* ---------------------------------------------------------
   RESET
--------------------------------------------------------- */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: "DM Sans", sans-serif;
    color: var(--text);
    background: var(--background);
    line-height: 1.7;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
    cursor: pointer;
}

ul {
    list-style: none;
}

::selection {
    background: var(--primary);
    color: var(--white);
}


/* ---------------------------------------------------------
   GLOBAL
--------------------------------------------------------- */

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.section {
    padding: 110px 0;
}

.section-light {
    background: var(--white);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-heading {
    margin-bottom: 55px;
}

.section-heading.center {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-heading h2,
.about-content h2,
.philosophy-content h2,
.documents-content h2,
.contact-info h2 {
    font-family: "Nunito", sans-serif;
    color: var(--dark);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.section-heading h2 span,
.about-content h2 span,
.philosophy-content h2 span,
.documents-content h2 span,
.contact-info h2 span,
.festival-header h2 span,
.final-cta h2 span {
    color: var(--red);
}

.section-heading p {
    margin-top: 18px;
    color: var(--text);
    font-size: 1.03rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.92rem;
    transition: var(--transition);
}

.btn-primary {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 10px 25px rgba(195, 53, 39, 0.28);
}

.btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(195, 53, 39, 0.35);
}

.btn-light {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.btn-light:hover {
    background: var(--white);
    color: var(--dark);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}


/* ---------------------------------------------------------
   HEADER
--------------------------------------------------------- */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 78px;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.header.scrolled {
    height: 70px;
    border-color: var(--border);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(15px);
}

.nav-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-placeholder {
    width: 43px;
    height: 43px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    background: var(--red);
    color: var(--white);
    font-size: 1.1rem;
}

.logo {

    display: flex;

    align-items: center;

    gap: 10px;

}

.logo-img {

    width: 52px;

    height: 52px;

    object-fit: contain;

    display: block;

}

.logo-text {

    display: flex;

    flex-direction: column;

    line-height: 1;

}

.logo-text span {

    color: var(--text-light);

    font-size: 0.55rem;

    letter-spacing: 0.18em;

    font-weight: 800;

}

.logo-text strong {

    color: var(--dark);

    font-family: "Nunito", sans-serif;

    font-size: 1.1rem;

    font-weight: 900;

    letter-spacing: 0.03em;

}

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

.nav-link {
    position: relative;
    color: var(--dark-soft);
    font-size: 0.83rem;
    font-weight: 600;
    transition: var(--transition);
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 2px;
    border-radius: 5px;
    background: var(--red);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--red);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 17px;
    border-radius: 100px;
    background: var(--red);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
    transition: var(--transition);
}

.nav-button:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 1.1rem;
}


/* ---------------------------------------------------------
   HERO
--------------------------------------------------------- */

.hero {
    min-height: 760px;
    position: relative;
    display: flex;
    align-items: center;
    background:
        linear-gradient(
            100deg,
            rgba(20, 39, 56, 0.92),
            rgba(25, 85, 135, 0.60)
        ),
        url("https://images.unsplash.com/photo-1580582932707-520aed937b7b?auto=format&fit=crop&w=2000&q=90")
        center / cover;
    color: var(--white);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 70px;
}

.hero-eyebrow {
    color: #d8e7f3;
}

.hero h1 {
    max-width: 780px;
    font-family: "Nunito", sans-serif;
    font-size: clamp(3rem, 7vw, 5.8rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
    font-weight: 900;
}

.hero h1 span {
    display: block;
    color: #f0aaa3;
}

.hero p {
    max-width: 620px;
    margin: 25px 0 32px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.1rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-location {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 35px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.84rem;
}

.scroll-indicator {
    position: absolute;
    z-index: 3;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.scroll-indicator i {
    animation: bounce 1.8s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }
}


/* ---------------------------------------------------------
   FEATURES
--------------------------------------------------------- */

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.feature-card {
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--white);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-7px);
    border-color: transparent;
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    margin-bottom: 22px;
    font-size: 1.15rem;
}

.feature-icon.purple {
    background: var(--primary-light);
    color: var(--primary);
}

.feature-icon.pink {
    background: #fceff0;
    color: var(--red);
}

.feature-icon.orange {
    background: #fdf3e8;
    color: var(--orange);
}

.feature-icon.blue {
    background: #eaf3fa;
    color: var(--primary);
}

.feature-icon.green {
    background: #edf7f1;
    color: var(--green);
}

.feature-icon.yellow {
    background: #fcf8e8;
    color: #b99a20;
}

.feature-icon.red {
    background: var(--red-light);
    color: var(--red);
}

.feature-icon.teal {
    background: #eaf7f6;
    color: var(--teal);
}

.feature-icon.violet {
    background: #eaf2f8;
    color: var(--primary);
}

.feature-card h3 {
    color: var(--dark);
    font-family: "Nunito", sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.88rem;
    line-height: 1.65;
}


/* ---------------------------------------------------------
   ABOUT
--------------------------------------------------------- */

.about-section {
    background: var(--background);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 90px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    height: 600px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
}

.image-badge {
    position: absolute;
    right: -25px;
    bottom: 35px;
    display: flex;
    flex-direction: column;
    padding: 20px 25px;
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.image-badge strong {
    color: var(--red);
    font-family: "Nunito", sans-serif;
    font-size: 1.3rem;
}

.image-badge span {
    color: var(--text-light);
    font-size: 0.75rem;
}

.about-content > p {
    max-width: 650px;
    margin: 22px 0 35px;
}

.mission-vision {
    display: grid;
    gap: 15px;
}

.mv-card {
    display: flex;
    gap: 18px;
    padding: 22px;
    border-radius: 18px;
    background: var(--white);
    border: 1px solid var(--border);
}

.mv-icon {
    min-width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: var(--primary-light);
    color: var(--primary);
}

.mv-card h3 {
    margin-bottom: 3px;
    color: var(--dark);
    font-family: "Nunito", sans-serif;
    font-size: 1rem;
}

.mv-card p {
    font-size: 0.82rem;
    line-height: 1.65;
}


/* ---------------------------------------------------------
   PHILOSOPHY
--------------------------------------------------------- */

.philosophy-section {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.7);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 100px;
    align-items: center;
}

.philosophy-content .eyebrow {
    color: #dceaf4;
}

.philosophy-content h2 {
    color: var(--white);
}

.philosophy-content h2 span {
    color: #f0aaa3;
}

.philosophy-content p {
    max-width: 650px;
    margin-top: 20px;
}

.dimensions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dimension {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 17px 20px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 15px;
    background: rgba(255,255,255,0.035);
    transition: var(--transition);
}

.dimension:hover {
    background: rgba(255,255,255,0.08);
    transform: translateX(7px);
}

.dimension > span {
    color: #a8c1d4;
    font-size: 0.75rem;
    font-weight: 700;
}

.dimension div {
    display: flex;
    align-items: center;
    gap: 13px;
    color: var(--white);
}

.dimension i {
    width: 34px;
    color: #e58b82;
}


/* ---------------------------------------------------------
   VALUES
--------------------------------------------------------- */

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.value-card {
    position: relative;
    padding: 32px;
    border-radius: 22px;
    background: var(--background);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.value-number {
    position: absolute;
    top: 20px;
    right: 22px;
    color: #dfe7ed;
    font-family: "Nunito", sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
}

.value-card > i {
    color: var(--red);
    font-size: 1.35rem;
    margin-bottom: 22px;
}

.value-card h3 {
    color: var(--dark);
    font-family: "Nunito", sans-serif;
    font-size: 1.15rem;
    margin-bottom: 7px;
}

.value-card p {
    font-size: 0.84rem;
}


/* ---------------------------------------------------------
   OBJECTIVES
--------------------------------------------------------- */

.objectives-section {
    background: var(--background);
}

.objectives-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: start;
}

.objective-main {
    padding: 40px;
    border-radius: 25px;
    background: var(--red);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.objective-icon {
    width: 55px;
    height: 55px;
    display: grid;
    place-items: center;
    margin-bottom: 25px;
    border-radius: 16px;
    background: rgba(255,255,255,0.15);
}

.objective-main > span {
    display: block;
    margin-bottom: 10px;
    color: #f6cfca;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.objective-main h3 {
    font-family: "Nunito", sans-serif;
    font-size: 1.55rem;
    line-height: 1.3;
    margin-bottom: 20px;
}

.objective-main p {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
}

.objectives-list {
    display: grid;
    gap: 0;
}

.objective-item {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid var(--border);
}

.objective-item:first-child {
    padding-top: 0;
}

.objective-item > span {
    color: var(--primary);
    font-family: "Nunito", sans-serif;
    font-weight: 900;
}

.objective-item p {
    font-size: 0.9rem;
}


/* ---------------------------------------------------------
   SCHEDULE
--------------------------------------------------------- */

.schedule-section {
    background: var(--white);
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 950px;
    margin: auto;
}

.schedule-card {
    position: relative;
    padding: 38px;
    border-radius: 25px;
    overflow: hidden;
}

.schedule-card.preschool {
    background: #eaf2f8;
}

.schedule-card.primary {
    background: #fbeceb;
}

.schedule-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.schedule-top span {
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 800;
}

.schedule-top i {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--white);
    color: var(--primary);
}

.schedule-card h3 {
    margin: 25px 0;
    color: var(--dark);
    font-family: "Nunito", sans-serif;
    font-size: 1.7rem;
}

.schedule-time {
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
    color: var(--dark);
}

.schedule-time strong {
    font-family: "Nunito", sans-serif;
    font-size: 2rem;
    font-weight: 900;
}

.schedule-time i {
    margin: 0 8px;
    color: var(--red);
}

.schedule-time span {
    color: var(--text-light);
    font-size: 0.72rem;
}

.schedule-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 20px 0;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
}

.schedule-card p {
    max-width: 450px;
    font-size: 0.85rem;
}


/* ---------------------------------------------------------
   FESTIVAL
--------------------------------------------------------- */

.festival-section {
    background: var(--background);
}

.festival-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 40px;
    margin-bottom: 45px;
}

.festival-header h2 {
    max-width: 650px;
    font-family: "Nunito", sans-serif;
    color: var(--dark);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    line-height: 1.1;
    font-weight: 900;
}

.festival-header p {
    max-width: 430px;
}

.festival-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 20px;
}

.festival-feature {
    position: relative;
    min-height: 550px;
    overflow: hidden;
    border-radius: 28px;
}

.festival-feature img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.festival-feature:hover img {
    transform: scale(1.04);
}

.festival-overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 70px 35px 35px;
    background: linear-gradient(transparent, rgba(20, 35, 48, 0.9));
    color: var(--white);
}

.festival-overlay span {
    color: #d8e7f3;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
}

.festival-overlay h3 {
    max-width: 500px;
    margin-top: 7px;
    font-family: "Nunito", sans-serif;
    font-size: 2rem;
    line-height: 1.15;
}

.festival-cards {
    display: grid;
    gap: 12px;
}

.festival-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 25px;
    border-radius: 20px;
    background: var(--white);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.festival-card:hover {
    transform: translateX(-5px);
    box-shadow: var(--shadow-sm);
}

.festival-card > i {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: var(--primary-light);
    color: var(--primary);
}

.festival-card h3 {
    color: var(--dark);
    font-family: "Nunito", sans-serif;
    font-size: 1rem;
}

.festival-card p {
    margin-top: 4px;
    font-size: 0.78rem;
}

.gallery-preview {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.3fr;
    gap: 12px;
    margin-top: 12px;
}

.gallery-image {
    height: 180px;
    overflow: hidden;
    border-radius: 18px;
}

.gallery-image img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-image:hover img {
    transform: scale(1.06);
}


/* ---------------------------------------------------------
   ADMISSIONS
--------------------------------------------------------- */

.admissions-section {
    background: var(--primary);
    color: var(--white);
}

.admissions-section .eyebrow {
    color: #d8e7f3;
}

.admissions-section .section-heading h2 {
    color: var(--white);
}

.admissions-section .section-heading h2 span {
    color: #f0aaa3;
}

.admissions-section .section-heading p {
    color: rgba(255,255,255,0.72);
}

.admission-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
}

.admission-step {
    width: 190px;
    text-align: center;
}

.step-number {
    color: rgba(255,255,255,0.45);
    font-size: 0.7rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.step-icon {
    width: 65px;
    height: 65px;
    display: grid;
    place-items: center;
    margin: auto;
    border-radius: 20px;
    background: rgba(255,255,255,0.13);
    border: 1px solid rgba(255,255,255,0.15);
    font-size: 1.2rem;
}

.admission-step h3 {
    margin: 18px 0 6px;
    font-family: "Nunito", sans-serif;
    font-size: 1rem;
}

.admission-step p {
    color: rgba(255,255,255,0.68);
    font-size: 0.76rem;
    line-height: 1.6;
}

.step-line {
    width: 40px;
    height: 1px;
    margin-top: 97px;
    background: rgba(255,255,255,0.2);
}

.admission-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-top: 70px;
    padding: 28px 30px;
    border-radius: 22px;
    background: rgba(255,255,255,0.1);
}

.admission-cta span {
    color: rgba(255,255,255,0.65);
    font-size: 0.75rem;
}

.admission-cta h3 {
    margin-top: 3px;
    font-family: "Nunito", sans-serif;
    font-size: 1.35rem;
}


/* ---------------------------------------------------------
   DOCUMENTS
--------------------------------------------------------- */

.documents-section {
    background: var(--white);
}

.documents-grid {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 80px;
    align-items: start;
}

.documents-content p {
    margin: 25px 0;
}

.document-note {
    display: flex;
    gap: 12px;
    padding: 15px;
    border-radius: 13px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 0.76rem;
}

.document-note i {
    margin-top: 3px;
}

.documents-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.document-item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 17px;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: var(--background);
    font-size: 0.78rem;
    transition: var(--transition);
}

.document-item:hover {
    border-color: var(--primary);
}

.document-item i {
    color: var(--primary);
    margin-top: 3px;
}

.disability-note {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-top: 40px;
    padding: 25px;
    border-radius: 18px;
    background: #edf3f8;
    border: 1px solid #d8e4ed;
}

.disability-icon {
    min-width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--red);
    color: var(--white);
}

.disability-note h3 {
    color: var(--dark);
    font-family: "Nunito", sans-serif;
    margin-bottom: 3px;
}

.disability-note p {
    font-size: 0.82rem;
}


/* ---------------------------------------------------------
   ACCORDION
--------------------------------------------------------- */

.enrollment-section {
    background: var(--background);
}

.accordion {
    max-width: 900px;
    margin: auto;
}

.accordion-item {
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--white);
}

.accordion-header {
    width: 100%;
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 25px;
    background: transparent;
    color: var(--dark);
    text-align: left;
}

.accordion-header > div {
    display: flex;
    align-items: center;
    gap: 18px;
}

.accordion-header span {
    color: var(--red);
    font-size: 0.72rem;
    font-weight: 800;
}

.accordion-header strong {
    font-family: "Nunito", sans-serif;
    font-size: 0.95rem;
}

.accordion-header i {
    color: var(--primary);
    transition: var(--transition);
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 0 25px 25px;
}

.accordion-content p {
    margin-bottom: 12px;
    font-size: 0.87rem;
}


/* ---------------------------------------------------------
   GALLERY
--------------------------------------------------------- */

.gallery-section {
    background: var(--white);
}

.gallery-section .section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
}

.gallery-section .section-heading > p {
    max-width: 400px;
    margin: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    grid-template-rows: 280px 280px;
    gap: 12px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.gallery-large {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        transparent 45%,
        rgba(20, 35, 48, 0.75)
    );
}

.gallery-caption {
    position: absolute;
    z-index: 2;
    bottom: 20px;
    left: 22px;
    color: var(--white);
}

.gallery-caption span {
    font-size: 0.67rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.7;
}

.gallery-caption h3 {
    font-family: "Nunito", sans-serif;
    font-size: 1rem;
}


/* ---------------------------------------------------------
   CONTACT
--------------------------------------------------------- */

.contact-section {
    background: var(--background);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 90px;
    align-items: start;
}

.contact-info > p {
    max-width: 520px;
    margin: 25px 0 35px;
}

.contact-list {
    display: grid;
    gap: 18px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: var(--primary-light);
    color: var(--primary);
}

.contact-item div:last-child {
    display: flex;
    flex-direction: column;
}

.contact-item span {
    color: var(--text-light);
    font-size: 0.68rem;
}

.contact-item strong {
    color: var(--dark);
    font-size: 0.84rem;
}

.contact-form-wrapper {
    padding: 38px;
    border-radius: 25px;
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.contact-form h3 {
    color: var(--dark);
    font-family: "Nunito", sans-serif;
    font-size: 1.7rem;
}

.contact-form > p {
    margin: 4px 0 25px;
    font-size: 0.8rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

.form-group label {
    margin-bottom: 7px;
    color: var(--dark-soft);
    font-size: 0.75rem;
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 11px;
    outline: none;
    background: var(--background);
    color: var(--dark);
    padding: 13px 14px;
    font-size: 0.8rem;
    transition: var(--transition);
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px var(--primary-light);
}

.form-submit {
    width: 100%;
    margin-top: 5px;
}

.form-message {
    display: none;
    margin-top: 15px;
    padding: 12px;
    border-radius: 10px;
    background: #edf7f1;
    color: #31835a;
    font-size: 0.78rem;
    text-align: center;
}


/* ---------------------------------------------------------
   FINAL CTA
--------------------------------------------------------- */

.final-cta {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    background:
        linear-gradient(
            120deg,
            rgba(25, 85, 135, 0.96),
            rgba(195, 53, 39, 0.90)
        ),
        url("https://images.unsplash.com/photo-1523240795612-9a054b0db644?auto=format&fit=crop&w=1800&q=85")
        center / cover;
    color: var(--white);
    text-align: center;
}

.final-cta-content {
    max-width: 760px;
    margin: auto;
}

.final-cta .eyebrow {
    color: #d8e7f3;
}

.final-cta h2 {
    font-family: "Nunito", sans-serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.final-cta h2 span {
    display: block;
    color: #f0aaa3;
}

.final-cta p {
    max-width: 600px;
    margin: 22px auto 30px;
    color: rgba(255,255,255,0.75);
}


/* ---------------------------------------------------------
   FOOTER
--------------------------------------------------------- */

.footer {
    background: #142c3d;
    color: rgba(255,255,255,0.65);
    padding: 70px 0 25px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.7fr 0.8fr 1fr;
    gap: 60px;
    padding-bottom: 55px;
}

.footer-logo .logo-text strong {
    color: var(--white);
}

.footer-logo .logo-text span {
    color: rgba(255,255,255,0.45);
}

.footer-brand > p {
    max-width: 300px;
    margin: 20px 0;
    font-size: 0.8rem;
}

.social-links {
    display: flex;
    gap: 8px;
}

.social-links a {
    width: 37px;
    height: 37px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: rgba(255,255,255,0.07);
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--red);
    transform: translateY(-3px);
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-column h3 {
    margin-bottom: 8px;
    color: var(--white);
    font-family: "Nunito", sans-serif;
    font-size: 0.95rem;
}

.footer-column a,
.footer-column span {
    font-size: 0.77rem;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-column span {
    display: flex;
    align-items: flex-start;
    gap: 9px;
}

.footer-column span i {
    color: #e58b82;
    margin-top: 4px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.7rem;
}


/* ---------------------------------------------------------
   BACK TO TOP
--------------------------------------------------------- */

.back-to-top {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 100;
    width: 45px;
    height: 45px;
    border-radius: 13px;
    background: var(--red);
    color: var(--white);
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--red-dark);
    transform: translateY(-3px);
}


/* ---------------------------------------------------------
   SCROLL ANIMATION
--------------------------------------------------------- */

.feature-card,
.value-card,
.schedule-card,
.festival-card,
.admission-step,
.document-item,
.gallery-item,
.mv-card {
    opacity: 0;
    transform: translateY(25px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

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


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1050px) {

    .nav {
        gap: 18px;
    }

    .nav-button {
        display: none;
    }

    .about-grid,
    .philosophy-grid,
    .contact-grid {
        gap: 50px;
    }

    .features-grid,
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: 1.2fr 1fr;
    }

    .gallery-large {
        grid-row: span 2;
    }

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


@media (max-width: 800px) {

    .section {
        padding: 80px 0;
    }

    .container {
        width: min(100% - 30px, 650px);
    }

    /* Mobile navigation */

    .menu-toggle {
        display: grid;
        place-items: center;
    }

    .nav {
        position: absolute;
        top: calc(100% + 8px);
        left: 15px;
        right: 15px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px;
        border-radius: 18px;
        background: var(--white);
        box-shadow: var(--shadow-lg);
        border: 1px solid var(--border);

        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: var(--transition);
    }

    .nav.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-link {
        padding: 13px 12px;
        border-radius: 10px;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover,
    .nav-link.active {
        background: var(--primary-light);
    }

    .nav-button {
        display: flex;
        justify-content: center;
        margin-top: 8px;
    }

    /* Hero */

    .hero {
        min-height: 700px;
    }

    .hero h1 {
        font-size: clamp(2.8rem, 12vw, 4.3rem);
    }

    .hero p {
        font-size: 0.98rem;
    }

    .scroll-indicator {
        display: none;
    }

    /* Grids */

    .features-grid,
    .values-grid,
    .schedule-grid,
    .about-grid,
    .philosophy-grid,
    .objectives-grid,
    .documents-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-grid,
    .philosophy-grid,
    .objectives-grid,
    .documents-grid,
    .contact-grid {
        gap: 45px;
    }

    .about-image img {
        height: 450px;
    }

    .image-badge {
        right: 15px;
    }

    /* Festival */

    .festival-header {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .festival-feature {
        min-height: 430px;
    }

    .gallery-preview {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Admission */

    .admission-steps {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 35px 15px;
    }

    .admission-step {
        width: auto;
    }

    .step-line {
        display: none;
    }

    .admission-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    /* Documents */

    .documents-list {
        grid-template-columns: 1fr;
    }

    /* Gallery */

    .gallery-section .section-heading {
        flex-direction: column;
        align-items: flex-start;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 250px 250px 250px;
    }

    .gallery-large {
        grid-column: span 2;
        grid-row: span 1;
    }

    /* Footer */

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}


@media (max-width: 520px) {

    .section {
        padding: 70px 0;
    }

    .container {
        width: min(100% - 24px, 500px);
    }

    .header {
        height: 68px;
    }

    .header.scrolled {
        height: 64px;
    }

    .logo-placeholder {
        width: 38px;
        height: 38px;
    }

    .logo-text strong {
        font-size: 0.95rem;
    }

    .hero {
        min-height: 650px;
    }

    .hero-content {
        padding-top: 50px;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .section-heading h2,
    .about-content h2,
    .philosophy-content h2,
    .documents-content h2,
    .contact-info h2 {
        font-size: 2.35rem;
    }

    .feature-card,
    .value-card {
        padding: 25px;
    }

    .about-image img {
        height: 360px;
    }

    .mission-vision {
        gap: 10px;
    }

    .mv-card {
        padding: 18px;
    }

    .philosophy-grid {
        gap: 35px;
    }

    .objective-main {
        padding: 30px;
    }

    .schedule-card {
        padding: 28px;
    }

    .schedule-time strong {
        font-size: 1.55rem;
    }

    .festival-feature {
        min-height: 350px;
    }

    .festival-overlay {
        padding: 50px 22px 25px;
    }

    .festival-overlay h3 {
        font-size: 1.55rem;
    }

    .gallery-preview {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-image {
        height: 140px;
    }

    .admission-steps {
        grid-template-columns: 1fr;
    }

    .admission-cta {
        padding: 22px;
    }

    .documents-content {
        margin-bottom: 0;
    }

    .accordion-header {
        min-height: 70px;
        padding: 13px 17px;
    }

    .accordion-header > div {
        gap: 11px;
    }

    .accordion-header strong {
        font-size: 0.82rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 250px);
    }

    .gallery-large {
        grid-column: span 1;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form-wrapper {
        padding: 25px 20px;
    }

    .final-cta {
        padding: 80px 0;
    }

    .final-cta h2 {
        font-size: 2.5rem;
    }

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

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

    .back-to-top {
        right: 15px;
        bottom: 15px;
    }
}

