/* ============================================
   TerraLeap Footer Styles
============================================ */

/* Main Footer */
/*.footer {
    background: #0b1a3b;
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 60px;
}*/

/* Grid Layout */
/*.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}*/

/* Brand */
/*.footer-brand-name {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-brand-desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 15px;
}

.footer-email a {
    color: #ffffff;
    text-decoration: none;
}

    .footer-email a:hover {
        text-decoration: underline;
    }*/

/* Column Title */
/*.footer-col-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 18px;
}*/

/* Links */
/*.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .footer-links a {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.75);
        text-decoration: none;
        transition: 0.3s ease;
    }

        .footer-links a:hover {
            color: #ffffff;
        }*/

/* Bottom Section */
/*.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 40px;
    padding-top: 20px;
}

.footer-copy {
    font-size: 13px;
    margin-bottom: 10px;
}

.footer-disclaimer {
    font-size: 12px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}*/

/* Extra Footer Section */
/*.fc-footer {
    background: #06102a;
    padding: 30px 0;
}*/

/* ============================================
   Responsive
============================================ */

/*@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer {
        padding: 40px 0 20px;
    }
}*/

/* ── FOOTER ── */
:root {
    --gray-dark: #2C2C2A;
}
    .footer {
    background: var(--gray-dark);
    color: #ccc;
    padding: 48px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand-name {
    font-family: 'Fraunces',serif;
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 12px;
}

.footer-brand-desc {
    font-size: 13px;
    color: #aaa;
    line-height: 1.7;
    margin-bottom: 16px;
}

.footer-email {
    font-size: 13px;
    color: #aaa;
}

    .footer-email a {
        color: var(--blue-mid);
    }

.footer-col-title {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #fff;
    margin-bottom: 14px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .footer-links a {
        font-size: 13px;
        color: #aaa;
        transition: color .15s;
    }

        .footer-links a:hover {
            color: #fff;
        }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy {
    font-size: 12px;
    color: #888;
}

.footer-disclaimer {
    font-size: 11px;
    color: #666;
    max-width: 700px;
    line-height: 1.5;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

section, footer, .hero, .navbar, .fc-footer {
    box-sizing: border-box !important;
    max-width: 100vw !important;
}

/* ════════════════════════════════════════════════════
           COURSE-LINKS FOOTER
           Background matches main footer: var(--gray-dark) = #2C2C2A
        ════════════════════════════════════════════════════ */
.fc-footer {
    background: var(--gray-dark); /* same #2C2C2A as main footer */
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 40px 0 36px;
    width: 100%;
    box-sizing: border-box;
}

.fc-cat {
    margin-bottom: 22px;
}

    .fc-cat:last-child {
        margin-bottom: 0;
    }

.fc-cat-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #fff;
    margin-bottom: 8px;
    font-family: 'DM Sans',sans-serif;
}

.fc-cat-links {
    font-size: 12px;
    color: #888;
    line-height: 2.1;
}

    .fc-cat-links a {
        color: #aaa;
        text-decoration: none;
        transition: color .15s;
    }

        .fc-cat-links a:hover {
            color: #fff;
        }

@media(max-width:900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:768px) {
    .fc-footer {
        padding: 28px 0 24px;
    }

    .fc-cat-links {
        font-size: 11.5px;
        line-height: 1.95;
    }
}

@media(max-width:600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
    }
}
