/* ============================================
   FOOTER CTA STRIP
============================================ */
.footer-cta-strip {
    background: linear-gradient(135deg, #003d6b 0%, var(--brand) 55%, #0072b8 100%);
    padding: 52px 0;
    position: relative;
    overflow: hidden;
}
.footer-cta-strip::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 360px; height: 360px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}
.footer-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    position: relative;
    flex-wrap: wrap;
}
.footer-cta-text h2 {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 800;
    color: #fff !important;
    margin: 0 0 8px;
    line-height: 1.25;
}
.footer-cta-text p {
    font-size: 15px;
    color: rgba(255,255,255,0.78) !important;
    margin: 0;
}
.footer-cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    flex-shrink: 0;
}
.btn-white {
    background: #fff;
    color: var(--brand) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.2);
    color: var(--brand) !important;
}
.btn-white svg { stroke: var(--brand); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

/* ============================================
   FOOTER MAIN
============================================ */
.lh-footer {
    background: var(--navy);
    color: rgba(255,255,255,0.75);
}
.footer-main { padding: 64px 0 48px; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1.2fr 1fr 1fr;
    gap: 48px;
}

/* ============================================
   FOOTER BRAND COL
============================================ */
.footer-logo-text {
    text-decoration: none;
    display: inline-block;
    margin-bottom: 16px;
}
.footer-logo-main {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}
.footer-tagline {
    font-size: 13.5px;
    color: rgba(255,255,255,0.6) !important;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 28ch;
}
.footer-stats {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 10px;
    margin-bottom: 28px;
}
.footer-stat {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: var(--radius-sm);
    padding: 10px 8px;
    text-align: center;
}
.footer-stat-num {
    display: block;
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.01em;
}
.footer-stat-lbl {
    display: block;
    font-size: 10px;
    color: rgba(255,255,255,0.5);
    margin-top: 2px;
}
.footer-contact-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.65) !important;
    text-decoration: none;
    transition: var(--transition);
}
.footer-contact-item:hover { color: #fff !important; }
.footer-contact-item svg { flex-shrink: 0; stroke: rgba(255,255,255,0.5); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* ============================================
   FOOTER COLUMNS
============================================ */
.footer-col-title {
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #fff !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    margin: 0 0 16px !important;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-links a {
    font-size: 13.5px;
    color: rgba(255,255,255,0.6) !important;
    text-decoration: none;
    transition: var(--transition);
    line-height: 1.4;
}
.footer-links a:hover {
    color: #fff !important;
    padding-left: 4px;
}
.footer-link-all {
    color: rgba(0,91,148,0.8) !important;
    font-weight: 600;
}
.footer-link-all:hover { color: var(--brand) !important; }

/* ============================================
   FOOTER BOTTOM
============================================ */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
}
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.footer-copy {
    font-size: 12.5px;
    color: rgba(255,255,255,0.4) !important;
    margin: 0;
}
.footer-bottom-links {
    display: flex;
    gap: 20px;
}
.footer-bottom-links a {
    font-size: 12.5px;
    color: rgba(255,255,255,0.4) !important;
    text-decoration: none;
    transition: var(--transition);
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.8) !important; }

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .footer-brand { grid-column: span 2; }
    .footer-stats { grid-template-columns: repeat(4,1fr); }
}
@media (max-width: 640px) {
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-brand { grid-column: span 1; }
    .footer-cta-inner { flex-direction: column; text-align: center; }
    .footer-cta-actions { justify-content: center; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .footer-stats { grid-template-columns: repeat(2,1fr); }
}
