/* ========================================
   GLOBAL FOOTER - SEO Optimized Design
   Clean, Systematic, Responsive
   ======================================== */

#global-footer {
    background: linear-gradient(to bottom, #0a0a0a 0%, #000000 100%);
    padding: 0;
    font-family: var(--font-body, 'Inter', sans-serif);
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    width: 100%;
    position: relative;
}

.footer-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   MISSION STATEMENT SECTION
   ======================================== */

.footer-mission {
    padding: 80px 0 60px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.footer-mission-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.footer-mission-text {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    text-align: center;
}

/* ========================================
   FOOTER GRID - Main Navigation
   ======================================== */

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding: 60px 0;
    margin: 0;
}

/* Brand Column */
.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 0.75rem 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 2rem 0;
    max-width: 280px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
}

.contact-row i {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 2px;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.contact-row span {
    color: rgba(255, 255, 255, 0.65);
}

.contact-row a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.65);
    transition: color 0.25s ease;
}

.contact-row a:hover {
    color: #ffffff;
}

/* Footer Columns */
.footer-col h4 {
    font-size: 1rem;
    color: #ffffff;
    margin: 0 0 1.25rem 0;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links li {
    margin: 0;
}

.footer-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.25s ease, transform 0.25s ease;
    display: inline-block;
}

.footer-link:hover {
    color: #ffffff;
    transform: translateX(3px);
}

/* ========================================
   FOOTER BOTTOM - Copyright & Navigation
   ======================================== */

.footer-bottom {
    padding: 30px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    opacity: 0.8;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-disclaimer-text {
    font-size: 0.8rem !important;
    color: rgba(255, 255, 255, 0.45) !important;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto 12px auto !important;
}

/* Footer Navigation - Standard Link Style */
.footer-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.footer-nav-link {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 4px 0;
    transition: all 0.25s ease;
    border-bottom: 1px solid transparent;
}

.footer-nav-link:hover {
    color: #ffffff;
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.footer-nav-link.active-page {
    color: #ffffff;
    font-weight: 600;
    border-bottom-color: #ffffff;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablet */
@media (max-width: 900px) {
    .footer-mission {
        padding: 60px 0 50px;
    }

    .footer-mission-title {
        font-size: 1.6rem;
    }

    .footer-mission-text {
        font-size: 0.95rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        padding: 50px 0;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-tagline {
        max-width: 100%;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .footer-mission {
        padding: 40px 0 30px;
        text-align: left;
    }

    .footer-mission-title {
        font-size: 1.25rem;
        text-align: left;
        margin-bottom: 1rem;
    }

    .footer-mission-text {
        font-size: 0.85rem;
        line-height: 1.6;
        text-align: left;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        /* 2 columns for better compactness */
        gap: 30px 20px;
        padding: 30px 0;
    }

    .footer-brand {
        grid-column: 1 / -1;
        /* Brand takes full width */
        margin-bottom: 10px;
    }

    .footer-brand h3 {
        font-size: 1.3rem;
    }

    .footer-tagline {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }

    /* Adjust specific columns if needed */
    .footer-col h4 {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .footer-link {
        font-size: 0.85rem;
    }

    .footer-contact-info {
        gap: 10px;
    }

    .contact-row {
        font-size: 0.85rem;
    }

    .footer-bottom {
        padding: 20px 0;
        gap: 15px;
    }

    /* Compact Mobile Navigation */
    .footer-nav {
        flex-direction: row;
        /* Keep row to wrap */
        gap: 8px;
        width: 100%;
        justify-content: center;
    }

    .footer-nav-link {
        width: auto;
        padding: 4px 0;
        font-size: 0.75rem;
        background: transparent;
        border-radius: 0;
        border: none;
        border-bottom: 1px solid transparent;
    }

    .footer-nav-link.active-page {
        border-bottom-color: #ffffff;
        background: transparent;
        color: #fff;
    }
}

/* Very Small Screens */
@media (max-width: 400px) {
    .footer-grid {
        grid-template-columns: 1fr;
        /* Back to 1 column for very small */
        gap: 30px;
    }

    .footer-mission-title {
        font-size: 1.1rem;
    }

    .footer-mission-text {
        font-size: 0.8rem;
    }
}