﻿/* ==========================================================================
   TISMAP — PUBLIC HOMEPAGE
   Standalone design system (not the admin portal's site.css)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Source+Serif+4:opsz,wght@8..60,500;8..60,600;8..60,700;8..60,800&family=JetBrains+Mono:wght@500;600&display=swap');

:root {
    --primary: #006699;
    --primary-dark: #00532A;
    --primary-deep: #006699;
    --primary-slider-deep: rgba(0,102,153,1);
    --secondary: #F8F9FA;
    --accent: #2ec5ee;
    --accent-dark: #E0A800;
    --ink: #0a2f66;
    --slate: #5C6B66;
    --slate-light: #8A958F;
    --bg: #FFFFFF;
    --bg-tint: #F6F8F7;
    --border: #E4E9E7;
    --font-display: 'Source Serif 4', Georgia, serif;
    --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', ui-monospace, monospace;
    --radius-sm: 8px;
    --radius: 16px;
    --radius-lg: 28px;
    --shadow: 0 4px 24px rgba(2, 43, 22, 0.08);
    --shadow-lg: 0 24px 60px rgba(2, 43, 22, 0.16);
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    position: relative;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    margin: 0;
    letter-spacing: -0.01em;
    color: var(--primary-deep);
}

::selection {
    background: var(--accent);
    color: var(--ink);
}

::-webkit-scrollbar {
    width: 9px;
}

::-webkit-scrollbar-track {
    background: var(--bg-tint);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 8px;
}

/* Reveal-on-scroll */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

    .reveal.in {
        opacity: 1;
        transform: translateY(0);
    }

.reveal-stagger > * {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal-stagger.in > * {
    opacity: 1;
    transform: translateY(0);
}

    .reveal-stagger.in > *:nth-child(1) {
        transition-delay: .05s
    }

    .reveal-stagger.in > *:nth-child(2) {
        transition-delay: .12s
    }

    .reveal-stagger.in > *:nth-child(3) {
        transition-delay: .19s
    }

    .reveal-stagger.in > *:nth-child(4) {
        transition-delay: .26s
    }

    .reveal-stagger.in > *:nth-child(5) {
        transition-delay: .33s
    }

    .reveal-stagger.in > *:nth-child(6) {
        transition-delay: .40s
    }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(0,102,51,0.07);
    padding: 7px 14px;
    border-radius: 999px;
    margin-bottom: 16px;
}

    .eyebrow::before {
        content: '';
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--accent);
    }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-weight: 700;
    font-size: 14px;
    padding: 14px 26px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: all 0.25s var(--ease);
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 8px 24px rgba(0,102,51,0.28);
}

    .btn-primary:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: 0 12px 30px rgba(0,102,51,0.36);
    }

.btn-accent {
    background: var(--accent);
    color: var(--ink);
}

    .btn-accent:hover {
        background: var(--accent-dark);
        transform: translateY(-2px);
    }

.btn-ghost {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.4);
}

    .btn-ghost:hover {
        background: rgba(255,255,255,0.12);
        border-color: #fff;
    }

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
}

    .btn-outline:hover {
        background: var(--primary);
        color: #fff;
    }

/* --------------------------------------------------------------------------
   UTILITY TOP BAR
   -------------------------------------------------------------------------- */
.utility-bar {
    background: var(--primary-deep);
    color: rgba(255,255,255,0.78);
    font-size: 12.5px;
    position: relative;
    z-index: 60;
}

    .utility-bar .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 38px;
    }

.utility-links {
    display: flex;
    align-items: center;
    gap: 22px;
}

    .utility-links a {
        display: flex;
        align-items: center;
        gap: 6px;
        transition: color 0.2s;
    }

        .utility-links a:hover {
            color: var(--accent);
        }

    .utility-links i {
        font-size: 11px;
        opacity: 0.85;
    }

.utility-meta {
    display: flex;
    align-items: center;
    gap: 18px;
}

    .utility-meta .session-pill {
        font-family: var(--font-mono);
        font-size: 11px;
        background: rgba(255,255,255,0.08);
        padding: 4px 10px;
        border-radius: 999px;
    }

.utility-social {
    display: flex;
    gap: 10px;
}

    .utility-social a {
        width: 22px;
        height: 22px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255,255,255,0.08);
        font-size: 10.5px;
        transition: 0.2s;
    }

        .utility-social a:hover {
            background: var(--accent);
            color: var(--ink);
        }

