 /* ============================================================
   DESIGN SYSTEM — ITS Education Asia
   (Aligned to official brand palette: 8 primary colours + derived tints/darks)
   Dom. Blue:  #0067AC   Light Blue: #00A4E4   Dark Blue: #003A63
   Green:      #01A355   Purple:     #6B1FAD   Orange:    #CC4E00
   Teal:       #168CA1   Gold:       #CEA82C
   ============================================================ */
:root {
    --blue:        #0067AC;
    --dark-blue:   #003A63;
    --mid-blue:    #005188;
    --cyan:        #00A4E4;   /* light blue */
    --light-blue:  #00A4E4;
    --light-bg:    #E8F4FC;   /* blue tint */
    --grey-bg:     #f8f9fa;
    --text:        #333;
    --grey:        #666;
    --white:       #fff;

    --green:       #01A355;
    --green-tint:  #E9F8EF;
    --green-dark:  #016B38;

    --gold:        #CEA82C;
    --gold-tint:   #FDF6E4;
    --gold-dark:   #8B721D;

    --purple:      #6B1FAD;
    --purple-tint: #F3EBFC;
    --purple-dark: #4A1578;

    --orange:      #CC4E00;
    --orange-tint: #FFF3EB;
    --orange-dark: #993B00;

    --teal:        #168CA1;
    --teal-tint:   #E6F5F7;
    --teal-dark:   #0E6171;
}

*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    overflow-x: hidden;
    background: #fff;
}

h1,h2,h3,h4,h5,h6 { font-family: 'Poppins', sans-serif; }

a { color: var(--blue); text-decoration: none !important; }
a:hover { color: var(--mid-blue); }

.page-content {
    max-width: 90vw;
    margin: 30px auto;
    padding: 0 20px;
}
/* ---- UPPER HEADER ---- */
/* .upper-header {
    background: #fff;
    padding: 14px 20px;
    max-width: 1600px;
    margin: auto;
}
.upper-header .logo-img { width: 180px; height: auto; }
.upper-header .tagline { color: var(--blue); font-size: 1rem; font-weight: 600; }
.upper-header small { color: #555; display: block; font-size: 11px; }
.btn-primary-its {
    background: var(--blue);
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.btn-primary-its:hover { background: var(--mid-blue); color: #fff; }
.btn-outline-its {
    background: transparent;
    color: var(--blue);
    border: 2px solid var(--blue);
    border-radius: 4px;
    padding: 7px 15px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-outline-its:hover { background: var(--blue); color: #fff; } */

/* ---- NAV ---- */
/* .nav-bar {
    background: linear-gradient(to bottom, #0092c8, #12579a);
    position: relative;
    z-index: 100;
}
.nav-bar.sticky { position: sticky; top: 0; z-index: 999; box-shadow: 0 2px 12px rgba(0,0,0,0.25); }
.nav-bar nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; }
.nav-bar nav ul li a {
    display: block;
    color: #fff;
    padding: 12px 18px;
    font-size: 13px;
    font-weight: 500;
    transition: background 0.2s;
}
.nav-bar nav ul li a:hover { background: rgba(255,255,255,0.15); color: #fff; }
.nav-mobile-btn {
    display: none;
    color: #fff;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 700;
    padding: 12px 18px;
    cursor: pointer;
    width: 100%;
    text-align: left;
}
@media (max-width: 768px) {
    .nav-mobile-btn { display: block; }
    .nav-bar nav ul { display: none; flex-direction: column; }
    .nav-bar nav ul.open { display: flex; }
} */

