/* =========================================================
   WIDEWORLD SOLUTIONS — SITE STYLESHEET
   Palette: Navy #030D28 · Blue #3F92C4 · Grey #9E9E9E
   ========================================================= */

:root {
    /* Brand palette (as specified) */
    --navy: #030D28;
    --blue: #3F92C4;
    --grey: #9E9E9E;

    /* Tints / shades derived from the brand colours */
    --navy-light: #0E1D45;
    --navy-soft: #10193A;
    --blue-dark: #2E749E;
    --blue-light: #E9F3FA;
    --grey-light: #F1F2F4;
    --white: #FFFFFF;
    --off-white: #F7F9FB;
    --text-body: #3A4152;
    --text-muted: #6B7280;

    --border-radius: 10px;
    --border-radius-lg: 18px;
    --shadow-sm: 0 2px 10px rgba(3, 13, 40, 0.06);
    --shadow-md: 0 10px 30px rgba(3, 13, 40, 0.10);
    --shadow-lg: 0 20px 50px rgba(3, 13, 40, 0.18);

    --font-display: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    --container-width: 1200px;
    --transition: 0.25s ease;
}

/* ---------- Reset ---------- */
* , *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text-body);
    background: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    color: var(--navy);
    line-height: 1.2;
    margin: 0 0 0.6em;
    font-weight: 700;
}
p { margin: 0 0 1em; }
button { font-family: inherit; cursor: pointer; }

.skip-link {
    position: absolute;
    left: -999px;
    top: 0;
    background: var(--blue);
    color: #fff;
    padding: 10px 16px;
    z-index: 999;
}
.skip-link:focus { left: 10px; top: 10px; }

:focus-visible {
    outline: 3px solid var(--blue);
    outline-offset: 2px;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Section spacing / eyebrow ---------- */
.section { padding: 90px 0; }
.section-tight { padding: 60px 0; }
.section-alt { background: var(--off-white); }
.section-tint { background: linear-gradient(180deg, var(--blue-light) 0%, #FBFDFE 100%); }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 14px;
}
.eyebrow::before {
    content: "";
    width: 26px;
    height: 2px;
    background: var(--blue);
    display: inline-block;
}

.section-head { max-width: 720px; margin-bottom: 50px; }
.section-head.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.section-head p { color: var(--text-muted); font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid transparent;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
    white-space: nowrap;
}
.btn-small { padding: 10px 20px; font-size: 0.85rem; }
.btn-primary {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 8px 20px rgba(63, 146, 196, 0.35);
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(63, 146, 196, 0.4); }
.btn-outline {
    background: transparent;
    border-color: rgba(255,255,255,0.5);
    color: #fff;
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; transform: translateY(-2px); }
.btn-outline-navy {
    background: transparent;
    border-color: var(--navy);
    color: var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 500;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid #ECEFF3;
    backdrop-filter: blur(10px);
    transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 6px 24px rgba(3,13,40,0.08); }
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 14px;
    padding-bottom: 14px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.logo-title { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--navy); }
.logo-sub { font-family: var(--font-display); font-weight: 500; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--blue); }

.main-nav > ul { display: flex; align-items: center; gap: 2px; }
.main-nav a, .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    font-size: 0.93rem;
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--text-body);
    border-radius: 50px;
    background: transparent;
    border: none;
    transition: background var(--transition), color var(--transition);
}
.main-nav a:hover, .main-nav a.active,
.dropdown-toggle:hover, .dropdown-toggle.active {
   background: transparent;
    color: #184eab;
/*    border-bottom: 1px solid;*/
    border-radius: 0;
}
.dropdown-toggle i { font-size: 0.65rem; transition: transform var(--transition); color: var(--grey); }
.dropdown-toggle:hover i, .dropdown-toggle.active i { color: var(--blue-dark); }

