/**
 * Footer 2 Styles
 * All selectors prefixed with zh_ft2_ for complete style isolation
 */

/* ── Main Footer ── */
.zh_ft2_footer {
    background-color: #1b2a3d;
    color: #d0d8e0;
    font-family: inherit;
}

.zh_ft2_main {
    padding: 50px 0 40px;
}

.zh_ft2_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ── 4-Column Grid ── */
.zh_ft2_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* ── Boxes (shared) ── */
.zh_ft2_box {
    padding: 10px 0;
}

.zh_ft2_box h3,
.zh_ft2_box h4 {
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 14px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.zh_ft2_box p {
    color: #b0bcc8;
    line-height: 1.7;
    margin-bottom: 12px;
    font-size: 14px;
}

.zh_ft2_box a {
    color: #7eb8e0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.zh_ft2_box a:hover {
    color: #ffffff;
}

.zh_ft2_box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.zh_ft2_box ul li {
    margin-bottom: 8px;
    font-size: 14px;
}

/* ── Box 1: Logo & Contact ── */
.zh_ft2_logo {
    margin-bottom: 18px;
}

.zh_ft2_logo_wrapper {
    max-width: 180px;
}

.zh_ft2_logo_img {
    width: 100%;
    height: auto;
    max-height: 50px;
    object-fit: contain;
    display: block;
}

.zh_ft2_site_title h3 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 16px 0;
}

.zh_ft2_blurb p {
    color: #99a8b6;
    font-size: 13px;
    line-height: 1.65;
}

.zh_ft2_phone {
    margin-top: 18px;
}

.zh_ft2_phone_button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #b1250d;
    color: #ffffff !important;
    padding: 10px 22px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none !important;
    transition: background-color 0.2s ease, transform 0.15s ease;
}

.zh_ft2_phone_button:hover {
    background-color: #8e1d0a;
    transform: translateY(-1px);
}

.zh_ft2_phone_icon {
    flex-shrink: 0;
}

/* ── Box 4: Google Maps ── */
.zh_ft2_map_heading {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 12px 0;
}

.zh_ft2_map {
    border-radius: 6px;
    overflow: hidden;
    line-height: 0;
}

.zh_ft2_map iframe {
    border-radius: 6px;
}

/* ── Footer Bottom ── */
.zh_ft2_bottom {
    background-color: #141f2d;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
}

.zh_ft2_bottom_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.zh_ft2_bottom_grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* ── Disclaimer ── */
.zh_ft2_disclaimer {
    font-size: 12px;
    line-height: 1.6;
    color: #7a8a98;
}

.zh_ft2_disclaimer p {
    margin: 0 0 6px 0;
    font-size: 12px;
    color: #7a8a98;
}

/* ── Legal Links ── */
.zh_ft2_legal_links {
    font-size: 13px;
    color: #8a9aaa;
    text-align: center;
}

.zh_ft2_legal_links p {
    margin: 0;
    font-size: 13px;
    color: #8a9aaa;
}

.zh_ft2_legal_links a {
    color: #7eb8e0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.zh_ft2_legal_links a:hover {
    color: #ffffff;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .zh_ft2_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .zh_ft2_main {
        padding: 35px 0 25px;
    }

    .zh_ft2_container,
    .zh_ft2_bottom_container {
        padding: 0 20px;
    }

    .zh_ft2_grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .zh_ft2_disclaimer,
    .zh_ft2_disclaimer p {
        font-size: 11px;
    }

    .zh_ft2_legal_links,
    .zh_ft2_legal_links p {
        font-size: 12px;
    }
}
