:root {
    --ink: #243040;
    --muted: #657083;
    --primary: #146c94;
    --primary-dark: #0b4d6a;
    --coral: #f26f5b;
    --sun: #ffc857;
    --mint: #80cfa9;
    --cream: #fffaf0;
    --soft: #f5f7fb;
    --line: #e6ebf2;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--ink);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.65;
    background: #fff;
}

a {
    color: var(--primary);
    text-decoration: none;
}

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

.btn {
    border-radius: 8px;
    font-weight: 700;
}

.btn-primary {
    --bs-btn-bg: var(--primary);
    --bs-btn-border-color: var(--primary);
    --bs-btn-hover-bg: var(--primary-dark);
    --bs-btn-hover-border-color: var(--primary-dark);
}

.btn-success {
    --bs-btn-bg: #198754;
    --bs-btn-border-color: #198754;
}

.site-header {
    box-shadow: 0 8px 24px rgba(36, 48, 64, .06);
}

.navbar-brand strong {
    letter-spacing: 0;
    font-size: 1rem;
}

.navbar-brand small {
    color: var(--muted);
    font-size: .75rem;
    line-height: 1.1;
}

.navbar .nav-link {
    color: var(--ink);
    font-weight: 650;
}

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

.program-menu {
    max-height: 70vh;
    overflow: auto;
    min-width: 320px;
    border-radius: 8px;
    border-color: var(--line);
}

.hero-wrap {
    position: relative;
    min-height: min(720px, 88vh);
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
}

.hero-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 35, 49, .84), rgba(15, 35, 49, .58), rgba(15, 35, 49, .12));
    z-index: -1;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    color: #fff;
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.hero-content h1 {
    font-size: clamp(2.4rem, 5vw, 5rem);
    max-width: 760px;
    line-height: 1.04;
    font-weight: 850;
    letter-spacing: 0;
}

.hero-content p {
    font-size: clamp(1.05rem, 1.7vw, 1.32rem);
    max-width: 720px;
    color: rgba(255, 255, 255, .9);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: var(--coral);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
    font-size: .78rem;
    margin-bottom: .75rem;
}

.section-pad {
    padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.soft-bg {
    background: var(--soft);
}

.section-heading {
    max-width: 740px;
    margin-bottom: 2rem;
}

.section-title {
    font-size: clamp(2rem, 3.4vw, 3.25rem);
    font-weight: 850;
    line-height: 1.12;
    letter-spacing: 0;
    margin-bottom: 1rem;
}

.section-copy,
.lead {
    color: var(--muted);
    font-size: 1.08rem;
}

.narrow {
    max-width: 920px;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.benefit-card,
.mini-card,
.why-card,
.testimonial-card,
.blog-card,
.program-info,
.enquiry-form,
.gallery-card,
.map-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(36, 48, 64, .08);
}

.benefit-card {
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: .8rem;
    min-height: 100px;
    font-weight: 800;
}

.benefit-card i {
    color: var(--coral);
    font-size: 1.5rem;
}

.service-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    transition: transform .2s ease, box-shadow .2s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 44px rgba(20, 108, 148, .15);
}

.service-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: var(--soft);
}

.service-card-body {
    padding: 1rem;
}

.service-card-body span,
.blog-card span,
.testimonial-card span {
    display: block;
    color: var(--coral);
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
}

.service-card h3,
.why-card h3,
.program-info h3,
.blog-card h2,
.testimonial-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1.25;
    margin: .45rem 0;
}

.service-card p,
.why-card p,
.blog-card p,
.testimonial-card p {
    color: var(--muted);
    margin-bottom: 0;
}

.why-card,
.testimonial-card,
.blog-card {
    padding: 1.35rem;
}

.why-card i,
.testimonial-card i {
    color: var(--primary);
    font-size: 1.55rem;
}

.filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
}

.filter-pills span {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: .5rem .75rem;
    background: #fff;
    font-weight: 750;
    color: var(--muted);
}

.mini-card {
    padding: 1rem;
    display: flex;
    gap: .7rem;
    align-items: center;
    font-weight: 750;
}

.mini-card i,
.outcome-list i {
    color: #198754;
    font-size: 1.2rem;
}

.program-info {
    padding: 1rem;
    position: sticky;
    top: 96px;
}

.program-info img {
    width: 100%;
    border-radius: 8px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    margin-bottom: 1rem;
}