/* Dropdown (desktop) */
.has-dropdown { position: relative; }
.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 230px;
    background: #fff;
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
    border: 1px solid #EEF0F4;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
    z-index: 50;
}
.has-dropdown.open .dropdown-menu,
.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.has-dropdown.open .dropdown-toggle i,
.has-dropdown:hover .dropdown-toggle i { transform: rotate(180deg); }
.dropdown-menu li + li { margin-top: 2px; }
.dropdown-menu a {
    display: block;
    padding: 11px 14px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-body);
    white-space: nowrap;
}
.dropdown-menu a:hover, .dropdown-menu a.active { background: var(--blue-light); color: var(--blue-dark); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--text-muted);
}
.header-phone:hover { color: var(--blue-dark); }

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    padding: 0;
}
.nav-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--navy);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(3,13,40,0.88) 26%, rgba(3,13,40,0.55) 55%, rgba(63,146,196,0.28) 100%);
    z-index: 1;
}
.hero-content { position: relative; z-index: 2; max-width: 100%; padding: 120px 0 90px; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(63, 146, 196, 0.16);
    border: 1px solid rgba(63, 146, 196, 0.5);
    color: #BFE1F5;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 26px;
}
.hero h1 {
    font-size: clamp(2.2rem, 4.6vw, 3.4rem);
    color: #fff;
    margin-bottom: 22px;
}
.hero h1 span { color: var(--blue); }
.hero p {
    font-size: 1.12rem;
    color: rgba(255,255,255,0.82);
    margin-bottom: 34px;
    max-width: 540px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

.hero-route {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
    opacity: 0.5;
    pointer-events: none;
}
.hero-route svg { display: block; }
@media (max-width: 960px) {
    .hero-route { display: none; }
}

/* ---------- Stat strip ---------- */
.stat-strip {
    background: var(--off-white);
    color: var(--navy);
    position: relative;
    margin-top: -1px;
    border-bottom: 1px solid #ECEFF3;
}
.stat-strip .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding-top: 44px;
    padding-bottom: 44px;
}
.stat-item { text-align: center; border-left: 1px solid #E1E5EC; }
.stat-item:first-child { border-left: none; }
.stat-icon { font-size: 1.3rem; color: var(--blue); margin-bottom: 10px; }
.stat-number {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--blue-dark);
    margin-bottom: 4px;
}
.stat-label { font-size: 0.85rem; color: var(--text-muted); }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Fluid card row that wraps naturally and centers a short last row
   (used where the item count doesn't divide evenly into a fixed grid) */
.grid-fluid { display: flex; flex-wrap: wrap; justify-content: center; gap: 28px; }
.grid-fluid > * { flex: 1 1 250px; max-width: 300px; }
.grid-fluid.grid-fluid-wide > * { flex-basis: 320px; max-width: 360px; }

.card {
    background: #fff;
    border-radius: var(--border-radius-lg);
    padding: 34px 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #EDEFF2;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    height: 100%;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(63,146,196,0.25); }

.icon-badge {
    width: 16px;
    height: 18px;
    border-radius: 14px;
/*    background: var(--blue-light);*/
    color: var(--blue-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
}
.card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.card p { color: var(--text-muted); font-size: 0.96rem; margin-bottom: 0; }

/* ---------- Split / about layout ---------- */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.split-media { position: relative; }
.split-media img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 460px;
    object-fit: cover;
}
.split-media .float-card {
    position: absolute;
    bottom: -26px;
    left: -26px;
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 260px;
}
.float-card .icon-badge { margin: 0; width: 44px; height: 44px; font-size: 1.1rem; flex-shrink: 0; }
.float-card strong { display: block; font-family: var(--font-display); color: var(--navy); font-size: 1rem; }
.float-card span { font-size: 0.82rem; color: var(--text-muted); }

.split-body ul.check-list li {
    display: flex;
    gap: 12px;
    padding: 8px 0;
    color: var(--text-body);
}
.check-list li i { color: var(--blue); margin-top: 3px; }

/* ---------- Info list (target market, focus areas) ---------- */
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 0; }
.pill {
    background: var(--blue-light);
    color: var(--blue-dark);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* ---------- Values / pillars with route connector ---------- */
.route-track {
    position: relative;
    padding-top: 10px;
}
.route-track::before {
    content: "";
    position: absolute;
    top: 38px;
    left: 4%;
    right: 4%;
    height: 2px;
    background-image: linear-gradient(90deg, rgba(63,146,196,0.55) 0 10px, transparent 10px 20px);
    background-size: 20px 2px;
    background-repeat: repeat-x;
    z-index: 0;
}
.route-step { position: relative; z-index: 1; text-align: left; }
.route-dot {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 22px;
    border: 4px solid var(--off-white);
    box-shadow: 0 0 0 2px rgba(63,146,196,0.35);
}

/* ---------- Programmes accordion ---------- */
.programme-list { display: flex; flex-direction: column; gap: 14px; }
.programme-item {
    background: #fff;
    border: 1px solid #E7EAF0;
    border-radius: var(--border-radius);
    overflow: hidden;
}
.programme-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 26px;
    background: transparent;
    border: none;
    text-align: left;
}
.programme-trigger:hover { background: var(--off-white); }
.programme-trigger .p-left { display: flex; align-items: center; gap: 18px; }
.programme-index {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--blue);
    font-size: 0.85rem;
    background: var(--blue-light);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.programme-trigger h3 { margin: 0; font-size: 1.02rem; }
.programme-meta { font-size: 0.82rem; color: var(--text-muted); font-weight: 500; }
.programme-trigger .chevron { color: var(--grey); transition: transform var(--transition); flex-shrink: 0; }
.programme-item.open .chevron { transform: rotate(180deg); color: var(--blue); }
.programme-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition);
    background: var(--off-white);
}
.programme-panel-inner { padding: 4px 26px 24px 78px; color: var(--text-muted); font-size: 0.95rem; }
.programme-badge {
    display: inline-block;
    margin-top: 10px;
    background: var(--navy);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
}

