/* ================================================================
   ROOT VARIABLES – Golden White + Shiny Teal Palette
   ================================================================ */
:root {
    /* Backgrounds – Warm Golden White */
    --bg-white: #FDFBF7;
    --bg-light: #F5F0E8;
    --bg-card: #FFFFFF;
    
    /* Text – Pure Black for readability */
    --text-primary: #111111;
    --text-secondary: #333333;
    --text-muted: #777777;
    --text-light: #999999;
    
    /* Accent – Shiny Metallic Teal (instead of gold) */
    --accent-teal: #0F6973;
    --accent-teal-light: #D8EFF2;
    --accent-teal-dark: #0A4F57;
    
    /* Shiny Teal Gradient – metallic shine effect */
    --teal-shiny: linear-gradient(135deg, #063A42 0%, #0F6973 25%, #1A8B96 45%, #4DB8C4 60%, #0F6973 80%, #063A42 100%);
    
    /* Borders & Shadows – Soft teal/grey */
    --border-light: #D5D0C8;
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 40px rgba(0, 0, 0, 0.08);
    --shadow-teal: 0 8px 32px rgba(15, 105, 115, 0.2);
    
    /* Sizing */
    --radius: 16px;
    --radius-sm: 10px;
    --transition: 0.3s ease;
}

/* ================================================================
   RESET & BASE
   ================================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-white);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* ================================================================
   LOADER
   ================================================================ */
#loader {
    position: fixed;
    inset: 0;
    background: var(--bg-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.loader-ring {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #e0ddd5;
    border-top-color: var(--accent-teal);
    animation: spin 0.8s linear infinite;
}
.loader-text {
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--text-secondary);
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ================================================================
   CANVAS BACKGROUND – White (contrails draw in grey)
   ================================================================ */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background: #FDFBF7;
}

/* ================================================================
   CONTENT WRAPPER – sits above canvas
   ================================================================ */
.content-wrapper {
    position: relative;
    z-index: 1;
}

/* ================================================================
   SCROLL TO TOP BUTTON
   ================================================================ */
#scrollTop {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-light);
    background: var(--bg-white);
    color: var(--text-secondary);
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: translateY(20px);
}
#scrollTop.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
#scrollTop:hover {
    background: var(--accent-teal);
    color: #fff;
    border-color: var(--accent-teal);
}

/* ================================================================
   NAVIGATION BAR
   ================================================================ */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(253, 251, 247, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border-light);
    padding: 0.6rem 0;
}
.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-primary);
    text-decoration: none;
}
/* Brand wordmark – shiny teal */
.logo span {
    background: var(--teal-shiny);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}
.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-teal);
    transition: width 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
}
.nav-links a.active::after,
.nav-links a:hover::after {
    width: 100%;
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    width: 26px;
    height: 2.5px;
    background: var(--text-secondary);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ================================================================
   HERO SECTION
   ================================================================ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 6rem 1.5rem 3rem;
    position: relative;
    background: transparent;
}

/* Main Heading – black, only .accent is shiny teal */
.hero h1 {
    font-size: 3.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 1.2rem;
    line-height: 1.15;
    color: var(--text-primary);
}
.hero p {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-secondary);
    max-width: 700px;
    line-height: 1.8;
    margin-bottom: 1rem;
}
.hero .hero-tagline {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2.5rem;
    letter-spacing: 0.5px;
}

/* Accent – shiny teal */
.accent {
    background: var(--teal-shiny);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* ================================================================
   ENROLLMENT CARD – teal shimmer bar
   ================================================================ */
.enrollment-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 2.8rem 3.5rem;
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.enrollment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-teal), var(--accent-teal-light), var(--accent-teal));
    background-size: 200% 100%;
    animation: shimmer 4s ease-in-out infinite;
}
@keyframes shimmer {
    0%, 100% { background-position: -200% 0; }
    50% { background-position: 200% 0; }
}
.enrollment-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-teal);
}
.enrollment-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
}
.enrollment-card p {
    color: var(--text-secondary);
    margin-bottom: 1.8rem;
    font-size: 1rem;
    font-weight: 400;
}

/* ================================================================
   BUTTONS – Teal primary, teal secondary border
   ================================================================ */
.btn-cta {
    display: inline-block;
    padding: 0.9rem 3rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--accent-teal), var(--accent-teal-dark));
    border: none;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(15, 105, 115, 0.25);
}
.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(15, 105, 115, 0.4);
}