/* ---- HERO SECTION ---- */
.hero {
    background: var(--dark-blue);
    color: #fff;
    padding: 38px 24px 34px;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid var(--cyan);
}
.hero .wrap { max-width: 860px; position: relative; }
.hero .eyebrow {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: #a8d8f0;
    font-size: 1rem; /* 11px; */
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
}
.hero h1 {
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 16px;
}
.hero h1 .accent { color: var(--cyan); }
.hero .lead {
    font-size: 1.05rem;
    color: #cde8f8;
    line-height: 1.75;
    max-width: 720px;
    margin-bottom: 18px;
}
.hero .btn-row { display: flex; gap: 12px; flex-wrap: wrap; }
.hero .btn-cta {
    display: inline-block;
    background: #fff;
    color: var(--dark-blue);
    font-weight: 700;
    font-size: 1rem;
    padding: 13px 28px;
    border-radius: 6px;
    transition: all 0.2s;
    border: 2px solid transparent;
}
.hero .btn-cta:hover { background: var(--gold); color: var(--dark-blue); }
.hero .btn-cta.ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}
.hero .btn-cta.ghost:hover { background: rgba(255,255,255,0.15); border-color: #fff; }

/* ---- STATS BAR ---- */
.stats-bar {
    background: var(--mid-blue);
    padding: 18px 20px;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: auto;
}
.stat-item { text-align: center; }
.stat-item .num {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}
.stat-item .num.gold { color: var(--gold); }
.stat-item .num.green { color: #3fe08f; }
.stat-item .label { font-size: 12px; color: #d6e8f7; margin-top: 6px; line-height: 1.4; }

/* ---- SECTION COMMONS ---- */
.section { padding: 64px 24px; }
.section-light { background: var(--grey-bg); }
.section-blue { background: var(--light-bg); }
.wrap-lg { max-width: 1140px; margin: auto; }
.section-title {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--blue);
    text-align: center;
    margin: 0 auto 10px;
}
.section-sub {
    color: var(--grey);
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    line-height: 1.7;
    max-width: 680px;
    text-align: center;
    margin: 0 auto 20px;
}

/* ---- INTRO SPLIT ---- */
.intro-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: stretch;
}
@media (max-width: 768px) { .intro-split { grid-template-columns: 1fr; gap: 24px; } }
.intro-split .section-title { text-align: left; margin: 0 0 8px; }
.intro-split .img-frame {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0,55,96,0.12);
    padding: 16px;
}
.intro-split .img-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ---- WHO IS CARD ---- */
.who-is-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 12px;
    margin-top: 20px;
}
.who-is-card {
    background: #fff;
    border-radius: 8px;
    padding: 14px 16px;
    box-shadow: 0 2px 10px rgba(0,55,96,0.06);
    border-top: 3px solid var(--blue);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.who-is-card:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,55,96,0.11); }
