/* =========================================
   BRIGHT ANGEL - PREMIUM COMPACT FOOTER
   ========================================= */

#ba-global-footer {
    background-color: #0b1120; /* Original Deep Navy */
    color: #94a3b8;
    padding: 35px 0 15px 0; /* Reduced padding for compact look */
    font-family: 'Times New Roman', Times, serif; /* Original Font */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem; /* Slightly smaller text */
}

/* --- GRID SYSTEM: Forces 4 columns to stay in one line --- */
#ba-global-footer .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.ba-footer-col {
    flex: 1; 
    min-width: 200px; /* Prevents merging */
    padding: 0 10px;
    margin-bottom: 20px;
}

/* --- HEADERS --- */
#ba-global-footer h5 {
    color: #ffffff;
    font-size: 1rem; /* Compact header */
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #ef4444; /* Original Red Underline */
    display: inline-block;
    padding-bottom: 5px;
}

/* --- TEXT & ICONS --- */
.ba-footer-col address, 
.ba-footer-col p {
    font-size: 0.9rem;
    line-height: 1.5; /* Tighter line height */
    margin-bottom: 8px; /* Less space between items */
    display: flex;
    align-items: flex-start;
}

/* Original Sky Blue Icons */
.ba-footer-col i {
    color: #00bfff; 
    margin-right: 10px;
    margin-top: 3px;
    min-width: 16px;
    text-align: center;
}

.ba-footer-col a {
    color: #00bfff;
    text-decoration: none;
    transition: 0.3s;
}

.ba-footer-col a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* --- CONNECT SECTION (Compacted) --- */
.ba-social-grid {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.ba-social-link {
    font-size: 1.5rem; /* Slightly smaller icons */
    transition: transform 0.3s;
    text-decoration: none !important;
}

/* Brand Colors */
.ba-social-link.fb { color: #1877F2 !important; }
.ba-social-link.inst { color: #E4405F !important; }
.ba-social-link.ln { color: #0A66C2 !important; }

.ba-social-link:hover { transform: translateY(-3px); }

/* Compact Quick Links */
.ba-quick-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 10px;
    font-size: 0.9rem;
}

/* --- RED BUTTON (Scaled Down) --- */
/* Kept the design but made it smaller/sleeker */
.ba-footer-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ef4444; 
    color: #ffffff !important;
    padding: 8px 16px; /* Reduced padding */
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.85rem; /* Smaller font */
    text-transform: uppercase;
    width: auto; /* Auto width instead of full width */
    box-shadow: 0 4px 10px rgba(239, 68, 68, 0.2);
    transition: all 0.3s ease;
    text-decoration: none !important;
    white-space: nowrap;
}

.ba-footer-cta-btn:hover {
    background-color: #dc2626;
    transform: scale(1.02);
}

.ba-footer-cta-btn i {
    color: white !important; /* Force icon white */
    margin-right: 8px;
}

/* --- COPYRIGHT --- */
.ba-footer-bottom {
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 0.8rem;
}

/* --- RESPONSIVE FIX (Prevent Merging) --- */
@media (max-width: 1200px) {
    /* Laptops: 2 columns per row */
    .ba-footer-col {
        flex: 0 0 48%; 
        max-width: 48%;
    }
}

@media (max-width: 600px) {
    /* Mobile: 1 column per row */
    .ba-footer-col {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
    }
    .ba-footer-col address, 
    .ba-footer-col p,
    .ba-social-grid,
    .ba-quick-links {
        justify-content: center;
    }
}