        :root {
            /* Your Specific Palette */
            --navy: #143D60;
            --orange: #EB5B00;
            --green: #3c6c0d;
            --purple: #7c3aed;
            --white: #ffffff;
            --bg: #f8fafc;
            --border: #e2e8f0;
            --text-slate: #64748b;
            --bg-soft: #fcfdfe;

            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Outfit', sans-serif;
        }

        body {
            background-color: var(--white);
            color: var(--navy);
            line-height: 1.6;
        }

        /* --- NAVBAR --- */
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 8%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border);
        }

        .logo img {
            height: 40px;
            width: auto;
            display: block;
        }

        .logo span {
            color: var(--orange);
        }

        .nav-links {
            display: flex;
            gap: 30px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--navy);
            font-weight: 600;
            font-size: 1.1rem;
            transition: var(--transition);
        }

        .nav-links a:hover {
            color: var(--text-slate);
        }


        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: var(--navy);
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -5px);
}

/* NEW: Close X for better UX */
.hamburger::after {
    content: '×';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px;
    font-weight: 900;
    color: var(--navy);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.hamburger span {
    position: relative;
    z-index: 2;
}

.hamburger.active::after {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }

            .nav-links {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background: var(--white);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-120%);
                opacity: 0;
                visibility: hidden;
                transition: 0.3s;
                z-index: 999;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            }

            .nav-links.mobile-open {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }

            .nav-links a {
                font-size: 1.1rem;
                padding: 0.8rem 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
                opacity: 0.9;
                transition: all 0.3s ease;
            }

            .nav-links a:hover {
                color: var(--orange);
                transform: translateX(5px);
            }
        }

        .tabs {
            width: 100%;
        }

        /* TAB BUTTONS */
        .tab-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            padding: 20px 0;
            flex-wrap: wrap;
        }

        .tab-btn {
            padding: 12px 22px;
            border-radius: 30px;
            border: 1px solid #dcdcdc;
            background: #eee;
            color: #5f6b7a;
            font-weight: 600;
            cursor: pointer;
            transition: 0.3s;
        }

        /* ACTIVE TAB */
        .tab-btn.active {
            background: #183b5b;
            color: #fff;
            border: none;
        }

        /* SMALL GREEN DOT */
        .tab-btn .dot {
            display: inline-block;
            width: 6px;
            height: 6px;
            background: #8bdc65;
            border-radius: 50%;
            margin-left: 6px;
        }

        /* TAB CONTENT */
        .tab-content {
            display: none;
            margin-top: 10px; 
        }

        .tab-content.active {
            display: block;
        }


        /* --- SECTION HEADERS --- */
        section {
            padding: 100px 8%;
        }

        .section-header {
            margin-bottom: 50px;
            max-width: 700px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 10px;
            letter-spacing: -1px;
            color: #123c61;
        }

        .section-header p {
            color: var(--text-slate);
            font-size: 1.1rem;
        }

        #schedule {
            padding-left: 0;
            padding-right: 0;
        }

        .center-box {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
        }

        /* --- SCHEDULE TABLE --- */
        .table-wrapper {
            background: var(--white);
            border-radius: 8px;
            overflow-x: auto; 
            border: 1px solid var(--border);
            box-shadow: 0 10px 30px rgba(20, 61, 96, 0.05);
            width: 100%;
            max-width: 100%;
            -webkit-overflow-scrolling: touch;
        }

        .tab-content {
            padding: 0 5%;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            text-align: left;
        }

        th {
            background: var(--navy);
            color: var(--white);
            padding: 20px;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        td {
            padding: 20px;
            border-bottom: 1px solid var(--border);
            font-size: 0.95rem;
            color: var(--navy);
        }

        tr:last-child td {
            border-bottom: none;
        }

        .badge {
            background: var(--bg);
            color: var(--purple);
            color: #52990b;
            padding: 4px 12px;
            border-radius: 4px;
            font-weight: 700;
            font-size: 0.75rem;
            border: 1px solid var(--border);
        }

        /* --- CONTACT GRID --- */
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3px;
            background: var(--bg-soft);
            padding: 60px 60px 60px 40px; 
            border-radius: 12px;
            border: 1px solid var(--border);
            margin-top: -30px; 
        }

        .contact-info h3 {
            font-size: 1.8rem;
            margin-bottom: 25px;
        }

        .contact-method {
            margin-bottom: 25px;
        }

        .contact-method label {
            color: var(--green);
            font-weight: 800;
            font-size: 1rem;
            display: block;
        }
span{
    font-weight: 600;
    color: #1a65c0;
}
        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            border: 1px solid var(--border);
            border-radius: 4px;
            outline: none;
        }

        .btn-submit {
            background: var(--navy);
            color: var(--white);
            border: none;
            padding: 15px 30px;
            font-weight: 700;
            text-transform: uppercase;
            cursor: pointer;
            width: 100%;
            transition: var(--transition);
        }

        .btn-submit:hover {
            background: var(--orange);
        }

        /* ===== FOOTER ===== */
        footer {
            width: 100%;
            margin-top: auto;
            background: #082945;
            color: #94a3b8;
            padding: 4rem clamp(1rem, 5vw, 6rem) 2rem;
            z-index: 10;
            box-sizing: border-box;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .footer-col h5 {
            color: white;
            font-size: 1.1rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-col h5::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 30px;
            height: 3px;
            background: var(--green);
        }

        .footer-col p {
            font-size: 1rem;
            line-height: 1.8;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 12px;
            font-size: 1rem;
        }

        .footer-col a {
            color: inherit;
            text-decoration: none;
            transition: 0.2s;
        }

        .footer-col a:hover {
            color: var(--orange);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            width: 36px;
            height: 36px;
            background: rgba(255, 255, 255, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            color: white;
            text-decoration: none;
            font-weight: bold;
        }

        .social-links a:hover {
            background: var(--green);
            color: var(--navy);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 0.85rem;
        }


        @media (max-width: 968px) {

            .contact-container,
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }