:root {
    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Sora', 'Outfit', 'Plus Jakarta Sans', sans-serif;
    --ink: #0f172a;
    --muted: #64748b;
    --brand: #0284c7;
    --brand-dark: #075985;
    --accent: #00d2b5;
    --accent-orange: #f97316;
    --line: #e2e8f0;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --hero-bg: linear-gradient(135deg, #09172e 0%, #0c234b 50%, #051126 100%);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --card-shadow-hover: 0 20px 40px rgba(2, 132, 199, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 88px;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
.hero h1,
.enquiry-card h3 {
    font-family: var(--font-heading);
    letter-spacing: -0.03em;
}

.wrap {
    width: min(1240px, calc(100% - 40px));
    margin: auto;
}

.narrow {
    max-width: 880px;
}

/* ==========================================================================
   HERO SECTION (DARK GLASSMORPHISM & GRADIENTS)
   ========================================================================== */
.hero {
    position: relative;
    background: var(--hero-bg);
    padding: 64px 0 72px;
    color: #ffffff;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.85fr;
    gap: 48px;
    align-items: flex-start;
}

.crumb {
    font-size: 13px;
    letter-spacing: 0.06em;
    color: #94a3b8;
    font-weight: 600;
    margin-bottom: 8px;
}

.badge {
    display: inline-block;
    margin: 16px 0 12px;
    background: rgba(14, 165, 233, 0.16);
    border: 1px solid rgba(56, 189, 248, 0.35);
    color: #38bdf8;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.hero h1 {
    font-size: clamp(36px, 4.5vw, 56px);
    line-height: 1.08;
    margin: 12px 0 16px;
    font-weight: 800;
    color: #ffffff;
    background: linear-gradient(135deg, #ffffff 0%, #38bdf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero h2 {
    font-size: 20px;
    color: #00d2b5;
    font-weight: 700;
    margin: 0 0 16px;
    line-height: 1.3;
}

.lead {
    font-size: 16.5px;
    color: #cbd5e1;
    max-width: 740px;
    line-height: 1.65;
    margin: 0 0 24px;
}

.chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.chips span {
    padding: 6px 14px;
    border: 1px solid rgba(56, 189, 248, 0.25);
    background: rgba(15, 30, 60, 0.7);
    color: #e2e8f0;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(4px);
}

.actions {
    display: flex;
    gap: 14px;
    margin: 28px 0;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, #0ea5e9 0%, #2563eb 100%);
    color: #ffffff !important;
    padding: 14px 24px;
    font-size: 14.5px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(37, 99, 235, 0.35);
    transition: all 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.45);
}

.btn.secondary {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: #ffffff !important;
    box-shadow: 0 4px 18px rgba(16, 185, 129, 0.3);
}

.btn.secondary:hover {
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.45);
}

.quick {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.quick div {
    border-left: 3px solid #00d2b5;
    padding-left: 12px;
}

.quick strong {
    display: block;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
}

.quick span {
    display: block;
    font-size: 13px;
    color: #94a3b8;
    margin-top: 2px;
}

/* ==========================================================================
   PREMIUM ENQUIRY CARD (FORM)
   ========================================================================== */
.enquiry-card {
    position: relative;
    background: rgba(10, 22, 45, 0.92);
    border: 1px solid rgba(56, 189, 248, 0.25);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 20px rgba(56, 189, 248, 0.12);
    backdrop-filter: blur(12px);
    color: #ffffff;
}

.enquiry-card h3 {
    font-size: 22px;
    margin: 0 0 6px;
    color: #ffffff;
    font-weight: 800;
}

.enquiry-card p {
    color: #94a3b8;
    font-size: 13.5px;
    margin: 0 0 18px;
}

.enquiry-card label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #cbd5e1;
    margin-top: 14px;
}

.enquiry-card input,
.enquiry-card select {
    width: 100%;
    padding: 12px 14px;
    margin-top: 6px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 10px;
    background: rgba(6, 14, 30, 0.85);
    color: #ffffff;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.2s ease;
}

.enquiry-card select option {
    background: #09172e;
    color: #ffffff;
}

.enquiry-card input:focus,
.enquiry-card select:focus {
    outline: none;
    border-color: #38bdf8;
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.25);
}

.two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.consent {
    display: flex !important;
    gap: 10px;
    align-items: flex-start;
    font-size: 12.5px;
    color: #cbd5e1;
    margin: 18px 0;
    line-height: 1.4;
}

.consent input {
    width: auto !important;
    margin-top: 2px;
    accent-color: #0ea5e9;
}

.wide {
    width: 100%;
    margin-top: 8px;
    padding: 14px;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.02em;
    border-radius: 12px;
}

