:root {
    --gva-primary: #8e0699;
    --gva-primary-dark: #67046f;
    --gva-accent: #f2b705;
    --gva-accent-soft: #fde9a8;
    --gva-ink: #301136;
    --gva-muted: #6d5a72;
    --gva-surface: #ffffff;
    --gva-surface-soft: #faf5e8;
    --gva-border: rgba(142, 6, 153, 0.12);
    --gva-shadow: 0 20px 45px rgba(62, 14, 70, 0.12);
    --gva-radius: 22px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--gva-ink);
    background:
        radial-gradient(circle at top left, rgba(242, 183, 5, 0.18), transparent 28%),
        radial-gradient(circle at top right, rgba(142, 6, 153, 0.08), transparent 24%),
        linear-gradient(180deg, #fffdf8 0%, #f8f1fb 100%);
    min-height: 100vh;
}

section {
    position: relative;
}

a {
    color: var(--gva-primary);
}

a:hover {
    color: var(--gva-primary-dark);
}

.section-title {
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
}

.section-copy {
    color: var(--gva-muted);
    max-width: 680px;
}

.section-shell {
    padding: 5rem 0;
}

.section-soft {
    background: linear-gradient(180deg, rgba(255, 249, 232, 0.72), rgba(251, 240, 255, 0.8));
}

.section-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.section-intro .section-copy {
    margin-left: auto;
    margin-right: auto;
}

.page-header,
.hero-home {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(135deg, rgba(103, 4, 111, 0.96), rgba(142, 6, 153, 0.90));
}

.page-header::before,
.hero-home::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(7, 29, 23, 0.75), rgba(15, 90, 70, 0.42)),
        linear-gradient(135deg, rgba(55, 8, 62, 0.72), rgba(142, 6, 153, 0.32)),
        url("../images/school-building.jpg") center/cover no-repeat;
    opacity: 0.34;
}

.page-header .container,
.hero-home .container {
    position: relative;
    z-index: 1;
}

.page-header {
    padding: 5rem 0 4.5rem;
}

.hero-home {
    padding: 5.25rem 0 4.5rem;
}

.hero-home::after {
    content: "";
    position: absolute;
    inset: auto auto -120px -120px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(242, 183, 5, 0.28), transparent 68%);
    pointer-events: none;
}

.hero-home h1,
.page-header h1 {
    letter-spacing: -0.04em;
}

.hero-home h1 {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.06;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.10);
    padding: 0.55rem 1rem;
    border-radius: 999px;
    font-size: 0.92rem;
    margin: 0 auto 1.25rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0 auto 1.5rem;
    padding: 0.85rem 1rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 14px 32px rgba(44, 7, 56, 0.22);
    backdrop-filter: blur(10px);
    max-width: 540px;
}

.hero-brand-logo {
    width: 88px;
    height: 88px;
    object-fit: cover;
    border-radius: 24px;
    background: #fff;
    padding: 0.35rem;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.hero-brand-copy {
    text-align: left;
    flex: 0 1 auto;
}

.hero-brand-copy strong {
    display: block;
    font-size: 1.15rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-brand-copy span {
    color: rgba(255, 248, 252, 0.82);
    font-size: 0.92rem;
}

.hero-panel {
    margin-top: 1.75rem;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--gva-radius);
    padding: 1.25rem;
    backdrop-filter: blur(10px);
    max-width: 840px;
}

.hero-ribbon {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 0.5rem;
    padding: 0.7rem 1.2rem;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(242, 183, 5, 0.94), rgba(255, 221, 120, 0.92));
    color: #31130c;
    font-weight: 700;
    box-shadow: 0 16px 28px rgba(242, 183, 5, 0.22);
}

.hero-intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.info-card,
.surface-card,
.content-card,
.gallery-card,
.split-card,
.cta-panel {
    background: var(--gva-surface);
    border: 1px solid var(--gva-border);
    border-radius: var(--gva-radius);
    box-shadow: var(--gva-shadow);
}

.surface-card,
.content-card {
    overflow: hidden;
}

.surface-card .card-body,
.content-card .card-body {
    padding: 1.4rem;
}

.surface-card img,
.gallery-card img,
.content-card img {
    width: 100%;
    object-fit: cover;
}

.content-card img {
    aspect-ratio: 4 / 3;
}

.gallery-card img {
    height: 260px;
}

.content-card:hover,
.gallery-card:hover,
.surface-card:hover,
.info-card:hover,
.split-card:hover {
    transform: translateY(-4px);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 26px 50px rgba(62, 14, 70, 0.16);
}

.split-card {
    padding: 2rem;
    height: 100%;
}

.split-card p:last-child,
.info-card p:last-child,
.content-card p:last-child {
    margin-bottom: 0;
}

.highlight-band {
    background: linear-gradient(90deg, rgba(242, 183, 5, 0.14), rgba(142, 6, 153, 0.10));
    border-top: 1px solid rgba(242, 183, 5, 0.28);
    border-bottom: 1px solid rgba(142, 6, 153, 0.12);
}

.brand-stat {
    text-align: center;
    padding: 1.2rem;
}

.brand-stat strong {
    display: block;
    font-size: 1.8rem;
    color: var(--gva-primary);
    letter-spacing: -0.04em;
}

.brand-stat span {
    color: var(--gva-muted);
    font-size: 0.95rem;
}