.btn-secondary {
    display: inline-block;
    padding: 0.65rem 2rem;
    border: 1.5px solid var(--accent-teal);
    background: transparent;
    color: var(--accent-teal);
    border-radius: 40px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    width: fit-content;
    margin-top: auto;
}
.btn-secondary:hover {
    border-color: var(--accent-teal-light);
    color: var(--accent-teal-dark);
    background: rgba(15, 105, 115, 0.06);
}

.btn-submit {
    width: 100%;
    padding: 0.9rem;
    background: linear-gradient(135deg, var(--accent-teal), var(--accent-teal-dark));
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-teal);
}

/* ================================================================
   SECTION TITLES – shiny teal accent
   ================================================================ */
.section {
    padding: 5rem 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
}
.section-title {
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
}
.section-title span {
    background: var(--teal-shiny);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ================================================================
   COURSE CARDS – teal hover
   ================================================================ */
.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}
.course-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 2.5rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    position: relative;
}
.course-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-teal);
    border-color: var(--accent-teal-light);
}
.course-icon {
    font-size: 2.4rem;
    margin-bottom: 0.8rem;
    color: var(--accent-teal);
}
.course-tag {
    display: inline-block;
    padding: 0.2rem 1rem;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--accent-teal);
    background: rgba(15, 105, 115, 0.08);
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    width: fit-content;
}
.course-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}
.course-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}
.course-features {
    list-style: none;
    margin-bottom: 1.8rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}
.course-features li {
    padding: 0.25rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.course-features li::before {
    content: '✦';
    color: var(--accent-teal);
    font-size: 0.7rem;
}

/* ================================================================
   ABOUT SECTION
   ================================================================ */
.about-split {
    display: flex;
    gap: 4rem;
    align-items: center;
}
.about-left {
    flex: 1.2;
}
.about-left p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}
.about-left strong {
    color: var(--text-primary);
    font-weight: 600;
}
.about-right {
    flex: 1;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--text-muted);
    letter-spacing: 2px;
    transition: border-color 0.3s ease;
}
.about-right:hover {
    border-color: var(--accent-teal-light);
}
.about-right span:first-child {
    font-size: 3rem;
}

/* ================================================================
   FORM – teal focus border
   ================================================================ */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 2.5rem 3rem;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s ease;
}
.form-container:hover {
    box-shadow: var(--shadow-teal);
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.4rem;
    font-weight: 500;
}
.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem 1.2rem;
    background: #fff;
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}
.form-group input:focus,
.form-group select:focus {
    border-color: var(--accent-teal);
}

/* ================================================================
   FOOTER
   ================================================================ */
footer {
    border-top: 1px solid var(--border-light);
    padding: 3rem 1.5rem;
    margin-top: 2rem;
    background: var(--bg-white);
}
.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.footer-brand .logo {
    font-size: 1.4rem;
    color: var(--text-primary);
}
.footer-brand p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 0.2rem;
}
.footer-links {
    display: flex;
    gap: 1.8rem;
    flex-wrap: wrap;
}
.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: var(--accent-teal);
}
.footer-copy {
    color: var(--text-muted);
    font-size: 0.85rem;
    width: 100%;
    text-align: center;
    margin-top: 0.5rem;
}

/* ================================================================
   REVEAL ANIMATION
   ================================================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================================================================
   BLOG CARDS – teal hover
   ================================================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-teal);
    border-color: var(--accent-teal-light);
}
.blog-img {
    height: 200px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-light);
}
.blog-content {
    padding: 1.8rem;
}
.blog-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}
.blog-meta .category {
    color: var(--accent-teal);
    font-weight: 600;
}
.blog-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
}
.blog-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

/* ================================================================
   CONTACT CARDS – teal hover
   ================================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}
.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-teal);
    border-color: var(--accent-teal-light);
}
.contact-card .icon {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--accent-teal);
}
.contact-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}
.contact-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
}
.contact-card .btn-secondary {
    width: 100%;
    text-align: center;
    justify-content: center;
}

/* ================================================================
   SOCIAL CARDS – teal hover
   ================================================================ */
.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}
.social-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}
.social-card:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-teal);
    border-color: var(--accent-teal-light);
}
.social-card .platform {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    color: var(--accent-teal);
}
.social-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
}
.social-card .followers {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0.5rem 0 1.2rem;
}

