/* ==========================================
   FAST DROP TAXI - HEADER
========================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

.header-container {
    width: min(1150px, 92%);
    min-height: 75px;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
    color: #111827;
}

.site-logo .logo-icon {
    width: 46px;
    height: 46px;
    border-radius: 13px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #16a34a;
    color: #ffffff;

    font-size: 21px;
}

.logo-text strong {
    display: block;
    font-size: 20px;
    line-height: 1;
    font-weight: 800;
}

.logo-text small {
    display: block;
    margin-top: 4px;

    font-size: 9px;
    letter-spacing: 2px;
    font-weight: 700;

    color: #16a34a;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.desktop-nav a {
    color: #374151;
    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    transition: .2s;
}

.desktop-nav a:hover {
    color: #16a34a;
}

.header-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 11px 18px;

    background: #16a34a;
    color: #ffffff;

    border-radius: 11px;

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    transition: .2s;
}

.header-call:hover {
    background: #15803d;
}

.mobile-menu-btn {
    display: none;

    width: 43px;
    height: 43px;

    border: 0;
    border-radius: 11px;

    background: #dcfce7;
    color: #15803d;

    font-size: 19px;
    cursor: pointer;
}

.mobile-menu {
    display: none;
}


/* ==========================================
   FOOTER
========================================== */

.site-footer {
    background: #14532d;
    color: #ffffff;
    margin-top: 50px;
}

.footer-container {
    width: min(1150px, 92%);
    margin: auto;

    padding: 50px 0 40px;

    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-brand p {
    max-width: 300px;
    margin-top: 18px;

    color: #bbf7d0;

    font-size: 13px;
    line-height: 1.8;
}

.footer-logo {
    color: #ffffff;
}

.footer-logo .logo-text small {
    color: #4ade80;
}

.footer-column h3 {
    margin-bottom: 18px;

    font-size: 16px;
    font-weight: 700;
}

.footer-column > a,
.footer-location {
    display: block;

    margin-bottom: 11px;

    color: #d1fae5;

    text-decoration: none;

    font-size: 13px;

    transition: .2s;
}

.footer-column > a:hover {
    color: #4ade80;
    transform: translateX(3px);
}

.footer-column i {
    width: 20px;
    color: #4ade80;
}

.footer-location {
    margin-top: 5px;
}


/* ==========================================
   FOOTER BOTTOM
========================================== */

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.12);
}

.footer-bottom-inner {
    width: min(1150px, 92%);
    min-height: 65px;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.footer-bottom p {
    color: #a7f3d0;
    font-size: 11px;
}

.footer-links {
    display: flex;
    gap: 18px;
}

.footer-links a {
    color: #d1fae5;
    font-size: 11px;
    text-decoration: none;
}

.footer-links a:hover {
    color: #4ade80;
}


/* ==========================================
   FLOATING BUTTONS
========================================== */

.floating-call,
.floating-whatsapp {
    position: fixed;

    bottom: 20px;

    width: 53px;
    height: 53px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;

    text-decoration: none;

    z-index: 9998;

    font-size: 20px;

    box-shadow: 0 8px 25px rgba(0,0,0,.20);
}

.floating-call {
    left: 20px;
    background: #16a34a;
}

.floating-whatsapp {
    right: 20px;
    background: #22c55e;
}

.floating-call:hover,
.floating-whatsapp:hover {
    transform: translateY(-3px);
}


/* ==========================================
   MOBILE HEADER + FOOTER
========================================== */

@media (max-width: 800px) {

    .header-container {
        min-height: 65px;
    }

    .desktop-nav,
    .header-call {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-menu {
        background: #ffffff;
        border-top: 1px solid #eeeeee;

        padding: 10px 5% 18px;
    }

    .mobile-menu.active {
        display: block;
    }

    .mobile-menu a {
        display: block;

        padding: 13px 5px;

        color: #1f2937;

        text-decoration: none;

        font-size: 14px;
        font-weight: 600;

        border-bottom: 1px solid #f0f0f0;
    }

    .mobile-menu a:hover {
        color: #16a34a;
    }

    .mobile-menu .mobile-call {
        margin-top: 10px;

        text-align: center;

        background: #16a34a;
        color: #ffffff;

        border-radius: 10px;

        border: 0;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-bottom-inner {
        padding: 15px 0;

        flex-direction: column;
        text-align: center;
    }

}


@media (max-width: 500px) {

    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .floating-call,
    .floating-whatsapp {
        width: 48px;
        height: 48px;
        bottom: 15px;
    }

    .floating-call {
        left: 15px;
    }

    .floating-whatsapp {
        right: 15px;
    }

}