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

:root {
    --green: #00C58E;
    --green-dark: #009B6F;
    --green-deep: #005C43;
    --green-pale: #E6FBF5;
    --amber: #F5A623;
    --amber-light: #FFF4E0;
    --coral: #FF6B6B;
    --coral-light: #FFF0F0;
    --indigo: #5B6AF5;
    --indigo-light: #EDEFFF;
    --sky: #38BDF8;
    --ink: #111827;
    --ink-soft: #4B5563;
    --muted: #9CA3AF;
    --surface: #F9FAFB;
    --white: #FFFFFF;
    --border: rgba(17, 24, 39, .09);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--white);
    color: var(--ink);
    overflow-x: hidden;
    font-size: 16px;
    line-height: 1.7;
}

/* ─── NAV ─── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5vw;
    height: 76px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow .3s;
}

nav.scrolled {
    box-shadow: 0 6px 40px rgba(0, 0, 0, .07);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-mark {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(145deg, var(--green) 0%, var(--green-deep) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(0, 197, 142, .3);
}

.logo-mark svg {
    width: 26px;
    height: 26px;
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--ink);
    line-height: 1.1;
}

.logo-text span {
    display: block;
    font-size: .58rem;
    font-weight: 600;
    color: var(--green-dark);
    letter-spacing: .1em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--ink-soft);
    font-size: .92rem;
    font-weight: 500;
    transition: color .2s;
}

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

.nav-cta {
    background: var(--green);
    color: white;
    border: none;
    padding: .6rem 1.5rem;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: .9rem;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 197, 142, .35);
    transition: transform .15s, box-shadow .2s, background .2s;
    text-decoration: none;
    white-space: nowrap;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 197, 142, .45);
    background: var(--green-dark);
}

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
    border-radius: 8px;
    transition: background .2s;
}

.nav-hamburger:hover {
    background: var(--surface);
}

.nav-hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--ink);
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
}

.nav-hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav drawer */
.mobile-menu {
    display: none;
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 199;
    padding: 1.5rem 5vw 2rem;
    flex-direction: column;
    gap: 0;
    box-shadow: 0 12px 40px rgba(0,0,0,.1);
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    text-decoration: none;
    color: var(--ink);
    font-size: 1.05rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    padding: .95rem 0;
    border-bottom: 1px solid var(--border);
    transition: color .2s;
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.mobile-menu a:hover {
    color: var(--green-dark);
}

.mobile-menu .mobile-cta {
    margin-top: 1.2rem;
    background: var(--green);
    color: white;
    text-align: center;
    padding: .9rem 2rem;
    border-radius: 50px;
    border-bottom: none;
    box-shadow: 0 4px 16px rgba(0, 197, 142, .35);
}

/* ─── HERO ─── */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #050E18;
}

.hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .3;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(ellipse 70% 80% at 5% 60%, rgba(0, 197, 142, .35) 0%, transparent 65%),
        radial-gradient(ellipse 50% 55% at 95% 20%, rgba(245, 166, 35, .2) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 80% 85%, rgba(91, 106, 245, .2) 0%, transparent 60%),
        linear-gradient(180deg, rgba(5, 14, 24, .2) 0%, rgba(5, 14, 24, .75) 100%);
}

.hero-dots {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: radial-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px);
    background-size: 32px 32px;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    opacity: .45;
    animation: blobFloat 12s ease-in-out infinite alternate;
}

.blob1 {
    width: 560px;
    height: 560px;
    background: var(--green);
    top: -120px;
    right: -100px;
}

.blob2 {
    width: 340px;
    height: 340px;
    background: var(--amber);
    bottom: -80px;
    left: 6%;
    animation-delay: -5s;
}

.blob3 {
    width: 280px;
    height: 280px;
    background: var(--indigo);
    bottom: 30%;
    right: 10%;
    animation-delay: -9s;
}

@keyframes blobFloat {
    0%   { transform: scale(1) translateY(0) }
    100% { transform: scale(1.15) translateY(-28px) }
}

.fshape {
    position: absolute;
    z-index: 2;
    animation: shapeFloat 8s ease-in-out infinite alternate;
}

