/* ============================================
   MATHWALA CLASSES — Main Stylesheet
   Mobile-First | Responsive | SEO-Friendly
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;600;700;800;900&display=swap');

/* ---- CSS Variables ---- */
:root {
    --navy: #1B2A6B;
    --navy-dark: #0F1A45;
    --saffron: #F4A225;
    --saffron-lt: #FFD080;
    --cream: #FEF8EE;
    --cream-dk: #F5ECD7;
    --charcoal: #1A1A2E;
    --muted: #6B7280;
    --white: #FFFFFF;
    --success: #22c55e;
    --card-shadow: 0 4px 24px rgba(27,42,107,0.10);
    --radius: 14px;
    --transition: 0.28s cubic-bezier(.4,0,.2,1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Heebo', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--cream);
    color: var(--charcoal);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
    font-family: 'Heebo', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2rem, 7vw, 3.6rem);
}

h2 {
    font-size: clamp(1.6rem, 5vw, 2.6rem);
}

h3 {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
}

.text-white {
    color: var(--white) !important;
}

/* ---- Math Pattern Background ---- */
.math-bg {
    position: relative;
    overflow: hidden;
}

    .math-bg::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle at 20% 50%, rgba(244,162,37,0.08) 0%, transparent 60%), radial-gradient(circle at 80% 20%, rgba(27,42,107,0.07) 0%, transparent 55%);
        pointer-events: none;
    }

/* ---- Floating Math Symbols (decorative) ---- */
.math-symbols span {
    position: absolute;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.2rem, 3vw, 2.4rem);
    color: var(--navy);
    opacity: 0.06;
    animation: floatSym 8s ease-in-out infinite;
    user-select: none;
    pointer-events: none;
}

    .math-symbols span:nth-child(2) {
        animation-delay: 1.5s;
    }

    .math-symbols span:nth-child(3) {
        animation-delay: 3s;
    }

    .math-symbols span:nth-child(4) {
        animation-delay: 4.5s;
    }

    .math-symbols span:nth-child(5) {
        animation-delay: 6s;
    }

@keyframes floatSym {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-18px) rotate(6deg);
    }
}

/* ============ NAVBAR ============ */
.navbar {
    background: var(--navy);
    padding: 0 1.25rem;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 18px rgba(0,0,0,0.22);
}

.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

    .nav-logo .logo-icon {
        width: 38px;
        height: 38px;
        background: var(--saffron);
        border-radius: 8px;
        display: grid;
        place-items: center;
        font-family: 'Playfair Display', serif;
        font-weight: 900;
        color: var(--navy);
        font-size: 1.15rem;
    }

    .nav-logo .logo-text {
        color: var(--white);
        font-family: 'Playfair Display', serif;
        font-size: 1.15rem;
        font-weight: 700;
        line-height: 1.1;
    }

        .nav-logo .logo-text span {
            display: block;
            font-family: 'Nunito', sans-serif;
            font-size: 0.68rem;
            font-weight: 400;
            color: var(--saffron-lt);
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

/* Mobile hamburger */
.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    border: none;
    background: transparent;
}

    .nav-toggle span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--white);
        border-radius: 2px;
        transition: var(--transition);
    }

    .nav-toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

.nav-links {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--navy-dark);
    padding: 1.5rem 1.25rem;
    flex-direction: column;
    gap: 0.25rem;
    display: none;
}

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        color: rgba(255,255,255,0.82);
        font-size: 1rem;
        font-weight: 600;
        padding: 0.6rem 0.75rem;
        border-radius: 8px;
        transition: var(--transition);
        display: flex;
        align-items: center;
        gap: 0.4rem;
    }

        .nav-links a:hover,
        .nav-links a.active {
            background: rgba(244,162,37,0.15);
            color: var(--saffron);
        }

/* Desktop nav */
@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }

    .nav-links {
        position: static;
        display: flex;
        flex-direction: row;
        background: transparent;
        padding: 0;
        gap: 0.5rem;
    }

        .nav-links a {
            padding: 0.4rem 0.9rem;
            font-size: 0.93rem;
        }
}

/* ============ HERO ============ */
.hero {
    /*background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);*/
    background-image: url('hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 4.5rem 1.25rem 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    max-width: 750px;
    margin: 0 auto;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(244,162,37,0.18);
    border: 1px solid rgba(244,162,37,0.4);
    color: var(--saffron);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.4rem;
    animation: fadeUp 0.7s ease both;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 1rem;
    animation: fadeUp 0.7s 0.15s ease both;
}

    .hero h1 .accent {
        color: var(--saffron);
    }

.hero p {
    font-size: clamp(0.97rem, 2.5vw, 1.15rem);
    color: rgba(255,255,255,0.78);
    max-width: 560px;
    margin: 0 auto 2rem;
    animation: fadeUp 0.7s 0.3s ease both;
}

.hero-btns {
    display: flex;
    gap: 0.85rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 0.7s 0.45s ease both;
}

/* Diagonal divider */
.hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--cream);
    clip-path: ellipse(55% 100% at 50% 100%);
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.72rem 1.7rem;
    border-radius: 100px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--saffron);
    color: var(--navy-dark);
    border-color: var(--saffron);
}

    .btn-primary:hover {
        background: #e8930f;
        border-color: #e8930f;
        transform: translateY(-2px);
        box-shadow: 0 6px 24px rgba(244,162,37,0.4);
    }

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}

    .btn-outline:hover {
        background: rgba(255,255,255,0.1);
        border-color: var(--white);
        transform: translateY(-2px);
    }

