﻿/* ===== Professional footer ===== */
:root {
    /* Safe fallbacks if not defined elsewhere */
    --brand: #00bfff;
    --brand-600: #0090c4;
    --brand-50: #f0fbff;
    --brand-100: #e0f6ff;
    --brand-border: rgba(0,191,255,.25);
}

/* Ensure footer text never fades */
.footer-text {
    opacity: 1;
    color: black;
}

/* Main shell */
.site-footer {
    margin-top: 24px;
    background: radial-gradient(900px 420px at -10% -10%, rgba(0,191,255,.06), transparent 60%), radial-gradient(800px 380px at 110% 0%, rgba(0,140,192,.06), transparent 55%), linear-gradient(180deg, #f7fbff 0%, #ffffff 40%);
    border-top: 2px solid var(--brand);
}

.footer-top {
    padding: 28px 12px 16px;
}

.footer-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(16,42,67,.06);
    padding: 14px;
}

/* Headings */
.footer-brand .footer-heading {
    font-weight: 800;
    color: #0f1f2d;
}

.footer-heading {
    font: 700 14px/1.2 system-ui, Arial, sans-serif;
    color: #234;
    text-transform: uppercase;
    letter-spacing: .4px;
    margin-bottom: 10px;
}

/* Contact lines */
.footer-meta {
    margin: 12px 0 0;
    padding: 0;
}

    .footer-meta li {
        list-style: none;
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 16px;
        font-weight: 700;
        line-height: 1.4;
        color: #102a43;
        margin: 10px 0;
        /* Better wrapping for long URLs/emails while preserving words */
        overflow-wrap: anywhere;
        word-break: normal;
    }

    .footer-meta i {
        flex: 0 0 auto;
        font-size: 16px;
        color: #fff;
        background: linear-gradient(180deg, var(--brand) 0%, var(--brand-600) 100%);
        border-radius: 8px;
        width: 28px;
        height: 28px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 10px rgba(0,191,255,.18);
    }

    .footer-meta a {
        color: #0f1f2d;
        text-decoration: none;
        font-weight: 800;
    }

        .footer-meta a:hover {
            color: var(--brand-600);
            text-decoration: underline;
        }

/* Social */
.footer-social {
    display: flex;
    gap: 10px;
    padding: 0;
    margin: 12px 0 0;
}

    .footer-social li {
        list-style: none;
    }

    .footer-social .social {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 10px;
        background: var(--brand-50);
        border: 1px solid var(--brand-border);
        color: var(--brand-600);
        transition: transform .15s, box-shadow .15s, background .15s;
    }

        .footer-social .social:hover {
            background: var(--brand-100);
            transform: translateY(-1px);
            box-shadow: 0 8px 18px rgba(0,191,255,.16);
        }

/* Map + CTAs */
.footer-map .mapwrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 8px 22px rgba(16,42,67,.08);
}

.footer-map .map {
    width: 100%;
    height: 100%;
    display: block;
}

.footer-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

/* Legal strip */
.footer-legal {
    margin-top: 8px;
    background: linear-gradient(180deg, #ffffff 0%, var(--brand-50) 100%);
    border-top: 1px solid rgba(0,0,0,.06);
    padding: 10px 0;
}

    .footer-legal a {
        color: var(--brand-600);
        text-decoration: none;
    }

        .footer-legal a:hover {
            color: var(--brand);
            text-decoration: underline;
        }

/* Footer responsive (mobile only) */
@media (max-width: 640px) {
    .footer-top {
        padding: 20px 12px 10px;
    }

    .footer-card {
        padding: 12px;
    }

    /* Keep CTAs tidy on small screens (works well even with initial-scale=0.4) */
    .footer-cta .btn {
        flex: 1 1 auto;
        text-align: center;
        min-width: 120px; /* prevents micro buttons due to 0.4 scale */
    }

    /* Slightly denser vertical rhythm */
    .footer-meta li {
        margin: 8px 0;
        gap: 8px;
    }

    /* Prevent oversized map shadow from crowding */
    .footer-map .mapwrap {
        box-shadow: 0 6px 16px rgba(16,42,67,.07);
    }
}

/* === Migrated from css.css/Site.css (auto-merged) === */

/* ===== Professional footer (deepskyblue theme) ===== */
.site-footer {
margin-top: 24px;
    background: radial-gradient(900px 420px at -10% -10%, rgba(0,191,255,.06), transparent 60%), radial-gradient(800px 380px at 110% 0%, rgba(0,140,192,.06), transparent 55%), linear-gradient(180deg, #f7fbff 0%, #ffffff 40%);
    border-top: 2px solid var(--brand);
}

.footer-brand .footer-heading {
font-weight: 800;
    color: #0f1f2d;
}

/* Contact lines (bigger & bold) */
.footer-meta {
margin: 12px 0 0;
    padding: 0;
}

/* Social icons */
.footer-social {
display: flex;
    gap: 10px;
    padding: 0;
    margin: 12px 0 0;
}

/* Map card */
.footer-map .mapwrap {
position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 8px 22px rgba(16,42,67,.08);
}

/* CTAs */
.footer-cta {
display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.footer-cta .btn {
flex: 1 1 auto;
        text-align: center;
}

/* Footer text */
.auth-card .auth-foot {
margin-top: 14px;
    text-align: center;
    color: #5b6b7c;
    font-size: 13px;
}