.fs1 { width:22px; height:22px; background:var(--amber); top:19%; left:9%; border-radius:6px; transform:rotate(18deg); }
.fs2 { width:16px; height:16px; background:var(--coral); top:35%; right:20%; border-radius:50%; animation-delay:-3s; }
.fs3 { width:13px; height:13px; background:var(--green); bottom:32%; left:21%; border-radius:4px; transform:rotate(45deg); animation-delay:-5s; }
.fs4 { width:18px; height:18px; background:var(--indigo); top:60%; left:6%; border-radius:50%; animation-delay:-7s; }
.fs5 { width:14px; height:14px; background:var(--sky); bottom:24%; right:8%; border-radius:5px; transform:rotate(30deg); animation-delay:-2s; }

@keyframes shapeFloat {
    0%   { transform: translateY(0) rotate(var(--r, 0deg)) }
    100% { transform: translateY(-18px) rotate(calc(var(--r, 0deg) + 25deg)) }
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 130px 5vw 90px;
    max-width: 820px;
    width: 100%;
}

.hero-h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.4rem, 6.5vw, 5.4rem);
    font-weight: 800;
    color: white;
    line-height: 1.04;
    letter-spacing: -.03em;
    margin-bottom: 1.5rem;
}

.hero-h1 em {
    font-style: normal;
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: clamp(.9rem, 2.5vw, 1.1rem);
    color: rgba(255, 255, 255, .75);
    max-width: 580px;
    margin-bottom: 2.8rem;
    font-weight: 400;
    line-height: 1.85;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.btn-hero-primary {
    background: var(--green);
    color: var(--ink);
    padding: 1rem 2.4rem;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: .98rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 6px 26px rgba(0, 197, 142, .5);
    transition: transform .2s, box-shadow .2s;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 34px rgba(0, 197, 142, .6);
}

.btn-hero-ghost {
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255, 255, 255, .3);
    color: white;
    padding: 1rem 2.4rem;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: .98rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background .2s, transform .2s;
}