.btn-navy {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

    .btn-navy:hover {
        background: var(--navy-dark);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(27,42,107,0.3);
    }

/* ============ SECTION WRAPPERS ============ */
.section {
    padding: 4rem 1.25rem;
}

.section-sm {
    padding: 2.5rem 1.25rem;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-label {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--saffron);
    margin-bottom: 0.5rem;
    display: block;
}

.section-title {
    color: var(--navy);
    margin-bottom: 0.6rem;
}

.section-sub {
    color: var(--muted);
    font-size: 1rem;
    max-width: 540px;
    margin-bottom: 2.5rem;
}

.text-center {
    text-align: center;
}

    .text-center .section-sub {
        margin-left: auto;
        margin-right: auto;
    }

/* ============ CARDS ============ */
.card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
    padding: 1.75rem 1.5rem;
    border: 1px solid rgba(27,42,107,0.07);
    transition: transform var(--transition), box-shadow var(--transition);
}

    .card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 40px rgba(27,42,107,0.14);
    }

.card-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--saffron) 0%, #FFB649 100%);
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* ============ FEATURE GRID ============ */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 540px) {
    .feature-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 900px) {
    .feature-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============ STATS BAR ============ */
.stats-bar {
    background: var(--navy);
    padding: 2rem 1.25rem;
}

.stats-inner {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    text-align: center;
}

@media (min-width: 600px) {
    .stats-inner {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--saffron);
    line-height: 1;
}

.stat-label {
    color: rgba(255,255,255,0.7);
    font-size: 0.82rem;
    margin-top: 0.25rem;
}

/* ============ TESTIMONIALS ============ */
.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .testimonial-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 900px) {
    .testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--card-shadow);
    border-left: 4px solid var(--saffron);
}

.stars {
    color: var(--saffron);
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
}

.testimonial-text {
    font-size: 0.93rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--navy);
}

.testimonial-class {
    font-size: 0.78rem;
    color: var(--muted);
}

/* ============ SCHEDULE TABLE ============ */
.schedule-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    font-size: 0.92rem;
}

    .schedule-table thead {
        background: var(--navy);
        color: var(--white);
    }

    .schedule-table th, .schedule-table td {
        padding: 0.85rem 1rem;
        text-align: left;
        border-bottom: 1px solid rgba(27,42,107,0.08);
    }

    .schedule-table tbody tr:nth-child(even) {
        background: var(--cream-dk);
    }

    .schedule-table tbody tr:hover {
        background: rgba(244,162,37,0.08);
    }

.badge-11 {
    background: rgba(27,42,107,0.12);
    color: var(--navy);
    border-radius: 6px;
    padding: 0.15rem 0.55rem;
    font-size: 0.78rem;
    font-weight: 700;
}

.badge-12 {
    background: rgba(244,162,37,0.2);
    color: #8a5800;
    border-radius: 6px;
    padding: 0.15rem 0.55rem;
    font-size: 0.78rem;
    font-weight: 700;
}