.who-is-card .icon-circle {
    width: 36px; height: 36px;
    flex-shrink: 0;
    margin-bottom: 0;
    font-size: 1rem;
}
.who-is-card p { flex: 1; min-width: 0; font-size: 15px; line-height: 1.5; color: #444; margin: 0; }
@media (max-width: 480px) {
    .who-is-grid { grid-template-columns: 1fr; gap: 10px; }
    .who-is-card { padding: 12px 14px; gap: 10px; }
}
/* Colour-coded "who qualifies" cards for quick visual differentiation (brand palette, 7-colour cycle) */
.who-is-card:nth-child(7n+1) { border-top-color: var(--blue); }
.who-is-card:nth-child(7n+1) .icon-circle { background: var(--light-bg); color: var(--blue); }
.who-is-card:nth-child(7n+2) { border-top-color: var(--cyan); }
.who-is-card:nth-child(7n+2) .icon-circle { background: var(--light-bg); color: var(--cyan); }
.who-is-card:nth-child(7n+3) { border-top-color: var(--green); }
.who-is-card:nth-child(7n+3) .icon-circle { background: var(--green-tint); color: var(--green); }
.who-is-card:nth-child(7n+4) { border-top-color: var(--purple); }
.who-is-card:nth-child(7n+4) .icon-circle { background: var(--purple-tint); color: var(--purple); }
.who-is-card:nth-child(7n+5) { border-top-color: var(--orange); }
.who-is-card:nth-child(7n+5) .icon-circle { background: var(--orange-tint); color: var(--orange); }
.who-is-card:nth-child(7n+6) { border-top-color: var(--teal); }
.who-is-card:nth-child(7n+6) .icon-circle { background: var(--teal-tint); color: var(--teal); }
.who-is-card:nth-child(7n+7) { border-top-color: var(--gold); }
.who-is-card:nth-child(7n+7) .icon-circle { background: var(--gold-tint); color: var(--gold-dark); }

/* ---- AWARD IMAGES ---- */
.awards-row {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 16px 0 0;
}
.award-card {
    text-align: center;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 16px rgba(0,55,96,0.08);
    flex: 1; min-width: 220px; max-width: 340px;
}
.award-card img { max-width: 100%; height: auto; border-radius: 6px; }
.award-card p { font-size: 1rem; color: var(--grey); margin-top: 10px; margin-bottom: 0; }

/* ---- CASE STUDIES ---- */
.case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}
.case-card.case-card-placeholder {
    background: var(--light-bg);
    border: 2px dashed #b9d7ea;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}
.case-card.case-card-placeholder:hover { transform: none; box-shadow: none; }
.case-card-placeholder .placeholder-inner { text-align: center; color: #9fb8c8; padding: 20px; }
.case-card-placeholder .placeholder-inner i { font-size: 2rem; margin-bottom: 8px; display: block; }
.case-card-placeholder .placeholder-inner p { font-size: 1rem; margin: 0; color: #9fb8c8; }
.case-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,55,96,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}
.case-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,55,96,0.14); }
.case-card img { width: 100%; height: 320px; object-fit: cover; object-position: top; }
.case-card .body { padding: 18px 20px; }
.case-card .name {
    display: inline-block;
    background: var(--dark-blue);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    padding: 3px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
}
.case-card .award-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--gold-tint);
    color: var(--gold-dark);
    border: 1px solid var(--gold);
    font-size: 1rem;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 20px;
    margin-bottom: 10px;
}
.case-card p { font-size: 15px; line-height: 1.65; color: #444; margin: 0; }

/* ---- METHOD + ADVANTAGES ---- */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin-top: 16px;
}
.adv-card {
    background: #fff;
    border-radius: 10px;
    padding: 22px 24px;
    box-shadow: 0 2px 12px rgba(0,55,96,0.07);
    position: relative;
    border-top: 3px solid var(--blue);
    transition: transform 0.2s;
}
.adv-card:hover { transform: translateY(-3px); }
.icon-circle {
    width: 48px; height: 48px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 12px;
    font-size: 1.3rem;
    color: var(--blue);
}
/* Colour-coded advantage cards for quick visual differentiation (brand palette) */
.adv-card:nth-child(9n+1) { border-top-color: var(--blue); }
.adv-card:nth-child(9n+1) .icon-circle { background: var(--light-bg); color: var(--blue); }
.adv-card:nth-child(9n+2) { border-top-color: var(--cyan); }
.adv-card:nth-child(9n+2) .icon-circle { background: var(--light-bg); color: var(--cyan); }
.adv-card:nth-child(9n+3) { border-top-color: var(--dark-blue); }
.adv-card:nth-child(9n+3) .icon-circle { background: var(--light-bg); color: var(--dark-blue); }
.adv-card:nth-child(9n+4) { border-top-color: var(--green); }
.adv-card:nth-child(9n+4) .icon-circle { background: var(--green-tint); color: var(--green); }
.adv-card:nth-child(9n+5) { border-top-color: var(--purple); }
.adv-card:nth-child(9n+5) .icon-circle { background: var(--purple-tint); color: var(--purple); }
.adv-card:nth-child(9n+6) { border-top-color: var(--orange); }
.adv-card:nth-child(9n+6) .icon-circle { background: var(--orange-tint); color: var(--orange); }
.adv-card:nth-child(9n+7) { border-top-color: var(--teal); }
.adv-card:nth-child(9n+7) .icon-circle { background: var(--teal-tint); color: var(--teal); }
.adv-card:nth-child(9n+8) { border-top-color: var(--gold); }
.adv-card:nth-child(9n+8) .icon-circle { background: var(--gold-tint); color: var(--gold-dark); }
.adv-card:nth-child(9n+9) { border-top-color: var(--green-dark); }
.adv-card:nth-child(9n+9) .icon-circle { background: var(--green-tint); color: var(--green-dark); }
.adv-card h4 { font-size: 1rem; font-weight: 700; color: var(--dark-blue); margin-bottom: 6px; }
.adv-card p { font-size: 15px; color: #555; line-height: 1.6; margin: 0; }

/* ---- PROCESS STEPS ---- */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0;
    margin: 36px 0;
    position: relative;
}
.process-grid::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(to right, var(--blue), var(--cyan));
    z-index: 0;
}
@media (max-width: 600px) { .process-grid::before { display: none; } }
.step {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 12px;
}
.step .n {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
    box-shadow: 0 4px 14px rgba(0,103,172,0.35);
}
.step h3 { font-size: 1rem; font-weight: 700; color: var(--dark-blue); margin-bottom: 6px; }
.step p { font-size: 1rem; color: #555; line-height: 1.55; }

/* ---- FLIP MODEL DIAGRAM ---- */
.flip-model {
    display: grid;
    grid-template-columns: 1fr 260px 1fr;
    align-items: stretch;
    gap: 24px;
    margin-top: 20px;
}
.flip-col { display: flex; flex-direction: column; }
.flip-col-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-blue);
    text-align: center;
    margin-bottom: 14px;
    line-height: 1.4;
}
.flip-zone {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 4px;
}
.flip-zone p { font-size: 1rem; color: #555; line-height: 1.6; margin: 0; }
.flip-col-left .flip-zone-top { flex: 2; }
.flip-col-left .flip-zone-bottom { flex: 1; }
.flip-col-right .flip-zone-top { flex: 2; }
.flip-col-right .flip-zone-bottom { flex: 1; }

/* Pyramid: clean flat-shaded trapezoid levels, pointed apex merged into the
   top level itself, thin light separators between levels, soft outer shadow. */
.flip-pyramid {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    width: 240px;
    margin: 0 auto;
    position: relative;
    filter: drop-shadow(0 8px 14px rgba(0, 58, 99, 0.2));
}
.flip-row {
    color: #fff;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.3px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 6px;
    width: 100%;
    position: relative;
    text-shadow: 0 1px 2px rgba(0,0,0,0.25);
    box-shadow: inset 0 -2px 0 rgba(255,255,255,0.28);
    transition: filter 0.2s;
}
.flip-row:hover { filter: brightness(1.08); }
.flip-row:last-child { box-shadow: none; border-radius: 0 0 6px 6px; }
/* Top level ("Creating") is a pointed triangle-topped shape so the pyramid
   comes to a clean apex instead of a separate floating triangle. */
.flip-row:nth-child(1) {
    background: var(--teal-dark);
    width: 40%;
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
    padding: 20px 6px 8px;
}
.flip-row:nth-child(2) { background: var(--teal); width: 56%; clip-path: polygon(9% 0, 91% 0, 100% 100%, 0% 100%); }
.flip-row:nth-child(3) { background: #1E9FB4; width: 68.8%; clip-path: polygon(7% 0, 93% 0, 100% 100%, 0% 100%); }
.flip-row:nth-child(4) { background: var(--cyan); width: 81.6%; clip-path: polygon(6% 0, 94% 0, 100% 100%, 0% 100%); }
.flip-row:nth-child(5) { background: var(--blue); width: 94.4%; clip-path: polygon(5% 0, 95% 0, 100% 100%, 0% 100%); }
.flip-row:nth-child(6) { background: var(--dark-blue); width: 100%; padding-bottom: 14px; }
@media (max-width: 800px) {
    .flip-model { grid-template-columns: 1fr; gap: 0; }
    .flip-pyramid { order: -1; margin-bottom: 16px; }
    .flip-col-left, .flip-col-right { margin-bottom: 12px; }
    .flip-col-left .flip-zone, .flip-col-right .flip-zone { padding: 4px; }
    .flip-col-label { margin-bottom: 8px; }
}

/* ---- TRUSTPILOT BAND ---- */
.trust-band {
    background: var(--light-bg);
    padding: 32px 24px;
    text-align: center;
}

/* ---- FEES SECTION ---- */
.fees-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 16px;
}
@media (max-width: 600px) { .fees-cards { grid-template-columns: 1fr; } }
.fee-card {
    background: #fff;
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 2px 16px rgba(0,55,96,0.08);
    border-top: 4px solid var(--blue);
    text-align: left;
    display: flex;
    align-items: center;
    gap: 16px;
}
.fee-card.accent { border-top-color: var(--cyan); }
.fee-card .icon-wrap {
    width: 44px; height: 44px;
    flex-shrink: 0;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0;
    font-size: 1.2rem;
    color: var(--blue);
}
.fee-card .fee-card-body { flex: 1; min-width: 0; }
.fee-card h4 { font-size: 1rem; font-weight: 700; color: var(--dark-blue); margin-bottom: 4px; }
.fee-card p { font-size: 15px; color: #555; line-height: 1.6; margin: 0; }

/* ---- GLOBAL REACH ---- */
.global-banner {
    background: linear-gradient(135deg, var(--dark-blue), var(--mid-blue));
    color: #fff;
    border-radius: 16px;
    padding: 26px 30px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.global-banner .globe-icon { font-size: 3rem; opacity: 0.8; }
.global-banner h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; color: var(--cyan); }
.global-banner p { font-size: 1rem; line-height: 1.7; color: #cde8f8; margin: 0; }
/* ---- CTA FINAL ---- */
.cta-final {
    background: linear-gradient(135deg, var(--dark-blue), #0a4a7e);
    color: #fff;
    text-align: center;
    padding: 42px 24px;
}
.cta-final h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; margin-bottom: 14px; }
.cta-final p { color: #c6e0f0; font-size: 1rem; max-width: 560px; margin: 0 auto 32px; line-height: 1.7; }
.cta-final .btn-row { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.cta-final .btn-white {
    background: #fff;
    color: var(--dark-blue);
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 30px;
    border-radius: 6px;
    transition: all 0.2s;
    display: inline-block;
}
.cta-final .btn-white:hover { background: var(--gold); color: var(--dark-blue); }
.cta-final .btn-solid-cyan {
    background: var(--cyan);
    border: 2px solid var(--cyan);
    color: var(--dark-blue);
    font-weight: 700;
    font-size: 1rem;
    padding: 12px 28px;
    border-radius: 6px;
    transition: all 0.2s;
    display: inline-block;
    cursor: pointer;
}
.cta-final .btn-solid-cyan:hover { background: #fff; border-color: #fff; color: var(--dark-blue); }
.btn-solid-cyan-inline {
    display: inline-flex;
    align-items: center;
    background: var(--cyan);
    color: var(--dark-blue) !important;
    font-weight: 700;
    font-size: 1rem;
    padding: 10px 22px;
    border-radius: 6px;
    transition: all 0.2s;
}
.btn-solid-cyan-inline:hover { background: #fff; color: var(--dark-blue) !important; }

/* ---- SIDEBAR ---- */
.sidebar-wrap { padding: 20px 0 0; }
.sidebar-card {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e8eef4;
    box-shadow: 0 2px 10px rgba(0,55,96,0.06);
    overflow: hidden;
    margin-bottom: 18px;
}
.sidebar-card a { display: block; }
.sidebar-card img { width: 100%; height: auto; display: block; }
.sb-menu-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: var(--blue);
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid #f0f5f9;
    transition: background 0.2s;
}
.sb-menu-link:hover { background: var(--light-bg); }
.sb-menu-link i { width: 18px; }

.quote-widget {
    background: linear-gradient(135deg, var(--dark-blue), var(--mid-blue));
    color: #fff;
    border-radius: 12px;
    padding: 22px;
    position: relative;
    overflow: hidden;
    margin-bottom: 18px;
}
.quote-widget::before {
    content: '\f10d';
    font-family: FontAwesome;
    position: absolute;
    top: -10px; left: 10px;
    font-size: 80px;
    opacity: 0.08;
}
.quote-text { font-size: 13px; line-height: 1.7; font-style: italic; margin: 0 0 12px; position: relative; transition: opacity 0.6s; }
.quote-author { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.7); position: relative; }
.quote-author::before { content: '— '; }

/* ---- FOOTER ---- */
footer {
    background: var(--dark-blue);
}
footer a { color: #19C2FF !important; }
.follow-us li, .follow-us a { font-size: 1.5rem !important; color: #19C2FF !important; }
.quick-links a { line-height: 1.7; color: #19C2FF !important; font-size: 0.85rem; }
.quick-links li { margin-bottom: 8px; }
.left-footer-pane { width: 40%; }
@media (max-width: 40em) { .left-footer-pane { width: 100%; } }

/* ---- FIXED ELEMENTS ---- */
#cta-phone {
    position: fixed; right: 20px; bottom: 86px;
    width: 56px; height: 56px;
    background: var(--blue);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    z-index: 9999;
    box-shadow: 0 4px 14px rgba(0,0,0,0.28);
}
#cta-phone img { width: 28px; height: 28px; }
#wa-float-btn {
    position: fixed; right: 20px; bottom: 20px;
    width: 56px; height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    z-index: 9999;
    box-shadow: 0 4px 14px rgba(0,0,0,0.28);
}
#wa-float-btn img { width: 32px; height: 32px; }
@media (min-width: 769px) { #cta-phone { display: none; } }

#fixed-social {
    position: fixed; top: 35%; left: 0;
    z-index: 10;
    box-shadow: 0 0 5px #b7b7b7;
}
#fixed-social div a {
    display: flex; align-items: center;
    width: 40px; overflow: hidden;
    transition: width 0.3s;
    padding: 8px 10px;
    color: #fff !important;
    font-size: 1rem;
}
#fixed-social div a span { white-space: nowrap; margin-left: 6px; opacity: 0; transition: opacity 0.3s; }
#fixed-social div a:hover { width: 120px; }
#fixed-social div a:hover span { opacity: 1; }
#fixed-social .fixed-title  { background: #666; }
#fixed-social .fixed-facebook { background: #3b5998; }
#fixed-social .fixed-linkedin { background: #0077b5; }
#fixed-social .fixed-gplus    { background: #d34836; }
@media (max-width: 768px) { #fixed-social { display: none; } }

/* ---- REVEAL ANIMATIONS ---- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-stagger .reveal:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger .reveal:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger .reveal:nth-child(3) { transition-delay: 0.19s; }
.reveal-stagger .reveal:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger .reveal:nth-child(5) { transition-delay: 0.33s; }
.reveal-stagger .reveal:nth-child(6) { transition-delay: 0.40s; }
.reveal-stagger .reveal:nth-child(7) { transition-delay: 0.47s; }
.reveal-stagger .reveal:nth-child(8) { transition-delay: 0.54s; }
.reveal-stagger .reveal:nth-child(9) { transition-delay: 0.61s; }

/* ---- INLINE TAGS ---- */
.tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 3px;
    margin-bottom: 8px;
    background: var(--light-bg);
    color: var(--blue);
}
.tag.green { background: var(--green-tint); color: var(--green); }
.tag.gold  { background: var(--gold-tint); color: var(--gold-dark); }
.tag.dark  { background: var(--dark-blue); color: #fff; }

/* ---- MODAL ---- */
.modal-header.bg-dark { background: var(--dark-blue) !important; }

/* breadcrumb */
.breadcrumb-bar {
    background: #f0f5fa;
    padding: 8px 20px;
    font-size: 1rem;
    color: #888;
}
.breadcrumb-bar a { color: var(--blue); }
.breadcrumb-bar span { margin: 0 6px; }

/* single-column content layout (sidebar removed) */
.content-layout {
    max-width: 980px;
    margin: 0 auto;
    padding: 28px 20px 36px;
}

/* ---- SECTION SPACING (aligned with uk-school-entrance-tests.php rhythm) ---- */
.content-layout .mb-5 { margin-bottom: 52px !important; }
.content-layout .mt-2 { margin-top: 8px !important; }
.section-title { margin-bottom: 14px; }
.section-sub { margin-bottom: 32px; }
.intro-split { gap: 30px; }

/* inline CTA link */
.inline-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--blue);
    color: #fff !important;
    padding: 8px 18px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    transition: background 0.2s;
}
.inline-cta:hover { background: var(--mid-blue); }

/* ---- WHO-IS COMPACT LIST ---- */
/* .who-is-list {
    background: var(--light-bg);
    border-radius: 10px;
    padding: 20px 20px 20px 40px;
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
    color: #444;
    border-left: 4px solid var(--blue);
}
.who-is-list li { margin-bottom: 6px; }
.who-is-list li:last-child { margin-bottom: 0; } */

/* ---- ENROLMENT STEPS ---- */
.enrol-steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: stretch;
    gap: 0;
    margin: 24px 0 0;
}
.enrol-step {
    background: var(--blue);
    color: #fff;
    border-radius: 4px;
    padding: 12px 14px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 64px;
}
.enrol-step-label { font-size: 1rem; font-weight: 700; line-height: 1.3; }
.enrol-arrow {
    color: #aaa;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
}
@media (max-width: 600px) {
    .enrol-steps { grid-template-columns: 1fr; gap: 6px; }
    .enrol-arrow { transform: rotate(90deg) !important; }
    .enrol-step { height: auto; padding: 14px; }
}
.enrol-detail-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 20px;
}
@media (max-width: 900px) { .enrol-detail-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .enrol-detail-grid { grid-template-columns: 1fr; } }
.enrol-detail {
    background: var(--light-bg);
    border-radius: 8px;
    padding: 18px;
    border-top: 3px solid var(--blue);
}
.enrol-detail h4 { font-size: 1rem; font-weight: 700; color: var(--dark-blue); margin-bottom: 10px; }
.enrol-detail ol { padding-left: 18px; margin: 0; font-size: 15px; color: #555; line-height: 1.65; }
.enrol-detail ol li { margin-bottom: 5px; }

@media screen and (max-width: 600px) {
    .page-content {
        padding: 0;
    }
    .global-banner {
        display: block;
    }
    
    div#support-system {
        display: unset !important;
    }

    div#support-system div {
        margin-bottom: 10px;
    }
}