/* ══ FOOTER STYLES ══════════════════════════════════════ */
.site-footer {
    background: black;
    color: rgba(255,255,255,.7);
    font-size: 13.5px;
    width: 100%;
}

/* Top band — logo, tagline, social */
.footer-top {
    background: black;
    padding: 32px 20px 24px;
    display: flex; flex-direction: column; align-items: center;
    text-align: center; gap: 14px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none; margin-bottom: 2px;
}
.footer-logo img { height: 36px; object-fit: contain; }
.footer-logo-text {
    font-family: 'Nunito', sans-serif;
    font-weight: 900; font-size: 26px; color: #fff;
}
.footer-logo-text span { color: #F5A623; }
.footer-tagline {
    font-size: 13.5px; color: rgba(255,255,255,.55);
    line-height: 1.6; max-width: 320px;
}
.footer-social {
    display: flex; gap: 10px; margin-top: 4px;
}
.social-btn {
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 17px; text-decoration: none; color: #fff;
    transition: background .18s, transform .18s;
}
.social-btn:hover { background: #2E9E3E; transform: translateY(-2px); }

/* Footer columns */
.footer-cols {
    padding: 28px 20px 24px;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 28px 16px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-col-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 800; font-size: 13px;
    color: #fff; text-transform: uppercase;
    letter-spacing: .6px; margin-bottom: 12px;
    display: flex; align-items: center; gap: 6px;
}
.footer-col-title::after {
    content: ''; flex: 1; height: 1px;
    background: rgba(255,255,255,.1);
}
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-link {
    color: rgba(255,255,255,.6); text-decoration: none;
    font-size: 13px; display: flex; align-items: center; gap: 7px;
    transition: color .15s;
}
.footer-link:hover { color: #F5A623; }
.footer-link .fl-icon { font-size: 14px; flex-shrink: 0; }

/* Contact block */
.footer-contact { display: flex; flex-direction: column; gap: 9px; }
.contact-row {
    display: flex; align-items: flex-start; gap: 8px;
    font-size: 13px; color: rgba(255,255,255,.6);
}
.contact-icon {
    font-size: 14px; flex-shrink: 0; margin-top: 1px;
}

/* Newsletter */
.footer-newsletter {
    padding: 22px 20px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.newsletter-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 800; font-size: 14.5px;
    color: #fff; margin-bottom: 5px;
}
.newsletter-sub {
    font-size: 12.5px; color: rgba(255,255,255,.5);
    margin-bottom: 12px;
}
.newsletter-form {
    display: flex; gap: 8px;
}
.newsletter-input {
    flex: 1; background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50px; padding: 10px 16px;
    font-family: 'DM Sans', sans-serif; font-size: 13.5px;
    color: #fff; outline: none; min-width: 0;
    transition: border-color .15s;
}
.newsletter-input::placeholder { color: rgba(255,255,255,.35); }
.newsletter-input:focus { border-color: #2E9E3E; }
.newsletter-btn {
    background: #2E9E3E; color: #fff; border: none;
    border-radius: 50px; padding: 10px 18px;
    font-family: 'Nunito', sans-serif; font-weight: 800;
    font-size: 13px; cursor: pointer; flex-shrink: 0;
    transition: background .15s;
}
.newsletter-btn:hover { background: #1e7a2c; }

/* Platform stats strip */
.footer-stats {
    display: grid; grid-template-columns: repeat(3,1fr);
    gap: 0; border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-stat {
    padding: 18px 12px; text-align: center;
    border-right: 1px solid rgba(255,255,255,.08);
}
.footer-stat:last-child { border-right: none; }
.footer-stat-val {
    font-family: 'Nunito', sans-serif;
    font-weight: 900; font-size: 22px; color: #F5A623;
    line-height: 1; margin-bottom: 4px;
}
.footer-stat-lbl {
    font-size: 11px; color: rgba(255,255,255,.45);
    font-weight: 600; line-height: 1.3;
}

/* Bottom bar */
.footer-bottom {
    padding: 16px 20px;
    display: flex; flex-direction: column;
    align-items: center; gap: 10px; text-align: center;
}
.footer-bottom-links {
    display: flex; flex-wrap: wrap; gap: 6px 14px;
    justify-content: center;
}
.footer-bottom-links a {
    color: rgba(255,255,255,.4); font-size: 12px;
    text-decoration: none; transition: color .15s;
}
.footer-bottom-links a:hover { color: #fff; }
.footer-copy {
    font-size: 11.5px; color: rgba(255,255,255,.3);
}
.footer-copy span { color: #F5A623; }

/* App badges */
.app-badges {
    display: flex; gap: 8px; flex-wrap: wrap;
    justify-content: center; margin-top: 4px;
}
.app-badge {
    display: flex; align-items: center; gap: 7px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 10px; padding: 8px 14px;
    text-decoration: none; color: #fff;
    transition: background .18s;
}
.app-badge:hover { background: rgba(255,255,255,.15); }
.app-badge-icon { font-size: 20px; }
.app-badge-sub { font-size: 9px; color: rgba(255,255,255,.5); display: block; }
.app-badge-name { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 13px; }

/* Responsive footer for desktop */
@media (min-width: 769px) {
    .footer-top { flex-direction: row; justify-content: space-between; text-align: left; padding: 36px 60px 28px; }
    .footer-tagline { max-width: 360px; }
    .footer-cols { grid-template-columns: repeat(4,1fr); padding: 32px 60px 28px; gap: 0 32px; }
    .footer-newsletter { padding: 24px 60px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
    .newsletter-form { width: 400px; flex-shrink: 0; }
    .footer-stats { grid-template-columns: repeat(3,1fr); }
    .footer-stat { padding: 22px; }
    .footer-stat-val { font-size: 28px; }
    .footer-bottom { flex-direction: row; justify-content: space-between; padding: 18px 60px; }
    .footer-copy { order: -1; }
    .site-footer { max-width: 100%; }
}