.eyebrow {
    color: var(--gva-accent);
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.rounded-2xl {
    border-radius: var(--gva-radius);
}

.btn {
    border-radius: 999px;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
}

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

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--gva-primary-dark);
    border-color: var(--gva-primary-dark);
}

.btn-outline-primary {
    color: var(--gva-primary);
    border-color: rgba(142, 6, 153, 0.30);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background-color: var(--gva-primary);
    border-color: var(--gva-primary);
}

.btn-warning {
    background-color: var(--gva-accent);
    border-color: var(--gva-accent);
    color: #1b1503;
}

.btn-warning:hover,
.btn-warning:focus {
    background-color: #c69421;
    border-color: #c69421;
    color: #1b1503;
}

.navbar {
    background: rgba(74, 7, 81, 0.92) !important;
    backdrop-filter: blur(12px);
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
    box-shadow: 0 10px 24px rgba(52, 8, 60, 0.14);
}

.navbar-brand {
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.navbar-brand span {
    font-size: 0.95rem;
}

.navbar-brand small {
    font-size: 0.72rem;
    margin-top: 0.15rem;
}

.nav-link {
    color: rgba(255, 248, 252, 0.88) !important;
    font-weight: 500;
    transition: color 0.2s ease, opacity 0.2s ease;
    padding-left: 0.8rem !important;
    padding-right: 0.8rem !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gva-accent) !important;
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    object-fit: cover;
    background: rgba(255, 255, 255, 0.12);
    padding: 0.2rem;
    flex-shrink: 0;
}

.metric-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.metric {
    padding: 0.95rem 0.85rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.metric strong {
    display: block;
    font-size: 1.18rem;
    margin-bottom: 0.2rem;
}

.metric span {
    font-size: 0.92rem;
    color: rgba(255, 248, 252, 0.82);
}

.feature-checklist {
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
}

.feature-checklist li {
    position: relative;
    padding-left: 1.85rem;
    margin-bottom: 0.85rem;
    color: var(--gva-muted);
}

.feature-checklist li::before {
    content: "\f26e";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: 0.05rem;
    color: var(--gva-primary);
}

.mini-list {
    display: grid;
    gap: 0.9rem;
}

.mini-list-item {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
}

.mini-list-item i {
    color: var(--gva-accent);
    font-size: 1.1rem;
    margin-top: 0.1rem;
}

.mini-list-item strong {
    display: block;
    color: var(--gva-ink);
    margin-bottom: 0.15rem;
}

.icon-wrap {
    width: 62px;
    height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(242, 183, 5, 0.22), rgba(142, 6, 153, 0.12));
    color: var(--gva-primary);
}

.accent-panel {
    background: linear-gradient(135deg, #fff9e8, #fbf0ff);
    border: 1px solid rgba(242, 183, 5, 0.24);
    border-radius: var(--gva-radius);
    box-shadow: var(--gva-shadow);
}

.cta-panel {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(103, 4, 111, 0.96), rgba(142, 6, 153, 0.90));
    color: #fff;
    overflow: hidden;
    position: relative;
}

.cta-panel::before {
    content: "";
    position: absolute;
    inset: auto -40px -40px auto;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(242, 183, 5, 0.3), transparent 70%);
}

.cta-panel > * {
    position: relative;
    z-index: 1;
}

.cta-panel p {
    color: rgba(255, 248, 252, 0.84);
}

.cta-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-grid {
    display: grid;
    gap: 1rem;
}

.contact-item {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
}

.contact-item i {
    color: var(--gva-primary);
    font-size: 1.1rem;
    margin-top: 0.15rem;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.15rem;
}

.stat-card {
    text-align: center;
    padding: 1.5rem 1rem;
}

.stat-card strong {
    display: block;
    font-size: 2rem;
    line-height: 1;
    color: var(--gva-primary);
    margin-bottom: 0.5rem;
}

.stat-card span {
    color: var(--gva-muted);
    font-size: 0.95rem;
}

.form-shell {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(142, 6, 153, 0.10);
    border-radius: var(--gva-radius);
    box-shadow: var(--gva-shadow);
}

.form-control,
.form-select {
    border-radius: 14px;
    border-color: rgba(142, 6, 153, 0.18);
    padding: 0.85rem 1rem;
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(142, 6, 153, 0.45);
    box-shadow: 0 0 0 0.2rem rgba(142, 6, 153, 0.12);
}

.site-footer {
    background: linear-gradient(180deg, #4f0757 0%, #2f0434 100%);
    color: rgba(255, 255, 255, 0.82);
}

.site-footer a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
}

.site-footer a:hover {
    color: #fff;
}

.footer-social {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    margin-right: 0.55rem;
}

.embed-shell iframe {
    width: 100%;
    min-height: 280px;
    border: 0;
    border-radius: 20px;
}

.text-muted {
    color: var(--gva-muted) !important;
}

@media (max-width: 991.98px) {
    .hero-home {
        padding: 4.75rem 0 4rem;
    }

    .metric-strip {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .page-header,
    .hero-home {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-brand {
        flex-direction: column;
        text-align: center;
        max-width: 100%;
    }

    .hero-brand-copy {
        text-align: center;
    }

    .btn {
        width: 100%;
    }

    .hero-home h1 {
        line-height: 1.1;
    }

    .navbar {
        padding-top: 0.55rem;
        padding-bottom: 0.55rem;
    }

    .navbar-brand span {
        font-size: 0.88rem;
    }
}