.outcome-list {
    display: grid;
    gap: .85rem;
}

.outcome-list div {
    display: flex;
    align-items: center;
    gap: .8rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    font-weight: 750;
}

.accordion-item {
    border-color: var(--line);
}

.accordion-button {
    font-weight: 800;
}

.testimonial-band {
    background: linear-gradient(135deg, #fff8e7, #eefaf4);
}

.gallery-card {
    margin: 0;
    overflow: hidden;
}

.gallery-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.gallery-card figcaption {
    padding: .9rem 1rem;
    font-weight: 800;
}

.enquiry-band {
    background: #0f2431;
    color: #fff;
}

.enquiry-band .section-copy {
    color: rgba(255,255,255,.78);
}

.enquiry-form {
    padding: clamp(1rem, 3vw, 2rem);
}

.enquiry-form label {
    color: var(--ink);
    font-weight: 750;
}

.contact-stack {
    display: grid;
    gap: .75rem;
}

.contact-tile {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .9rem 1rem;
    border-radius: 8px;
    background: rgba(255,255,255,.1);
    color: #fff;
    border: 1px solid rgba(255,255,255,.22);
}

.contact-tile:hover {
    color: #fff;
    background: rgba(255,255,255,.16);
}

.contact-tile i {
    font-size: 1.35rem;
}

.location-section {
    background: var(--cream);
}

.map-card {
    min-height: 360px;
    display: grid;
    place-items: center;
    text-align: center;
    background:
        linear-gradient(45deg, rgba(20,108,148,.08) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(242,111,91,.08) 25%, transparent 25%),
        #fff;
    background-size: 42px 42px;
    padding: 2rem;
}

.map-card i {
    color: var(--coral);
    font-size: 3rem;
}

.content-block {
    margin-top: 2rem;
}

.content-block h2,
.narrow h2 {
    font-weight: 850;
    font-size: 1.55rem;
}

.footer-section {
    background: #172331;
    color: rgba(255,255,255,.82);
    padding: 4rem 0 6rem;
}

.footer-section a {
    color: rgba(255,255,255,.86);
}

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

.footer-heading {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-links li {
    margin-bottom: .45rem;
}

.footer-copy {
    max-width: 320px;
}

.social-pill {
    width: 40px;
    height: 40px;
    display: inline-grid;
    place-items: center;
    border-radius: 8px;
    background: rgba(255,255,255,.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.15);
    margin-top: 2.5rem;
    padding-top: 1.25rem;
    font-size: .92rem;
}

.floating-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 22px;
    z-index: 1020;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    background: #1daa61;
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 16px 32px rgba(0,0,0,.2);
    font-size: 1.7rem;
}

.floating-whatsapp:hover {
    color: #fff;
    background: #168a4e;
}

.mobile-cta-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1030;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 24px rgba(36, 48, 64, .12);
}

.mobile-cta-bar a {
    padding: .72rem .35rem;
    text-align: center;
    font-size: .85rem;
    font-weight: 800;
    color: var(--ink);
}

.mobile-cta-bar a + a {
    border-left: 1px solid var(--line);
}

.admin-shell {
    min-height: 100vh;
    background: var(--soft);
}

.admin-sidebar {
    background: #172331;
    min-height: 100vh;
}

.admin-sidebar a {
    display: block;
    color: rgba(255,255,255,.82);
    padding: .72rem 1rem;
    border-radius: 8px;
    font-weight: 700;
}

.admin-sidebar a:hover,
.admin-sidebar a.active {
    background: rgba(255,255,255,.1);
    color: #fff;
}

.stat-card {
    padding: 1.2rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.stat-card span {
    color: var(--muted);
    font-weight: 800;
    font-size: .82rem;
    text-transform: uppercase;
}

.stat-card strong {
    display: block;
    font-size: 2rem;
    line-height: 1.1;
}

@media (max-width: 991.98px) {
    .hero-wrap {
        min-height: 680px;
    }

    .hero-wrap::after {
        background: rgba(15, 35, 49, .76);
    }

    .program-info {
        position: static;
    }
}

@media (max-width: 767.98px) {
    body {
        padding-bottom: 56px;
    }

    .hero-content {
        padding-top: 5rem;
        padding-bottom: 4rem;
    }

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

    .floating-whatsapp {
        bottom: 76px;
        width: 52px;
        height: 52px;
    }

    .section-pad {
        padding: 3.25rem 0;
    }
}