/* ================================================================
   ABOUT PAGE – STATS & TIMELINE
   ================================================================ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}
.stat-item {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 1.8rem;
    text-align: center;
    transition: all 0.3s ease;
}
.stat-item:hover {
    border-color: var(--accent-teal-light);
    box-shadow: var(--shadow-sm);
}
.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-primary);
}
.stat-number .gold {
    color: var(--accent-teal);
}
.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.3rem;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}
.timeline-item {
    display: flex;
    gap: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 1.5rem 2rem;
    transition: all 0.3s ease;
}
.timeline-item:hover {
    border-color: var(--accent-teal-light);
}
.timeline-item .year {
    font-weight: 700;
    color: var(--accent-teal);
    min-width: 80px;
}
.timeline-item .desc {
    color: var(--text-secondary);
}

/* ================================================================
   RESPONSIVE DESIGN
   ================================================================ */
@media (max-width: 1024px) {
    .about-split {
        flex-direction: column;
    }
    .about-right {
        width: 100%;
        height: 200px;
    }
    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(253, 251, 247, 0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: scaleY(0);
        transform-origin: top;
        transition: transform 0.3s ease;
        border-bottom: 1px solid var(--border-light);
        pointer-events: none;
    }
    .nav-links.open {
        transform: scaleY(1);
        pointer-events: auto;
    }
    .hamburger {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2.4rem;
        letter-spacing: 1px;
    }
    .hero p {
        font-size: 1rem;
    }
    .enrollment-card {
        padding: 1.8rem 1.5rem;
    }
    .enrollment-card h3 {
        font-size: 1.3rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .course-grid {
        grid-template-columns: 1fr;
    }
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
    .footer-links {
        justify-content: center;
    }
    .form-container {
        padding: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    .hero .hero-tagline {
        font-size: 0.95rem;
    }
    .btn-cta {
        padding: 0.7rem 2rem;
        font-size: 0.85rem;
    }
    .enrollment-card h3 {
        font-size: 1.1rem;
    }
    .section-title {
        font-size: 1.6rem;
    }
}

/* ================================================================
   LOGO IMAGES
   ================================================================ */
.logo-img {
    border-radius: 50%;
    object-fit: cover;
    display: block;
    background: #e8e8e8;
    border: 1px solid var(--border-light);
    flex-shrink: 0;
}
.logo-nav {
    height: 36px;
    width: 36px;
}
.logo-footer {
    height: 65px;
    width: 65px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.footer-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.footer-brand-text .logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    line-height: 1.2;
}
.footer-brand-text p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 0;
    line-height: 1.2;
}

/* ================================================================
   REDUCED SPACING
   ================================================================ */
.hero h1 {
    line-height: 1.1;
    margin-bottom: 0.8rem;
}
.hero p {
    line-height: 1.6;
    margin-bottom: 0.6rem;
}
.hero .hero-tagline {
    margin-bottom: 2rem;
}
.section {
    padding: 4rem 1.5rem;
}
.section-title {
    margin-bottom: 2.5rem;
}
.enrollment-card {
    padding: 2rem 2.5rem;
}
.footer-inner {
    gap: 1rem;
}
.footer-copy {
    margin-top: 0.2rem;
}

/* ================================================================
   NEW ADDITIONS FOR INDEX & COURSES PAGES
   ================================================================ */
.highlight {
    background: var(--teal-shiny);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.about-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-light);
    background: #f0f0f0;
}

.consultation-card {
    text-align: center;
    padding: 0.5rem 0;
}
.consultation-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}
.consultation-card p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 1.8rem;
}
.consultation-card .btn-cta {
    font-size: 1.1rem;
    padding: 1rem 3.5rem;
}

.divider {
    border: none;
    border-top: 1.5px solid var(--border-light);
    margin: 2.5rem 0;
}

.quick-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.quick-links .btn-secondary {
    padding: 0.8rem 2.2rem;
    font-size: 1rem;
    border-width: 1.5px;
    min-width: 160px;
}
.quick-links .btn-secondary:hover {
    background: rgba(15, 105, 115, 0.06);
    color: var(--accent-teal-dark);
    border-color: var(--accent-teal);
}

.course-card .course-icon {
    display: none;
}

@media (max-width: 600px) {
    .quick-links {
        flex-direction: column;
        align-items: center;
    }
    .quick-links .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    .about-logo {
        width: 80px;
        height: 80px;
    }
}

/* ================================================================
   ROADMAP PAGE – FIX: heading and timeline colours
   ================================================================ */
.roadmap-hero h1 {
    color: var(--text-primary) !important;
}
.roadmap-hero h1 .gold {
    color: var(--accent-teal);
}
.timeline-item .year {
    font-weight: 700;
    color: var(--accent-teal);
    min-width: 80px;
}
.dark-bg .section-title,
.dark-bg h1,
.dark-bg h2,
.dark-bg h3 {
    color: #FFFFFF !important;
}
.timeline-section .section-title {
    color: var(--text-primary) !important;
}