@media (max-width: 767.98px) {
    .utility-meta {
        display: none;
    }

    .utility-links {
        gap: 14px;
    }

        .utility-links span.label {
            display: none;
        }
}

/* --------------------------------------------------------------------------
   MAIN NAVBAR + MEGA MENU
   -------------------------------------------------------------------------- */
.navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(14px) saturate(160%);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s, padding 0.3s;
}

    .navbar.scrolled {
        box-shadow: 0 6px 24px rgba(2,43,22,0.08);
    }

    .navbar .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 84px;
        transition: height 0.3s;
        gap: 18px;
    }

    .navbar.scrolled .container {
        height: 68px;
    }

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #FFFFFF; /*var(--primary)*/;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(0,102,51,0.3);
    flex-shrink: 0;
    overflow: hidden;
}

    .brand-mark img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        padding: 6px;
    }

.brand-text .name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16.5px;
    line-height: 1.15;
    color: var(--primary-deep);
}

.brand-text .sub {
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--slate);
}

.nav-main {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1;
    justify-content: center;
}

    .nav-main > li {
        position: relative;
    }

        .nav-main > li > a {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 10px 14px;
            font-size: 13.5px;
            font-weight: 600;
            color: var(--ink);
            border-radius: var(--radius-sm);
            transition: 0.2s;
        }

            .nav-main > li > a i.caret {
                font-size: 9px;
                color: var(--slate-light);
                transition: transform 0.25s;
            }

        .nav-main > li:hover > a {
            color: var(--primary);
            background: rgba(0,102,51,0.06);
        }

            .nav-main > li:hover > a i.caret {
                transform: rotate(180deg);
                color: var(--primary);
            }

.mega {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 240px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
}

.nav-main > li:hover .mega {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega.mega-wide {
    min-width: 560px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
}

.mega a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--ink);
    transition: 0.18s;
}

    .mega a i {
        width: 16px;
        font-size: 12px;
        color: var(--primary);
        flex-shrink: 0;
    }

    .mega a:hover {
        background: var(--bg-tint);
        color: var(--primary);
        padding-left: 18px;
    }

.mega-group-title {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--slate-light);
    padding: 10px 14px 4px;
}

.mega-divider {
    height: 1px;
    background: var(--border);
    margin: 6px 0;
    grid-column: 1 / -1;
}