.success {
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid rgba(16, 185, 129, 0.4);
    color: #34d399;
    padding: 12px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 600;
    margin-bottom: 14px;
}

.error {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #f87171;
    padding: 12px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 600;
    margin-bottom: 14px;
}

/* ==========================================================================
   CONTENT SECTIONS & CARDS
   ========================================================================== */
.section {
    scroll-margin-top: 88px;
    padding: 80px 0;
}

.section.muted {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.section-head {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 44px;
}

.section-head span {
    display: inline-block;
    color: #0284c7;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.section-head h2 {
    font-size: clamp(28px, 4vw, 38px);
    line-height: 1.15;
    color: #0f172a;
    margin: 0 0 10px;
    font-weight: 800;
}

.section-head p {
    color: #64748b;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 26px;
    box-shadow: var(--card-shadow);
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
    border-color: rgba(2, 132, 199, 0.4);
}

.card .mark {
    display: inline-block;
    align-self: flex-start;
    background: rgba(14, 165, 233, 0.1);
    color: #0284c7;
    font-size: 12.5px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 99px;
    margin-bottom: 14px;
    letter-spacing: 0.05em;
}

.card h3 {
    font-size: 18.5px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 10px;
    line-height: 1.3;
}

.card p {
    color: #475569;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.card ul {
    margin: 14px 0 0;
    padding-left: 18px;
    color: #475569;
    font-size: 13.5px;
}

.card li {
    margin-bottom: 6px;
}

/* Steps / Workflow */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.steps article {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-top: 4px solid #0284c7;
    border-radius: 14px;
    padding: 24px;
    box-shadow: var(--card-shadow);
    transition: all 0.22s ease;
}

.steps article:hover {
    transform: translateY(-3px);
    box-shadow: var(--card-shadow-hover);
}

.steps b {
    display: inline-block;
    color: #f97316;
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 12px;
}

.steps h3 {
    font-size: 17px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 8px;
}

.steps p {
    color: #64748b;
    font-size: 13.5px;
    margin: 0;
    line-height: 1.55;
}

/* Accordion Curriculum & FAQs */
.accordion {
    display: grid;
    gap: 14px;
}

.accordion details {
    position: relative;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 18px 22px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    transition: all 0.22s ease;
}

.accordion details[open] {
    border-color: #0ea5e9;
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.14);
}

.accordion summary::-webkit-details-marker {
    display: none;
}

.accordion summary {
    list-style: none;
    position: relative;
    font-size: 16.5px;
    font-weight: 800;
    color: #0f172a;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding-right: 48px;
    user-select: none;
}

.accordion summary b {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0ea5e9, #2563eb);
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 8px;
    margin-right: 14px;
    flex-shrink: 0;
}

/* Plus / Minus Toggle Indicator */
.accordion summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.25);
    color: #0284c7;
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
    transition: all 0.2s ease;
}

.accordion details[open] summary::after {
    content: '−';
    background: #0ea5e9;
    border-color: #0ea5e9;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.35);
}

.accordion summary:hover::after {
    transform: translateY(-50%) scale(1.08);
}

.accordion p {
    color: #475569;
    font-size: 14px;
    margin: 12px 0 8px 38px;
}

.accordion ul {
    margin: 8px 0 0 38px;
    padding-left: 18px;
    color: #64748b;
    font-size: 14px;
}

.accordion li {
    margin-bottom: 6px;
}

/* Dark Pre-Footer Banner */
.dark {
    background: linear-gradient(135deg, #09172e 0%, #0c234b 100%);
    color: #ffffff;
    border-top: 1px solid rgba(56, 189, 248, 0.2);
    padding: 72px 0;
}

.dark .wrap {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 40px;
    box-sizing: border-box;
}

.cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    /* background: rgba(15, 30, 60, 0.85); */
    /* border: 1px solid rgba(56, 189, 248, 0.3); */
    padding: 44px 48px;
    /* border-radius: 24px; */
    backdrop-filter: blur(12px);
    /* box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35); */
    width: 100%;
    box-sizing: border-box;
}

.cta span {
    color: #00d2b5;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 6px;
}

.cta h2 {
    color: #ffffff;
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 8px;
    letter-spacing: -0.02em;
}

.cta p {
    color: #cbd5e1;
    font-size: 15px;
    margin: 0;
    line-height: 1.55;
}