.btn-hero-ghost:hover {
    background: rgba(255, 255, 255, .2);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.hstat {
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 18px;
    padding: .9rem 1.5rem;
}

.hstat .num {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.hstat .lbl {
    font-size: .72rem;
    color: rgba(255, 255, 255, .6);
    line-height: 1.4;
    margin-top: .2rem;
}

.scroll-cue {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, .4);
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    animation: scrollBob 2.4s ease-in-out infinite;
}

@keyframes scrollBob {
    0%, 100% { transform: translateX(-50%) translateY(0) }
    50%       { transform: translateX(-50%) translateY(9px) }
}

/* ─── TRUST BAR ─── */
#trust {
    padding: 1.3rem 5vw;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trust-item {
    color: white;
    font-size: .82rem;
    font-weight: 500;
    letter-spacing: .04em;
    font-family: 'Outfit', sans-serif;
}

.trust-sep {
    color: white;
    font-size: 1rem;
}

/* ─── SHARED ─── */
section {
    padding: 80px 5vw;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: 'Outfit', sans-serif;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: .9rem;
}

.tag-green  { color: var(--green-dark); }
.tag-amber  { color: #92400E; }
.tag-coral  { color: #C0392B; }
.tag-indigo { color: #3730A3; }
.tag-sky    { color: #0369A1; }

.section-h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.75rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -.035em;
    color: var(--ink);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.section-lead {
    font-size: 1rem;
    color: var(--ink-soft);
    max-width: 560px;
    font-weight: 400;
    line-height: 1.85;
}

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

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

/* ─── ABOUT ─── */
#about {
    background: var(--surface);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5.5rem;
    align-items: center;
    margin-top: 4rem;
}

.about-img-wrap {
    position: relative;
}

.about-img-main {
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(0, 0, 0, .13);
}

.about-img-main img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    display: block;
}

.about-img-main::after {
    content: '';
    position: absolute;
    top: -14px;
    left: -14px;
    width: 60px;
    height: 60px;
    border-top: 3px solid var(--green);
    border-left: 3px solid var(--green);
    border-radius: 8px 0 0 0;
}

.about-floating-card {
    position: absolute;
    bottom: -24px;
    right: -28px;
    background: white;
    border-radius: 22px;
    padding: 1.15rem 1.6rem;
    box-shadow: 0 14px 44px rgba(0, 0, 0, .11);
    display: flex;
    align-items: center;
    gap: 13px;
}

.afc-text strong {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: .95rem;
    font-weight: 700;
    color: var(--ink);
}

.afc-text span {
    font-size: .75rem;
    color: var(--muted);
    font-weight: 400;
}

.about-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2.2rem;
}

.apoint {
    display: flex;
    gap: 1.1rem;
    align-items: flex-start;
}

.apoint-bar {
    width: 3px;
    min-height: 54px;
    border-radius: 4px;
    flex-shrink: 0;
    margin-top: 5px;
}

.bar-green  { background: linear-gradient(180deg, var(--green), var(--green-dark)); }
.bar-amber  { background: linear-gradient(180deg, var(--amber), #D97706); }
.bar-coral  { background: linear-gradient(180deg, var(--coral), #C0392B); }
.bar-indigo { background: linear-gradient(180deg, var(--indigo), #3730A3); }

.apoint-text strong {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: .98rem;
    color: var(--ink);
    margin-bottom: .2rem;
}

.apoint-text p {
    font-size: .88rem;
    color: var(--ink-soft);
    font-weight: 400;
    line-height: 1.7;
}

/* ─── VISION ─── */
#vision {
    background: white;
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3.5rem;
}

.vm-card {
    border-radius: 30px;
    padding: 2.8rem;
    position: relative;
    overflow: hidden;
    transition: transform .35s;
}

.vm-card:hover { transform: translateY(-6px); }

.vm-card.green { background: linear-gradient(135deg, var(--green-pale), #b3f0de); }
.vm-card.amber { background: linear-gradient(135deg, var(--amber-light), #fde9aa); }

.vm-card::after {
    content: '';
    position: absolute;
    right: -50px;
    bottom: -50px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .45);
}

.vm-kicker {
    font-family: 'Outfit', sans-serif;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.vm-card.green .vm-kicker { color: var(--green-dark); }
.vm-card.amber .vm-kicker { color: #92400E; }

.vm-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.55rem;
    font-weight: 800;
    letter-spacing: -.03em;
    color: var(--ink);
    margin-bottom: 1.1rem;
    line-height: 1.2;
}

.vm-card p {
    font-size: .93rem;
    color: var(--ink-soft);
    font-weight: 400;
    line-height: 1.85;
}

.values-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    margin-top: 2.5rem;
}

.value-chip {
    border-radius: 22px;
    padding: 1.6rem;
    text-align: center;
    transition: transform .3s;
}

.value-chip:hover { transform: translateY(-5px); }

.value-chip.green  { background: var(--green-pale); }
.value-chip.amber  { background: var(--amber-light); }
.value-chip.coral  { background: var(--coral-light); }
.value-chip.indigo { background: var(--indigo-light); }

.value-chip img {
    width: 54px;
    height: 54px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: .8rem;
}

.value-chip h4 {
    font-family: 'Outfit', sans-serif;
    font-size: .92rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: .35rem;
}

.value-chip p {
    font-size: .8rem;
    color: var(--ink-soft);
    font-weight: 400;
    line-height: 1.6;
}

/* ─── PROGRAMMES ─── */
#programmes {
    background: var(--surface);
}

.prog-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.prog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem;
}

.prog-card {
    border-radius: 26px;
    overflow: hidden;
    background: white;
    border: 1.5px solid var(--border);
    transition: transform .3s, box-shadow .3s;
}

.prog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 54px rgba(0, 0, 0, .1);
}

.prog-img {
    height: 215px;
    overflow: hidden;
    position: relative;
}

.prog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
    display: block;
}

.prog-card:hover .prog-img img { transform: scale(1.08); }

.prog-body { padding: 1.6rem; }

.prog-badge {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    padding: .3rem .9rem;
    border-radius: 50px;
    margin-bottom: .8rem;
}

.pb-green  { background: var(--green-pale); color: var(--green-dark); }
.pb-amber  { background: var(--amber-light); color: #92400E; }
.pb-coral  { background: var(--coral-light); color: #C0392B; }

.prog-body h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.12rem;
    font-weight: 800;
    letter-spacing: -.025em;
    margin-bottom: .55rem;
}

.prog-body p {
    font-size: .87rem;
    color: var(--ink-soft);
    line-height: 1.8;
    font-weight: 400;
    margin-bottom: 1.1rem;
}

.prog-meta {
    display: flex;
    gap: .7rem;
    flex-wrap: wrap;
    font-size: .72rem;
    color: var(--muted);
    font-weight: 500;
}

.prog-meta span {
    background: var(--surface);
    border-radius: 50px;
    padding: .22rem .8rem;
    border: 1px solid var(--border);
}

.btn-outline {
    background: transparent;
    color: var(--ink);
    border: 2px solid var(--border);
    padding: .78rem 1.8rem;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: .9rem;
    cursor: pointer;
    transition: all .2s;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
}

.btn-outline:hover {
    border-color: var(--green-dark);
    color: var(--green-dark);
    transform: translateY(-2px);
}

/* ─── VIDEO ─── */
#video-section {
    background: var(--ink);
    position: relative;
    overflow: hidden;
}

#video-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(0, 197, 142, .07) 1px, transparent 1px);
    background-size: 28px 28px;
}

#video-section .section-tag  { color: var(--amber); }
#video-section .section-h2   { color: white; }
#video-section .section-lead { color: rgba(255, 255, 255, .6); }

.video-wrap {
    margin-top: 3rem;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 28px 80px rgba(0, 0, 0, .5);
    position: relative;
    aspect-ratio: 16/9;
}

.video-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* ─── GALLERY ─── */
#gallery {
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 12px;
    margin-top: 3rem;
}

.gitem {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gitem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .55s;
}

.gitem:hover img { transform: scale(1.07); }

.gitem-cap {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 50, 35, .8) 0%, transparent 55%);
    display: flex;
    align-items: flex-end;
    padding: 1rem 1.2rem;
    opacity: 0;
    transition: opacity .3s;
}

.gitem:hover .gitem-cap { opacity: 1; }

.gitem-cap span {
    color: white;
    font-size: .8rem;
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
}

.g1 { grid-column: span 5; height: 340px; }
.g2 { grid-column: span 4; height: 340px; }
.g3 { grid-column: span 3; height: 340px; }
.g4 { grid-column: span 4; height: 235px; }
.g5 { grid-column: span 5; height: 235px; }
.g6 { grid-column: span 3; height: 235px; }

/* ─── TEAM ─── */
#team {
    background: var(--surface);
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 820px;
    margin: 3.5rem auto 0;
}

.team-card {
    border-radius: 30px;
    overflow: hidden;
    border: 2px solid var(--border);
    background: white;
    transition: transform .3s, box-shadow .3s;
}

.team-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 26px 56px rgba(0, 0, 0, .11);
}

