/* =========================================================
   VYGOTSKY SCHOOL OF PLAY — Design System
   Inspired by the Fee Structure pamphlet visual language
   ========================================================= */

/* ---------- Fonts & Root Variables ---------- */
:root {
    --navy:    #1B2A6B;
    --green:   #1E7A34;
    --purple:  #6B2D8E;
    --orange:  #F5A623;
    --teal:    #009DB0;
    --coral:   #CC2936;
    --bg:      #FAF9F7;
    --bg-green: #EEF8F1;
    --bg-purple: #F5EEF8;
    --bg-orange: #FEF9EE;
    --bg-teal:  #EAF7FA;
    --text:    #222;
    --muted:   #666;
    --radius:  14px;
    --radius-lg: 20px;
    --shadow:  0 6px 24px rgba(27,42,107,0.13);
    --shadow-lg: 0 12px 40px rgba(27,42,107,0.18);
}

* { box-sizing: border-box; }

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg);
    color: var(--text);
    margin: 0;
    padding: 0;
    padding-top: 70px;
}

/* ---------- Shared SVG background texture ---------- */
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: url('assets/village-7139964.svg') center/cover no-repeat;
    opacity: 0.04;
    z-index: 0;
    pointer-events: none;
}

.container {
    width: 90%;
    max-width: 1140px;
    margin: 0 auto;
}

main, .container, section, header, footer {
    position: relative;
    z-index: 1;
}

/* =========================================================
   NAVBAR
   ========================================================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--navy) !important;
    box-shadow: 0 3px 16px rgba(27,42,107,0.25);
    z-index: 1000;
    padding: 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    width: 90%;
    max-width: 1140px;
}

.navbar-brand, .navbar .navbar-brand {
    color: #fff !important;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.navbar-brand img { height: 40px; }

.nav-links { list-style: none; display: flex; gap: 6px; margin: 0; padding: 0; }

.nav-links li a,
.navbar .nav-link {
    color: rgba(255,255,255,0.88) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 14px !important;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.nav-links li a:hover,
.navbar .nav-link:hover,
.navbar .nav-link.active {
    background: var(--orange) !important;
    color: #fff !important;
}

.navbar-toggler { border-color: rgba(255,255,255,0.5); }
.navbar-toggler-icon { filter: invert(1); }

/* =========================================================
   PAGE HERO BANNERS (inner pages)
   ========================================================= */