.cta div:last-child {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.cta .btn.light {
    background: linear-gradient(135deg, #0ea5e9 0%, #2563eb 100%);
    color: #ffffff !important;
    border: 0;
    padding: 13px 26px;
    border-radius: 12px;
    font-size: 14.5px;
    font-weight: 800;
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.35);
    text-decoration: none !important;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.cta .btn.light:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(14, 165, 233, 0.45);
}

.cta .btn.secondary.light {
    background: rgba(15, 30, 60, 0.8);
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 13px 26px;
    border-radius: 12px;
    font-size: 14.5px;
    font-weight: 800;
    text-decoration: none !important;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.cta .btn.secondary.light:hover {
    border-color: #38bdf8;
    background: rgba(56, 189, 248, 0.15);
    transform: translateY(-2px);
}

/* Location Section & Grid */
.section-location .wrap,
#location .wrap {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    box-sizing: border-box;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: linear-gradient(135deg, #09172e 0%, #0c234b 100%);
    border: 1px solid rgba(56, 189, 248, 0.25);
    /* border-radius: 24px; */
    padding: 44px;
    color: #ffffff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(8px);
    width: 100%;
    box-sizing: border-box;
}

.location-grid h3 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 12px;
}

.location-grid p {
    color: #cbd5e1;
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0 0 16px;
}

.location-grid a[href^="tel:"] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #38bdf8 !important;
    font-size: 15.5px;
    font-weight: 800;
    text-decoration: none !important;
}

.location-grid a[href^="tel:"]:hover {
    color: #00d2b5 !important;
}

.location-grid .btn.secondary {
    background: linear-gradient(135deg, #0ea5e9, #2563eb);
    color: #ffffff !important;
    border: 0;
    padding: 12px 22px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 4px 16px rgba(14, 165, 233, 0.35);
    margin-top: 10px;
}

.location-grid .btn.secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.45);
}

.local-areas h3 {
    color: #00d2b5;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 16px;
}

.local-areas .chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.local-areas .chips span {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(15, 30, 60, 0.8);
    border: 1px solid rgba(56, 189, 248, 0.3);
    color: #e2e8f0;
    border-radius: 999px;
    font-size: 13.5px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.local-areas .chips span:hover {
    border-color: #38bdf8;
    background: rgba(56, 189, 248, 0.18);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn.light {
    background: #ffffff;
    color: #09172e !important;
    font-weight: 800;
    padding: 12px 22px;
    border-radius: 10px;
}

.btn.secondary.light {
    background: transparent;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: none;
}

/* Guided Practical Learning Section */
.course-visual-section {
    padding: 80px 0;
    background: #ffffff;
}

.course-visual-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 48px;
    align-items: center;
}

.visual-kicker {
    display: inline-block;
    color: #0284c7;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.course-visual-grid h2 {
    font-size: clamp(26px, 3.5vw, 36px);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin: 8px 0 14px;
}

.course-visual-grid p {
    color: #64748b;
    font-size: 15.5px;
    line-height: 1.6;
    margin: 0 0 24px;
}

.visual-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.visual-points span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 999px;
    background: #f0f9ff;
    color: #0284c7;
    font-size: 13px;
    font-weight: 700;
}

.course-visual-grid figure {
    position: relative;
    margin: 0;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    box-shadow: 0 20px 48px rgba(15, 30, 60, 0.12);
}

.course-visual-grid figure img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 20px;
}

.course-visual-grid figcaption {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 16px;
    padding: 10px 16px;
    border-radius: 12px;
    color: #ffffff;
    background: rgba(9, 23, 46, 0.85);
    backdrop-filter: blur(8px);
    font-size: 13px;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

@media (max-width: 900px) {
    .hero {
        padding: 48px 0 56px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .course-visual-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .location-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 22px;
    }

    .cta {
        flex-direction: column;
        text-align: center;
        padding: 36px 24px;
    }

    .cta div:last-child {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .cta .btn {
        width: 100%;
        margin: 0;
    }
}

@media (max-width: 640px) {
    .hero h1 {
        font-size: 32px;
        line-height: 1.15;
    }

    .hero h2 {
        font-size: 17.5px;
    }

    .lead {
        font-size: 14.5px;
    }

    .actions {
        flex-direction: column;
        width: 100%;
    }

    .actions .btn {
        width: 100%;
        text-align: center;
    }

    .quick {
        grid-template-columns: 1fr;
        gap: 12px;
    }

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

    .enquiry-card {
        padding: 22px 18px;
    }

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

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

    .accordion details {
        padding: 14px 16px;
    }

    .accordion summary {
        font-size: 15px;
        padding-right: 36px;
    }

    .accordion summary b {
        padding: 2px 8px;
        font-size: 12px;
        margin-right: 10px;
    }

    .accordion summary::after {
        width: 26px;
        height: 26px;
        font-size: 17px;
    }

    .accordion p,
    .accordion ul {
        margin-left: 0;
    }

    .section {
        padding: 50px 0;
    }
}