.team-img {
    height: 320px;
    overflow: hidden;
    position: relative;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform .55s;
}

.team-card:hover .team-img img { transform: scale(1.04); }

.team-img-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 5rem;
    color: white;
}

.fb-g { background: linear-gradient(135deg, var(--green), var(--green-dark)); }
.fb-f { background: linear-gradient(135deg, var(--amber), #D97706); }

.team-info { padding: 1.7rem; }

.team-info h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -.03em;
    margin-bottom: .2rem;
}

.team-info .role {
    font-family: 'Outfit', sans-serif;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--green-dark);
    margin: .25rem 0 .9rem;
    display: block;
}

.team-info p {
    font-size: .88rem;
    color: var(--ink-soft);
    line-height: 1.8;
    font-weight: 400;
}

/* ─── CONTACT ─── */
#contact {
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5.5rem;
    margin-top: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.9rem;
}

.cinfo-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.cinfo-icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ci-green  { background: var(--green-pale); }
.ci-amber  { background: var(--amber-light); }
.ci-coral  { background: var(--coral-light); }
.ci-indigo { background: var(--indigo-light); }

.cinfo-icon img { width: 22px; height: 22px; }

.cinfo-text strong {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    margin-bottom: .25rem;
    font-size: .95rem;
}

.cinfo-text a,
.cinfo-text p {
    color: var(--ink-soft);
    text-decoration: none;
    font-size: .93rem;
    font-weight: 400;
}

.cinfo-text a:hover { color: var(--green-dark); }

.enrol-note {
    background: linear-gradient(135deg, var(--green-pale), #b8f5e0);
    border-radius: 22px;
    padding: 1.5rem;
    border-left: 4px solid var(--green);
}

.enrol-note p {
    font-size: .9rem;
    color: var(--green-deep);
    font-weight: 500;
    line-height: 1.75;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: .45rem;
}

.form-group label {
    font-family: 'Outfit', sans-serif;
    font-size: .78rem;
    font-weight: 700;
    color: var(--ink-soft);
    letter-spacing: .04em;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: .82rem 1.1rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: .93rem;
    font-weight: 400;
    color: var(--ink);
    background: var(--surface);
    transition: border-color .2s, box-shadow .2s;
    outline: none;
    resize: none;
    width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(0, 197, 142, .12);
    background: white;
}

.form-group textarea { height: 135px; }

.btn-submit {
    background: var(--green);
    color: var(--ink);
    border: none;
    padding: 1.05rem 2rem;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: .98rem;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    margin-top: .6rem;
    box-shadow: 0 6px 26px rgba(0, 197, 142, .38);
    transition: transform .2s, box-shadow .2s, background .2s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(0, 197, 142, .48);
    background: var(--green-dark);
    color: white;
}

/* ─── FOOTER ─── */
footer {
    background: var(--ink);
    color: rgba(255, 255, 255, .4);
    padding: 3rem 5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    color: white;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, .38);
    text-decoration: none;
    font-size: .86rem;
    font-weight: 500;
    transition: color .2s;
    font-family: 'Outfit', sans-serif;
}