.page-hero {
    padding: 52px 0 44px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::after {
    content: "";
    position: absolute;
    bottom: -20px; left: 0; right: 0;
    height: 40px;
    background: var(--bg);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    z-index: 2;
}
.page-hero h1 {
    font-weight: 800;
    font-size: 2.2rem;
    margin-bottom: 8px;
    color: #fff;
    position: relative;
    z-index: 3;
}
.page-hero p {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    margin: 0;
    position: relative;
    z-index: 3;
}
.page-hero-navy  { background: linear-gradient(135deg, #1B2A6B 0%, #2d468e 100%); }
.page-hero-green { background: linear-gradient(135deg, #1E7A34 0%, #29a846 100%); }
.page-hero-purple{ background: linear-gradient(135deg, #6B2D8E 0%, #9340b5 100%); }
.page-hero-teal  { background: linear-gradient(135deg, #007B8E 0%, #009DB0 100%); }
.page-hero-multi { background: linear-gradient(135deg, #1B2A6B 0%, #1E7A34 50%, #6B2D8E 100%); }

/* =========================================================
   SHARED CARD
   ========================================================= */
.vcard {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: 28px;
}
.vcard-header {
    padding: 18px 24px;
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.vcard-header.navy   { background: var(--navy); }
.vcard-header.green  { background: var(--green); }
.vcard-header.purple { background: var(--purple); }
.vcard-header.orange { background: var(--orange); color: #222; }
.vcard-header.teal   { background: var(--teal); }
.vcard-body { padding: 24px; }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn-vygotsky {
    display: inline-block;
    padding: 11px 26px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: filter 0.2s, transform 0.15s;
}
.btn-vygotsky:hover { filter: brightness(1.1); transform: translateY(-1px); }
.btn-navy   { background: var(--navy);   color: #fff !important; }
.btn-green  { background: var(--green);  color: #fff !important; }
.btn-purple { background: var(--purple); color: #fff !important; }
.btn-orange { background: var(--orange); color: #222 !important; font-weight: 800; }
.btn-outline-navy {
    background: transparent;
    color: var(--navy) !important;
    border: 2px solid var(--navy);
    padding: 9px 24px;
}
.btn-outline-navy:hover { background: var(--navy); color: #fff !important; }
.btn-whatsapp { background: #25D366; color: #fff !important; }
.btn-whatsapp:hover { background: #1da851; }

/* Keep Bootstrap btn-primary consistent */
.btn-primary {
    background: var(--navy) !important;
    border-color: var(--navy) !important;
    color: #fff !important;
}
.btn-primary:hover { background: var(--orange) !important; border-color: var(--orange) !important; color: #222 !important; }
.btn-outline-primary { border-color: var(--navy) !important; color: var(--navy) !important; }
.btn-outline-primary:hover { background: var(--navy) !important; color: #fff !important; }

/* =========================================================
   VALUES STRIP  (Inclusion · Nurturing · Respect · Growth · Play)
   ========================================================= */
.values-strip {
    background: var(--navy);
    padding: 32px 0;
}
.values-grid {
    display: flex;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}
.value-item {
    flex: 1;
    min-width: 140px;
    max-width: 200px;
    text-align: center;
    padding: 16px 10px;
    border-right: 1px solid rgba(255,255,255,0.12);
}
.value-item:last-child { border-right: none; }
.value-icon { font-size: 1.8rem; margin-bottom: 6px; }
.value-title {
    color: var(--orange);
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}
.value-desc { color: rgba(255,255,255,0.75); font-size: 0.75rem; line-height: 1.4; }

/* =========================================================
   FOOTER
   ========================================================= */
footer.site-footer {
    background: #0f1c4d;
    color: rgba(255,255,255,0.88);
    padding: 30px 0 20px;
    position: relative;
    z-index: 1;
}
.footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}
.footer-brand { font-weight: 700; font-size: 1rem; color: #fff; margin-bottom: 6px; }
.footer-tagline { font-size: 0.8rem; color: rgba(255,255,255,0.6); font-style: italic; }
.footer-contact { font-size: 0.85rem; line-height: 1.9; }
.footer-contact a { color: #D4F0F1; text-decoration: none; }
.footer-contact a:hover { color: var(--orange); }
.footer-social { font-size: 0.85rem; }
.footer-social a { color: #D4F0F1; text-decoration: none; display: block; margin-bottom: 4px; }
.footer-social a:hover { color: var(--orange); }
.footer-copy {
    text-align: center;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 14px;
    margin-top: 10px;
}
.footer-flag {
    height: 5px;
    background: linear-gradient(90deg, #003580 33%, #CC0001 33%, #CC0001 66%, #009A44 66%);
    margin-bottom: 0;
}

/* =========================================================
   HOME PAGE  — Hero
   ========================================================= */
.home-hero {
    background: linear-gradient(150deg, #1B2A6B 0%, #1E7A34 55%, #6B2D8E 100%);
    padding: 64px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.home-hero::after {
    content: "";
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    height: 50px;
    background: var(--bg);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}
.home-hero-content { position: relative; z-index: 2; }
.home-hero h1 {
    color: #fff;
    font-weight: 800;
    font-size: 2.8rem;
    line-height: 1.15;
    margin-bottom: 10px;
}
.home-hero .tagline {
    color: rgba(255,255,255,0.88);
    font-size: 1.1rem;
    margin-bottom: 32px;
}
.hero-btn-group { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* =========================================================
   HOME — Namibia Banner
   ========================================================= */
.namibia-banner {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: 36px auto 10px;
    max-width: 860px;
    box-shadow: var(--shadow-lg);
    background: #fff;
}
.namibia-flag-stripe {
    height: 7px;
    background: linear-gradient(90deg, #003580 33%, #CC0001 33%, #CC0001 66%, #009A44 66%);
}
.namibia-flag-stripe-bottom {
    background: linear-gradient(90deg, #009A44 33%, #CC0001 33%, #CC0001 66%, #003580 66%);
}
.namibia-banner-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    background: linear-gradient(120deg, #e8f4fd 0%, #f0faf0 60%, #fff8f0 100%);
    flex-wrap: wrap;
}
.namibia-banner-icon { font-size: 3rem; flex-shrink: 0; }
.namibia-now-open {
    display: inline-block;
    background: var(--coral);
    color: #fff;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 999px;
    margin-bottom: 7px;
}
.namibia-banner-title { color: #003580; font-weight: 800; font-size: 1.4rem; margin: 4px 0; line-height: 1.2; }
.namibia-banner-sub { color: #333; font-size: 0.95rem; margin-bottom: 4px; }
.namibia-banner-tagline { color: #555; font-size: 0.87rem; margin-bottom: 8px; font-style: italic; }
.namibia-banner-meta { display: flex; flex-wrap: wrap; gap: 10px; font-size: 0.82rem; color: #31487A; }
.namibia-banner-cta { display: flex; flex-direction: column; gap: 8px; margin-left: auto; flex-shrink: 0; }
.namibia-btn-apply {
    background: #003580; color: #fff !important;
    border: none; border-radius: 8px;
    padding: 10px 22px; font-weight: 700;
    font-size: 0.95rem; white-space: nowrap;
    text-decoration: none; text-align: center;
}
.namibia-btn-apply:hover { background: var(--coral); }
.namibia-btn-fees {
    background: transparent; color: #003580 !important;
    border: 2px solid #003580; border-radius: 8px;
    padding: 8px 22px; font-weight: 600;
    font-size: 0.9rem; white-space: nowrap;
    text-decoration: none; text-align: center;
}
.namibia-btn-fees:hover { background: #003580; color: #fff !important; }

/* =========================================================
   HOME — Bible Verse Banner
   ========================================================= */
.verse-banner {
    background: var(--bg-teal);
    padding: 48px 0;
    text-align: center;
}
.verse-container { max-width: 700px; margin: 0 auto; }
.verse-text {
    font-family: 'Georgia', serif;
    font-size: 1.55rem;
    line-height: 1.5;
    color: var(--navy);
    margin-bottom: 12px;
}
.verse-ref { font-size: 0.95rem; color: var(--muted); font-style: italic; }

/* =========================================================
   HOME — About / Principal Sections
   ========================================================= */
.about-section {
    background: var(--bg-green);
    padding: 64px 0;
}
.principal-section {
    background: var(--bg-purple);
    padding: 64px 0;
}
.section-label {
    display: inline-block;
    background: var(--orange);
    color: #222;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 999px;
    margin-bottom: 12px;
    text-transform: uppercase;
}
.about-section h2, .principal-section h2 {
    color: var(--navy);
    font-weight: 800;
    font-size: 1.9rem;
    margin-bottom: 16px;
}
.about-section p, .principal-section p { color: #444; line-height: 1.8; }
.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 100%;
    width: 100%;
    object-fit: cover;
}
.principal-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 340px;
    width: 100%;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

/* =========================================================
   HOME — Extramurals
   ========================================================= */
.extramurals-section { background: var(--bg); padding: 64px 0; }
.extramurals-section h2 {
    color: var(--navy);
    font-weight: 800;
    font-size: 1.9rem;
    text-align: center;
}
.extramural-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
    height: 100%;
    border-top: 5px solid var(--orange);
    transition: transform 0.3s, box-shadow 0.3s;
}
.extramural-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.extramural-logo { max-width: 200px; height: auto; margin: 0 auto 20px; display: block; }
.extramural-card h3 { color: var(--navy); font-weight: 700; }
.extramural-card ul { color: var(--muted); }
.extramural-card ul li { margin-bottom: 7px; }
.extramural-card h4 { color: var(--navy); font-size: 1rem; margin-top: 18px; }
.zpd-box { background: var(--bg-teal); padding: 14px; border-radius: 8px; margin-top: 18px; }
.zpd-box p { margin: 0; font-size: 0.88rem; color: #333; }

/* =========================================================
   HOME — Events / Sensory Workshop
   ========================================================= */
.events-section {
    background: var(--bg-green);
    padding: 64px 0;
}
.events-section h2 { color: var(--navy); font-weight: 800; font-size: 1.9rem; }

.sensory-workshop-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.sw-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--green) 100%);
    color: #fff;
    padding: 28px 32px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 16px;
}
.sw-badge {
    display: inline-block;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.45);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 999px;
    margin-bottom: 10px;
}
.sw-title { font-size: 2rem; font-weight: 800; margin: 0 0 6px; line-height: 1.1; }
.sw-sub { font-size: 1rem; margin: 0; opacity: 0.9; }
.sw-age-pill {
    background: var(--orange);
    color: #222;
    font-weight: 800;
    font-size: 0.88rem;
    padding: 8px 18px;
    border-radius: 999px;
    white-space: nowrap;
    align-self: center;
}
.sw-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid #eee;
}
.sw-info-block {
    padding: 22px 16px;
    text-align: center;
    border-right: 1px solid #eee;
}
.sw-info-block:last-child { border-right: none; }
.sw-info-icon { font-size: 1.6rem; margin-bottom: 6px; }
.sw-info-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; color: #999; font-weight: 600; margin-bottom: 6px; }
.sw-info-value { font-weight: 700; color: var(--navy); font-size: 0.95rem; line-height: 1.5; }
.sw-price-value { font-size: 1.8rem; color: var(--green); }
.sw-info-note { font-size: 0.75rem; color: #888; margin-top: 4px; }
.sw-description { padding: 24px 32px; color: #444; font-size: 0.97rem; line-height: 1.75; border-bottom: 1px solid #eee; }
.sw-description p { margin-bottom: 8px; }
.sw-stations-section { padding: 24px 32px; border-bottom: 1px solid #eee; }
.sw-stations-title { font-size: 0.82rem; font-weight: 700; color: var(--navy); margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.07em; }
.sw-stations-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.sw-station {
    background: var(--bg-green);
    border: 1px solid #c8e6c9;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 0.83rem;
    line-height: 1.4;
    color: #2d4a2d;
}
.sw-cta {
    padding: 22px 32px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.sw-cta-note { margin: 0; font-size: 0.87rem; color: #555; flex: 1; min-width: 180px; }
.sw-btn-register {
    background: var(--navy); color: #fff !important;
    border-radius: 8px; padding: 11px 24px;
    font-weight: 700; font-size: 0.95rem;
    white-space: nowrap; border: none;
    text-decoration: none;
}
.sw-btn-register:hover { background: var(--green); }
.sw-btn-whatsapp {
    background: #25D366; color: #fff !important;
    border-radius: 8px; padding: 11px 20px;
    font-weight: 700; font-size: 0.92rem;
    white-space: nowrap; border: none;
    text-decoration: none;
}
.sw-btn-whatsapp:hover { background: #1da851; }

/* =========================================================
   GALLERY
   ========================================================= */
.gallery-item {
    height: 250px;
    width: 100%;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.35s;
}
.gallery-item:hover img { transform: scale(1.06); }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-card-box {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow);
    height: 100%;
}
.contact-card-box h5 { color: var(--navy); font-weight: 700; margin-bottom: 14px; }
.contact-card-box address { line-height: 1.9; }
.contact-card-box a { color: var(--navy); }
.contact-card-box a:hover { color: var(--orange); }
.contact-form .form-control {
    margin-bottom: 14px;
    padding: 12px;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border-color 0.2s;
}
.contact-form .form-control:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(27,42,107,0.12); }
.contact-form textarea { resize: vertical; }
.map-responsive { overflow: hidden; padding-bottom: 56.25%; position: relative; height: 0; border-radius: var(--radius-lg); }
.map-responsive iframe { left: 0; top: 0; height: 100%; width: 100%; position: absolute; border: 0; }

/* =========================================================
   FEES PAGES
   ========================================================= */
.campus-toggle { display: flex; gap: 10px; margin: 30px 0 36px; flex-wrap: wrap; }

/* Fee category cards */
.fee-category {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 24px;
}
.fee-category-header {
    padding: 18px 24px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}
.fee-category-header.nt { background: var(--green); }
.fee-category-header.nd { background: var(--purple); }
.fee-category-header.navy { background: var(--navy); }
.fee-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid #f0f0f0;
    background: #fff;
}
.fee-row:last-child { border-bottom: none; }
.fee-row:hover { background: #fafafa; }
.fee-age { font-weight: 500; color: #333; font-size: 0.95rem; }
.fee-amount { font-weight: 800; font-size: 1.25rem; }
.fee-amount.nt { color: var(--green); }
.fee-amount.nd { color: var(--purple); }
.fee-amount.navy { color: var(--navy); }
.fee-month { font-size: 0.72rem; color: #999; font-weight: 400; }

/* Full-day banner */
.fullday-banner {
    background: linear-gradient(90deg, var(--bg-green), #fff8e1);
    border: 2px solid var(--green);
    border-radius: var(--radius-lg);
    padding: 22px 28px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.fullday-banner .check { font-size: 2rem; flex-shrink: 0; }
.fullday-banner h4 { color: var(--green); font-weight: 800; margin: 0 0 4px; }
.fullday-meals { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.fullday-meal {
    background: #fff; border: 1px solid #c8e6c9;
    border-radius: 8px; padding: 5px 13px;
    font-size: 0.83rem; font-weight: 600; color: #2d4a2d;
}
.fullday-hours {
    margin-left: auto; text-align: center;
    background: var(--navy); color: #fff;
    border-radius: 10px; padding: 12px 22px;
    flex-shrink: 0;
}
.fullday-hours .hours-time { font-size: 1.5rem; font-weight: 800; }
.fullday-hours .hours-label { font-size: 0.72rem; opacity: 0.8; }

/* Additional fees */
.additional-fees {
    background: #f9f9f9;
    border-radius: var(--radius-lg);
    padding: 26px 28px;
    margin-bottom: 24px;
    border: 1px solid #e8e8e8;
}
.additional-fees h3 { color: var(--navy); font-size: 1.05rem; font-weight: 700; margin-bottom: 18px; }
.additional-fee-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 13px 16px; background: #fff; border-radius: 10px;
    margin-bottom: 10px; border: 1px solid #e0e0e0;
}
.additional-fee-row:last-child { margin-bottom: 0; }
.additional-fee-name { font-weight: 600; color: #333; font-size: 0.9rem; }
.additional-fee-amount { font-weight: 800; color: var(--coral); font-size: 1.1rem; white-space: nowrap; }
.extra-badge {
    font-size: 0.68rem; background: #fff3cd;
    border: 1px solid #ffc107; color: #856404;
    border-radius: 4px; padding: 2px 6px;
    margin-left: 8px; font-weight: 600;
}

/* Commitment banner */
.commitment-banner {
    background: linear-gradient(135deg, var(--bg-teal), var(--bg-green));
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
    margin-bottom: 32px;
}
.commitment-banner p { color: #333; font-size: 0.97rem; line-height: 1.75; margin: 0; }

/* Enrollment steps card */
.enrollment-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow);
}
.enrollment-card h2 { color: var(--navy); font-weight: 700; margin-bottom: 18px; }
.enrollment-card ol li { margin-bottom: 12px; color: #444; line-height: 1.65; }
.enrollment-card a { color: var(--navy); font-weight: 600; }
.enrollment-card a:hover { color: var(--green); }
.enroll-tip {
    background: var(--bg-teal);
    border-radius: 10px;
    padding: 14px 20px;
    margin-top: 18px;
    font-size: 0.9rem;
    color: #333;
}

/* Contact info card (fees pages) */
.fees-contact-card {
    background: var(--navy);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 28px;
}
.fees-contact-card h3 { font-weight: 700; margin-bottom: 18px; color: #fff; }
.fees-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 0.92rem; }
.fees-contact-item a { color: #D4F0F1; text-decoration: none; }
.fees-contact-item a:hover { color: var(--orange); }

/* =========================================================
   BLOG
   ========================================================= */
.blog-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
    padding: 60px 0;
    text-align: center;
    color: #fff;
}
.blog-hero h1 { font-weight: 800; color: #fff; }
.blog-hero p { color: rgba(255,255,255,0.88); }
.blog-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-top: 4px solid var(--orange);
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-card-image { width: 100%; height: 240px; object-fit: cover; }
.blog-card-content { padding: 24px; flex-grow: 1; display: flex; flex-direction: column; }
.blog-card-title { color: var(--navy); font-size: 1.25rem; font-weight: 700; margin-bottom: 12px; }
.blog-card-excerpt { color: var(--muted); margin-bottom: 18px; flex-grow: 1; font-size: 0.93rem; line-height: 1.65; }
.blog-card-meta { color: #aaa; font-size: 0.85rem; margin-bottom: 14px; }
.btn-read-more {
    background: var(--navy); color: #fff !important;
    border: none; padding: 9px 20px;
    border-radius: 8px; text-decoration: none;
    font-weight: 600; font-size: 0.9rem;
    display: inline-block; transition: background 0.2s;
}
.btn-read-more:hover { background: var(--orange); color: #222 !important; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 992px) {
    .navbar .container { flex-wrap: wrap; }
    .nav-links { flex-direction: column; gap: 2px; width: 100%; }
    .home-hero h1 { font-size: 2.1rem; }
    .sw-info-grid { grid-template-columns: repeat(2, 1fr); }
    .sw-stations-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .container { width: 96%; }
    .home-hero h1 { font-size: 1.7rem; }
    .home-hero { padding: 48px 0 68px; }
    .namibia-banner-inner { flex-direction: column; text-align: center; padding: 18px; }
    .namibia-banner-cta { margin-left: 0; flex-direction: row; justify-content: center; }
    .namibia-banner-meta { justify-content: center; }
    .fullday-banner { flex-direction: column; text-align: center; }
    .fullday-hours { margin-left: 0; }
    .values-grid { gap: 0; }
    .value-item { min-width: 100px; }
    .footer-inner { flex-direction: column; gap: 16px; }
    .sw-header { padding: 20px; }
    .sw-title { font-size: 1.5rem; }
    .sw-cta { flex-direction: column; }
    .sw-btn-register, .sw-btn-whatsapp { text-align: center; }
}

@media (max-width: 500px) {
    .sw-info-grid { grid-template-columns: repeat(2, 1fr); }
    .sw-stations-grid { grid-template-columns: 1fr; }
    .home-hero h1 { font-size: 1.4rem; }
    .page-hero h1 { font-size: 1.6rem; }
    .value-item { min-width: 48%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
}