/* ---------- Short courses table/list ---------- */
.course-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.course-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #fff;
    border: 1px solid #E7EAF0;
    border-radius: var(--border-radius);
    padding: 18px 20px;
}
.course-item i { color: var(--blue); font-size: 1.2rem; margin-top: 3px; }
.course-item h4 { font-size: 0.98rem; margin: 0 0 4px; color: var(--navy); }
.course-item small { color: var(--grey); font-size: 0.76rem; }

/* ---------- Timeline / process ---------- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ---------- CTA band ---------- */
.cta-band {
    background: linear-gradient(120deg, var(--blue-light) 0%, #EAF4FB 60%, #DFEFFA 100%);
    border: 1px solid #D9EAF5;
    color: var(--text-body);
    border-radius: var(--border-radius-lg);
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}
.cta-band::after {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(63,146,196,0.15);
    filter: blur(10px);
}
.cta-band h2 { color: var(--navy); margin-bottom: 8px; }
.cta-band p { color: var(--text-muted); margin: 0; max-width: 440px; }
.cta-band-actions { display: flex; gap: 14px; flex-wrap: wrap; position: relative; z-index: 1; }

/* ---------- Banner (page intro) ---------- */
.page-banner {
    position: relative;
    padding: 150px 0 60px;
    color: var(--text-body);
    background: linear-gradient(120deg, var(--blue-light) 0%, #FBFDFE 55%, #FFFFFF 100%);
    border-bottom: 1px solid #ECEFF3;
    overflow: hidden;
}
.page-banner::after {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(63,146,196,0.14), transparent 70%);
}
.page-banner .eyebrow { color: var(--blue-dark); }
.page-banner .eyebrow::before { background: var(--blue-dark); }
.page-banner h1 { color: var(--navy); font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 14px; }
.page-banner p { color: var(--text-muted); max-width: 640px; font-size: 1.05rem; margin: 0; }
.breadcrumb { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 18px; }
.breadcrumb a { color: var(--blue-dark); }
.breadcrumb a:hover { color: var(--navy); }

/* ---------- Partnerships ---------- */
.impact-photo { border-radius: var(--border-radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.impact-photo img { width: 100%; height: 420px; object-fit: cover; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 50px; align-items: flex-start; }
.contact-card {
    background: #fff;
    color: var(--text-body);
    border-radius: var(--border-radius-lg);
    padding: 40px 34px;
    box-shadow: var(--shadow-md);
    border: 1px solid #EDEFF2;
}
.contact-card h3 { color: var(--navy); font-size: 1.2rem; }
.contact-block { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid #EEF0F4; }
.contact-block:last-child { border-bottom: none; }
.contact-block .icon-badge { margin: 0; flex-shrink: 0; }
.contact-block strong { display: block; color: var(--navy); font-family: var(--font-display); font-size: 0.95rem; margin-bottom: 4px; }
.contact-block span, .contact-block a { color: var(--text-muted); font-size: 0.92rem; display: block; }
.contact-block a:hover { color: var(--blue-dark); }

.form-card {
    background: #fff;
    border-radius: var(--border-radius-lg);
    padding: 42px;
    box-shadow: var(--shadow-md);
    border: 1px solid #EDEFF2;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid #E1E4EA;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-body);
    background: var(--off-white);
    transition: border-color var(--transition), background var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue);
    background: #fff;
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-error { color: #C0392B; font-size: 0.8rem; margin-top: 6px; display: none; }
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea { border-color: #C0392B; }
.form-group.has-error .form-error { display: block; }

.form-status {
    display: none;
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 22px;
    font-size: 0.92rem;
    font-weight: 500;
}
.form-status.success { display: block; background: #E7F6EC; color: #1E7B3E; border: 1px solid #BEE7CB; }
.form-status.error { display: block; background: #FCEBEA; color: #C0392B; border: 1px solid #F5C2BE; }

.map-wrap { border-radius: var(--border-radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); margin-top: 40px; }
.map-wrap iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ---------- Back to top ---------- */
#backToTop {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    border: none;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity var(--transition), transform var(--transition), background var(--transition);
    z-index: 400;
}
#backToTop.show { opacity: 1; visibility: visible; transform: translateY(0); }
#backToTop:hover { background: var(--blue-dark); }

/* ---------- Footer ---------- */
.site-footer { background: var(--off-white); color: var(--text-muted); border-top: 1px solid #ECEFF3; }
.footer-top { padding: 70px 0 40px; border-bottom: 1px solid #E5E8EE; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 0.9fr 1fr 1fr; gap: 40px; }
.footer-col h4 { color: var(--navy); font-size: 0.95rem; margin-bottom: 18px; letter-spacing: 0.03em; }
.footer-brand p { font-size: 0.9rem; margin: 16px 0 20px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.9rem; }
.footer-links a:hover { color: var(--blue-dark); }
.footer-col p { font-size: 0.9rem; margin-bottom: 14px; display: flex; gap: 10px; align-items: flex-start; }
.footer-col p i { color: var(--blue); margin-top: 3px; }
.footer-col a:hover { color: var(--blue-dark); }
.social-links { display: flex; gap: 10px; }
.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #E1E5EC;
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.social-links a:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
.footer-bottom { padding: 22px 0; border-top: 1px solid #E5E8EE; }
.footer-bottom-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 0.82rem; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-lg { margin-top: 30px; }
.mb-0 { margin-bottom: 0; }
.mx-auto { margin-left: auto; margin-right: auto; }
.w-100 { width: 100%; }
.text-blue { color: var(--blue); }
.text-muted { color: var(--text-muted); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1080px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .stat-strip .container { grid-template-columns: repeat(2, 1fr); row-gap: 30px; }
    .stat-item:nth-child(3) { border-left: none; }
}

@media (max-width: 960px) {
    .main-nav, .header-phone { display: none; }
    .nav-toggle { display: flex; }
    .main-nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: #fff;
        border-top: 1px solid #ECEFF3;
        flex-direction: column;
        padding: 10px 20px 26px;
        display: none;
        max-height: calc(100vh - 72px);
        overflow-y: auto;
        box-shadow: 0 14px 30px rgba(3,13,40,0.12);
    }
    .main-nav.open { display: flex; }
    .main-nav ul { flex-direction: column; gap: 4px; width: 100%; }
    .main-nav a { padding: 14px 18px; }
    .main-nav > ul > li { width: 100%; }
    .dropdown-toggle { width: 100%; justify-content: space-between; padding: 14px 18px; }
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: rgba(63,146,196,0.06);
        max-height: 0;
        overflow: hidden;
        padding: 0;
        transition: max-height var(--transition), padding var(--transition);
    }
    .has-dropdown.open .dropdown-menu { max-height: 260px; padding: 6px; }
    .split, .contact-grid, .grid-2 { grid-template-columns: 1fr; }
    .split-media img { height: 320px; }
    .split-media .float-card { position: static; margin-top: -30px; margin-left: 20px; }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .course-grid { grid-template-columns: 1fr; }
    .cta-band { flex-direction: column; text-align: center; padding: 44px 30px; }
    .cta-band-actions { justify-content: center; }
    .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .section { padding: 60px 0; }
    .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .stat-strip .container { grid-template-columns: 1fr 1fr; }
    .hero-content { padding: 100px 0 60px; }
    .route-track::before { display: none; }
    .programme-panel-inner { padding-left: 26px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
}