.nav-side {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.nav-cta {
    white-space: nowrap;
}

.nav-auth {
    display: flex;
    align-items: center;
    gap: 8px;
}

    .nav-auth .auth-link {
        font-size: 13px;
        font-weight: 700;
        color: var(--ink);
        padding: 9px 16px;
        border-radius: 999px;
        transition: 0.2s;
    }

        .nav-auth .auth-link:hover {
            background: var(--bg-tint);
        }

        .nav-auth .auth-link.primary {
            background: var(--primary);
            color: #fff;
        }

            .nav-auth .auth-link.primary:hover {
                background: var(--primary-dark);
            }

    .nav-auth .user-chip {
        display: flex;
        align-items: center;
        gap: 9px;
        background: var(--bg-tint);
        padding: 6px 14px 6px 6px;
        border-radius: 999px;
    }

        .nav-auth .user-chip .avatar {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: var(--primary);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 700;
            font-family: var(--font-display);
        }

        .nav-auth .user-chip span {
            font-size: 12.5px;
            font-weight: 700;
            max-width: 130px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

    .nav-auth form {
        margin: 0;
    }

    .nav-auth .logout-btn {
        background: transparent;
        border: none;
        cursor: pointer;
        font-size: 12.5px;
        font-weight: 700;
        color: var(--slate);
        padding: 8px 10px;
    }

        .nav-auth .logout-btn:hover {
            color: #C0392B;
        }

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: #fff;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}

    .nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
        content: '';
        display: block;
        width: 18px;
        height: 2px;
        background: var(--ink);
        position: relative;
        transition: 0.25s;
    }

        .nav-toggle span::before {
            position: absolute;
            top: -6px;
        }

        .nav-toggle span::after {
            position: absolute;
            top: 6px;
        }

@media (max-width: 1100px) {
    .nav-main {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-auth {
        display: none;
    }
}

/* Mobile drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(86vw, 380px);
    height: 100vh;
    background: #fff;
    z-index: 200;
    box-shadow: -16px 0 50px rgba(0,0,0,0.18);
    transition: right 0.35s var(--ease);
    overflow-y: auto;
}

    .mobile-drawer.open {
        right: 0;
    }

.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid var(--border);
}

.mobile-drawer-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-tint);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.mobile-nav {
    padding: 10px;
}

.mobile-nav-item > a, .mobile-nav-item > button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 12px;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--ink);
    border: none;
    background: none;
    text-align: left;
    cursor: pointer;
    border-bottom: 1px solid var(--border);
}

.mobile-nav-item .mobile-sub {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--bg-tint);
    border-radius: 10px;
}

.mobile-nav-item.open .mobile-sub {
    max-height: 800px;
}

.mobile-nav-item .mobile-sub a {
    display: block;
    padding: 11px 24px;
    font-size: 13px;
    font-weight: 500;
    color: var(--slate);
}

.mobile-nav-item .mobile-sub .mega-group-title {
    padding: 12px 24px 4px;
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(2,43,22,0.4);
    z-index: 190;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    backdrop-filter: blur(2px);
}

    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }

.mobile-auth {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid var(--border);
}

/* --------------------------------------------------------------------------
   HERO SLIDER
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    height: 92vh;
    min-height: 620px;
    overflow: hidden;
    background: var(--primary-deep);
    padding-top: 2em;
}

.hero-slides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.4s var(--ease);
    background-size: cover;
    background-position: center;
}

    .hero-slide.active {
        opacity: 1;
    }

    .hero-slide::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(2,43,22,0.55) 0%, rgba(2,43,22,0.75) 55%, var(--primary-slider-deep) 100%);
    }

.hero-content {
    position: relative;
    z-index: 5;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 760px;
}

    .hero-content .eyebrow {
        background: rgba(255,255,255,0.12);
        color: var(--accent);
    }

        .hero-content .eyebrow::before {
            background: var(--accent);
        }

.hero h1 {
    color: #fff;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.08;
    margin-bottom: 18px;
}

    .hero h1 em {
        font-style: normal;
        color: var(--accent);
    }

.hero p {
    color: rgba(255,255,255,0.82);
    font-size: 16.5px;
    max-width: 540px;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-dots {
    position: absolute;
    bottom: 130px;
    left: 24px;
    z-index: 6;
    display: flex;
    gap: 8px;
}

@media (min-width: 768px) {
    .hero-dots {
        left: calc(50% - 596px);
    }
}

.hero-dots button {
    width: 28px;
    height: 4px;
    border-radius: 4px;
    background: rgba(255,255,255,0.35);
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

    .hero-dots button.active {
        background: var(--accent);
        width: 40px;
    }

.hero-stats {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    z-index: 8;
    transform: translateY(50%);
}

    .hero-stats .container {
        background: #fff;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
        padding: 28px 12px;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
    }

.stat-block {
    text-align: center;
    padding: 10px;
    border-right: 1px solid var(--border);
}

    .stat-block:last-child {
        border-right: none;
    }

    .stat-block .num {
        font-family: var(--font-display);
        font-size: clamp(24px,3vw,34px);
        font-weight: 700;
        color: var(--primary);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 2px;
    }

    .stat-block .lbl {
        font-size: 12px;
        font-weight: 600;
        color: var(--slate);
        margin-top: 4px;
    }

@media (max-width: 767.98px) {
    .hero-stats .container {
        grid-template-columns: repeat(2,1fr);
        gap: 14px;
    }

    .stat-block:nth-child(2) {
        border-right: none;
    }

    .stat-block {
        border-bottom: 1px solid var(--border);
        padding-bottom: 16px;
    }

        .stat-block:nth-child(3), .stat-block:nth-child(4) {
            border-bottom: none;
        }
}

/* --------------------------------------------------------------------------
   SECTION SPACING
   -------------------------------------------------------------------------- */
.section {
    padding: 130px 0 96px;
}

.section-tight {
    padding: 96px 0;
}

.section-head {
    max-width: 620px;
    margin-bottom: 56px;
}

    .section-head.center {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .section-head h2 {
        font-size: clamp(28px, 3.4vw, 40px);
        margin-bottom: 14px;
    }

    .section-head p {
        color: var(--slate);
        font-size: 15.5px;
    }

/* --------------------------------------------------------------------------
   HISTORY SECTION
   -------------------------------------------------------------------------- */
.history {
    background: var(--bg);
}

.history-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
    align-items: center;
}

.history-media {
    position: relative;
}

    .history-media .img-main {
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-lg);
        aspect-ratio: 4/5;
    }

        .history-media .img-main img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .history-media .img-float {
        position: absolute;
        bottom: -36px;
        right: -36px;
        width: 46%;
        aspect-ratio: 4/3;
        border-radius: var(--radius);
        overflow: hidden;
        border: 6px solid #fff;
        box-shadow: var(--shadow-lg);
    }

        .history-media .img-float img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .history-media .badge-year {
        position: absolute;
        top: 22px;
        left: -22px;
        background: var(--accent);
        color: var(--ink);
        font-family: var(--font-display);
        font-weight: 700;
        padding: 14px 20px;
        border-radius: var(--radius-sm);
        box-shadow: var(--shadow);
        font-size: 14px;
        line-height: 1.2;
    }

.history-body p {
    color: var(--slate);
    font-size: 15px;
    margin-bottom: 16px;
}

.history-points {
    display: grid;
    gap: 14px;
    margin-top: 26px;
}

.history-point {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

    .history-point .ico {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        background: rgba(0,102,51,0.08);
        color: var(--primary);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .history-point strong {
        display: block;
        font-size: 14px;
    }

    .history-point span {
        font-size: 13px;
        color: var(--slate);
    }

@media (max-width: 991.98px) {
    .history-grid {
        grid-template-columns: 1fr;
        gap: 80px 0;
    }

    .history-media .img-float {
        width: 50%;
        right: 0;
    }
}

/* --------------------------------------------------------------------------
   DIRECTOR / SPEECH
   -------------------------------------------------------------------------- */
.director {
    background: var(--primary-deep);
    color: #fff;
    overflow: hidden;
    position: relative;
}

    .director::before {
        content: '';
        position: absolute;
        top: -200px;
        right: -200px;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(255,193,7,0.14), transparent 70%);
    }

.director-grid {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.director-photo {
    position: relative;
}

    .director-photo .frame {
        border-radius: var(--radius-lg);
        overflow: hidden;
        aspect-ratio: 3/4;
        border: 1px solid rgba(255,255,255,0.15);
    }

    .director-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .director-photo .quote-mark {
        position: absolute;
        top: -22px;
        left: -16px;
        font-family: var(--font-display);
        font-size: 110px;
        color: var(--accent);
        opacity: 0.9;
        line-height: 1;
    }

.director-body .eyebrow {
    background: rgba(255,255,255,0.1);
    color: var(--accent);
}

    .director-body .eyebrow::before {
        background: var(--accent);
    }

.director-speech {
    font-family: var(--font-display);
    font-size: clamp(18px, 2.2vw, 23px);
    line-height: 1.55;
    color: #fff;
    font-weight: 500;
    margin: 18px 0 28px;
}

.director-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 17px;
}

.director-title {
    font-size: 12.5px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}

.director-sig {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 26px;
}

    .director-sig img {
        height: 46px;
        opacity: 0.9;
    }

@media (max-width: 991.98px) {
    .director-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .director-photo {
        max-width: 280px;
        margin: 0 auto;
    }
}

/* --------------------------------------------------------------------------
   WHY CHOOSE US
   -------------------------------------------------------------------------- */
.why {
    background: var(--bg-tint);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.why-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 32px 26px;
    border: 1px solid var(--border);
    transition: 0.3s var(--ease);
    position: relative;
    overflow: hidden;
}

    .why-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
        border-color: transparent;
    }

    .why-card .ico {
        width: 54px;
        height: 54px;
        border-radius: 14px;
        background: var(--primary);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 21px;
        margin-bottom: 20px;
        box-shadow: 0 8px 18px rgba(0,102,51,0.25);
    }

    .why-card:nth-child(3n+2) .ico {
        background: var(--accent-dark);
        box-shadow: 0 8px 18px rgba(224,168,0,0.3);
    }

    .why-card:nth-child(3n) .ico {
        background: var(--primary-deep);
    }

    .why-card h4 {
        font-size: 16.5px;
        margin-bottom: 8px;
    }

    .why-card p {
        font-size: 13.5px;
        color: var(--slate);
        margin: 0;
    }

@media (max-width: 991.98px) {
    .why-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 575.98px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------------------------------------------
   MISSION / VISION
   -------------------------------------------------------------------------- */
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
@media (max-width: 767.98px) {
    .mv-grid {
        grid-template-columns: 1fr;
    }
}

.mv-card {
    border-radius: var(--radius-lg);
    padding: 44px 38px;
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

    .mv-card.mission {
        background: linear-gradient(150deg, var(--primary) 0%, #014023 100%);
    }

    .mv-card.vision {
        background: linear-gradient(150deg, #0E1F18 0%, var(--primary-deep) 100%);
    }

    .mv-card .ico-big {
        position: absolute;
        top: 32px;
        right: 32px;
        font-size: 64px;
        color: rgba(255,255,255,0.08);
    }

    .mv-card .tag {
        font-family: var(--font-mono);
        font-size: 11px;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--accent);
        font-weight: 700;
        margin-bottom: 12px;
    }

    .mv-card h3 {
        color: #fff;
        font-size: 24px;
        margin-bottom: 12px;
    }

    .mv-card p {
        color: rgba(255,255,255,0.78);
        font-size: 14.5px;
        margin: 0;
        max-width: 440px;
    }

/* --------------------------------------------------------------------------
   PARTNERS MARQUEE
   -------------------------------------------------------------------------- */
.partners {
    background: var(--bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 56px 0;
}

    .partners .section-head {
        margin-bottom: 36px;
    }

.marquee {
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
    display: flex;
    gap: 64px;
    width: max-content;
    animation: scrollX 28s linear infinite;
}

.marquee:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    filter: grayscale(1);
    opacity: 0.55;
    transition: 0.3s;
    flex-shrink: 0;
}

    .marquee-item:hover {
        filter: grayscale(0);
        opacity: 1;
    }

    .marquee-item img {
        max-height: 100%;
        max-width: 130px;
        object-fit: contain;
    }

@keyframes scrollX {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* --------------------------------------------------------------------------
   ADMISSION CTA BANNER
   -------------------------------------------------------------------------- */
.cta-banner {
    background: var(--ink);
    position: relative;
    overflow: hidden;
    padding: 70px 0;
}

    .cta-banner::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 20% 30%, rgba(0,102,51,0.5), transparent 55%), radial-gradient(circle at 85% 70%, rgba(255,193,7,0.18), transparent 50%);
    }

.cta-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

    .cta-inner h2 {
        color: #fff;
        font-size: clamp(22px, 3vw, 30px);
        max-width: 520px;
    }

    .cta-inner p {
        color: rgba(255,255,255,0.65);
        margin-top: 8px;
        font-size: 14px;
    }

.cta-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
    background: var(--primary-deep);
    color: rgba(255,255,255,0.72);
    padding: 80px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr repeat(4, 1fr);
    gap: 32px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

    .footer-brand .brand-mark {
        background: #FFFFFF; /*var(--accent);*/
    }

    .footer-brand .name {
        color: #fff;
        font-family: var(--font-display);
        font-weight: 700;
        font-size: 15.5px;
    }

    .footer-brand .sub {
        color: rgba(255,255,255,0.5);
        font-size: 10.5px;
        text-transform: uppercase;
        letter-spacing: 0.06em;
    }

.site-footer .desc {
    font-size: 13px;
    line-height: 1.7;
    max-width: 280px;
    margin-bottom: 20px;
}

.footer-contact {
    display: grid;
    gap: 10px;
}

    .footer-contact div {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 12.5px;
    }

    .footer-contact i {
        color: var(--accent);
        margin-top: 3px;
    }

.footer-col h5 {
    color: #fff;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.footer-col li {
    margin-bottom: 11px;
}

.footer-col a {
    font-size: 13px;
    transition: 0.2s;
}

    .footer-col a:hover {
        color: var(--accent);
        padding-left: 3px;
    }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    font-size: 12.5px;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

    .footer-social a {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: rgba(255,255,255,0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.2s;
    }

        .footer-social a:hover {
            background: var(--accent);
            color: var(--ink);
        }

@media (max-width: 991.98px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 575.98px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------------------------------------------
   BACK TO TOP
   -------------------------------------------------------------------------- */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    border: none;
    cursor: pointer;
    z-index: 80;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s;
}

    .back-to-top.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