.footer-links a:hover { color: var(--green); }

footer .copy {
    font-size: .78rem;
    font-weight: 400;
}

/* ══════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
══════════════════════════════════════════ */

/* ─── TABLET LANDSCAPE (≤1100px) ─── */
@media (max-width: 1100px) {
    .prog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        gap: 3.5rem;
    }
}

/* ─── TABLET PORTRAIT (≤900px) ─── */
@media (max-width: 900px) {

    /* Nav */
    .nav-links { display: none; }
    .nav-cta   { display: none; }
    .nav-hamburger { display: flex; }

    /* Hero */
    .hero-content {
        padding: 110px 5vw 80px;
    }

    .blob1 { width: 320px; height: 320px; }
    .blob2 { width: 200px; height: 200px; }
    .blob3 { width: 160px; height: 160px; }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-top: 2.5rem;
    }

    .about-img-main img { height: 300px; }
    .about-floating-card { display: none; }

    /* Vision */
    .vm-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2.5rem;
    }

    .vm-card { padding: 2rem; }

    .values-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    /* Programmes */
    .prog-grid { grid-template-columns: repeat(2, 1fr); }

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

    /* Team */
    .team-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-top: 2.5rem;
    }

    /* Gallery */
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .g1,.g2,.g3,.g4,.g5,.g6 { grid-column: span 1; height: 200px; }

    /* Footer */
    footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.2rem;
        padding: 2.5rem 5vw;
    }

    .footer-links { gap: 1.2rem; }
}

/* ─── MOBILE (≤600px) ─── */
@media (max-width: 600px) {

    section { padding: 60px 5vw; }

    /* Hero */
    .hero-content {
        padding: 100px 5vw 60px;
    }

    .hero-btns {
        flex-direction: column;
        gap: .75rem;
        margin-bottom: 2.5rem;
    }

    .btn-hero-primary,
    .btn-hero-ghost {
        width: 100%;
        text-align: center;
        padding: .9rem 1.5rem;
    }

    .hero-stats {
        gap: .75rem;
    }

    .hstat {
        padding: .75rem 1.1rem;
        flex: 1 1 calc(33% - .75rem);
        min-width: 80px;
    }

    .hstat .num { font-size: 1.3rem; }

    #trust {
        gap: .6rem;
        padding: 1rem 5vw;
    }

    .trust-sep { display: none; }

    .trust-item {
        background: rgba(255,255,255,.1);
        border-radius: 20px;
        padding: .3rem .85rem;
        font-size: .75rem;
    }

    /* Programmes */
    .prog-grid { grid-template-columns: 1fr; }

    /* Values */
    .values-row { grid-template-columns: 1fr; }

    /* Team */
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .team-img { height: 260px; }

    /* Form */
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.1rem;
    }

    /* Vision cards */
    .vm-card { padding: 1.6rem; }
    .vm-card h3 { font-size: 1.25rem; }

    /* Video */
    .video-wrap { border-radius: 18px; }

    /* Gallery */
    .gallery-grid { grid-template-columns: 1fr; gap: 10px; }
    .g1,.g2,.g3,.g4,.g5,.g6 { grid-column: span 1; height: 180px; }

    /* Footer */
    .footer-links {
        flex-wrap: wrap;
        gap: .9rem 1.4rem;
    }

    footer .copy {
        font-size: .74rem;
        width: 100%;
    }

    /* Nav logo text — shorter on very small screens */
    .logo-text { font-size: .9rem; }
    .logo-text span { font-size: .52rem; }
}

/* ─── SMALL MOBILE (≤380px) ─── */
@media (max-width: 380px) {

    nav { padding: 0 4vw; }

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

    .hstat { padding: .6rem .8rem; }
    .hstat .num { font-size: 1.1rem; }

    .logo-text span { display: none; }
}