/* ============ ABOUT PAGE ============ */
.about-hero {
    background: linear-gradient(135deg, var(--navy) 0%, #2C3E8C 100%);
    color: var(--white);
    padding: 3.5rem 1.25rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .about-hero h1 {
        color: var(--white);
        margin-bottom: 0.75rem;
    }

    .about-hero p {
        color: rgba(255,255,255,0.75);
        max-width: 520px;
        margin: 0 auto;
    }

    .about-hero::after {
        content: '';
        position: absolute;
        bottom: -1px;
        left: 0;
        right: 0;
        height: 50px;
        background: var(--cream);
        clip-path: ellipse(55% 100% at 50% 100%);
    }

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.tutor-photo-wrap {
    background: linear-gradient(135deg, var(--navy) 0%, #2C3E8C 100%);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.tutor-avatar {
    width: 100px;
    height: 100px;
    background: var(--saffron);
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: grid;
    place-items: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--navy);
    box-shadow: 0 0 0 6px rgba(244,162,37,0.25);
}

.tutor-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.tutor-title {
    color: var(--saffron-lt);
    font-size: 0.88rem;
    margin-bottom: 1rem;
}

.tutor-exp {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.85);
}

.qualifications li {
    display: flex;
    gap: 0.6rem;
    margin-bottom: 0.75rem;
    font-size: 0.93rem;
}

    .qualifications li::before {
        content: '✓';
        color: var(--saffron);
        font-weight: 700;
        flex-shrink: 0;
    }

/* ============ CONTACT PAGE ============ */
.contact-hero {
    background: linear-gradient(135deg, var(--navy) 0%, #2C3E8C 100%);
    color: var(--white);
    padding: 3.5rem 1.25rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .contact-hero h1 {
        color: var(--white);
        margin-bottom: 0.75rem;
    }

    .contact-hero p {
        color: rgba(255,255,255,0.75);
    }

    .contact-hero::after {
        content: '';
        position: absolute;
        bottom: -1px;
        left: 0;
        right: 0;
        height: 50px;
        background: var(--cream);
        clip-path: ellipse(55% 100% at 50% 100%);
    }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1.5fr;
    }
}

.contact-info-card {
    background: var(--navy);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    color: var(--white);
}

    .contact-info-card h3 {
        color: var(--saffron);
        margin-bottom: 1.5rem;
        font-size: 1.2rem;
    }

.info-item {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    align-items: flex-start;
}

.info-icon {
    width: 36px;
    height: 36px;
    background: rgba(244,162,37,0.15);
    border-radius: 8px;
    display: grid;
    place-items: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.info-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.info-value {
    font-size: 0.92rem;
    color: var(--white);
    font-weight: 600;
    margin-top: 0.1rem;
}

/* ============ FORM ============ */
.form-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    box-shadow: var(--card-shadow);
}

    .form-card h3 {
        color: var(--navy);
        margin-bottom: 1.5rem;
        font-size: 1.3rem;
    }

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 480px) {
    .form-row.two-col {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

    .form-group label {
        font-size: 0.82rem;
        font-weight: 700;
        color: var(--navy);
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.72rem 1rem;
        border: 2px solid rgba(27,42,107,0.15);
        border-radius: 10px;
        font-family: 'Nunito', sans-serif;
        font-size: 0.95rem;
        color: var(--charcoal);
        background: var(--cream);
        transition: border-color var(--transition), box-shadow var(--transition);
        outline: none;
        width: 100%;
    }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--navy);
            box-shadow: 0 0 0 3px rgba(27,42,107,0.1);
            background: var(--white);
        }

    .form-group textarea {
        resize: vertical;
        min-height: 110px;
    }

    .form-group select {
        appearance: none;
        cursor: pointer;
    }

.form-submit-btn {
    width: 100%;
    padding: 0.9rem;
    background: var(--navy);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

    .form-submit-btn:hover {
        background: var(--navy-dark);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(27,42,107,0.3);
    }

    .form-submit-btn:disabled {
        opacity: 0.65;
        cursor: not-allowed;
        transform: none;
    }

/* HTMX Loading indicator */
.htmx-indicator {
    display: none;
}

.htmx-request .htmx-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.htmx-request .btn-text {
    display: none;
}

.spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Success / Error messages */
.form-msg {
    padding: 1rem 1.25rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.93rem;
    display: none;
    margin-top: 1rem;
    align-items: center;
    gap: 0.5rem;
}

    .form-msg.success {
        background: #dcfce7;
        color: #15803d;
        border: 1px solid #86efac;
        display: flex;
    }

    .form-msg.error {
        background: #fee2e2;
        color: #dc2626;
        border: 1px solid #fca5a5;
        display: flex;
    }

/* ============ MAP PLACEHOLDER ============ */
.map-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    height: 260px;
    background: linear-gradient(135deg, #e8ecf7 0%, #d5ddf4 100%);
    display: grid;
    place-items: center;
    text-align: center;
    border: 2px dashed rgba(27,42,107,0.2);
}

.map-placeholder {
    color: var(--navy);
    opacity: 0.6;
}

    .map-placeholder .map-icon {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }

    .map-placeholder p {
        font-size: 0.88rem;
    }

/* ============ FOOTER ============ */
.footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.7);
    padding: 3rem 1.25rem 1.5rem;
}

.footer-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
}

.footer-brand .logo-text {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
}

.footer-brand p {
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-col h4 {
    color: var(--saffron);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.footer-col li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    font-size: 0.88rem;
    transition: color 0.2s;
}

    .footer-col a:hover {
        color: var(--white);
    }

.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: space-between;
    font-size: 0.8rem;
}

/* ============ CTA STRIP ============ */
.cta-strip {
    background: linear-gradient(135deg, var(--saffron) 0%, #FFB649 100%);
    padding: 3rem 1.25rem;
    text-align: center;
}

    .cta-strip h2 {
        color: var(--navy-dark);
        margin-bottom: 0.75rem;
    }

    .cta-strip p {
        color: rgba(27,42,107,0.75);
        margin-bottom: 1.5rem;
        font-size: 1rem;
    }

/* ============ ANIMATIONS ============ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    animation: fadeUp 0.6s ease both;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

/* Scroll-reveal helper */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: none;
    }

/* ============ UTILITY ============ */
.bg-cream-dk {
    background: var(--cream-dk);
}

.divider {
    height: 1px;
    background: rgba(27,42,107,0.1);
    margin: 0;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

/* Responsive table scroll */
.table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
}
