/* Footer Section */
.footer-section {
    width: 100%;
    background-image: url('../images/banners/footer_bg.webp');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #192A3A;
    padding: 70px 0 40px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* White Logo Badge (Flush Left outside container) */
.footer-logo-badge {
    position: absolute;
    left: 0;
    top: 50px;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    background-color: #ffffff;
    padding: 12px 32px 12px 20px;
    border-radius: 0 50px 50px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    gap: 14px;
}

.footer-logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.footer-logo-text .brand-title {
    color: #B21D27;
    font-family: var(--font-hyundai-text, 'Hyundai Sans Text Office', sans-serif);
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.8px;
}

.footer-logo-text .brand-subtitle {
    color: #1C1C1C;
    font-family: var(--font-hyundai-text, 'Hyundai Sans Text Office', sans-serif);
    font-size: 11px;
    font-weight: 600;
    line-height: 1.2;
    margin-top: 3px;
    white-space: nowrap;
}

/* Quote Box */
.footer-quote-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-quote-title {
    color: #CBD8E6;
    font-family: var(--font-californian, 'Californian FB', Georgia, serif);
    font-size: 34px;
    font-weight: 400;
    line-height: 1.25;
    margin-bottom: 10px;
    text-align: center;
}

.footer-quote-text {
    color: #7994AA;
    font-family: var(--font-hyundai-text, 'Hyundai Sans Text Office', sans-serif);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 0;
    text-align: center;
    text-transform: lowercase;
}

/* Navigation Links */
.footer-nav-row {
    margin-top: 40px;
    margin-bottom: 20px;
}

.footer-heading {
    color: #ffffff;
    font-family: var(--font-hyundai-text, 'Hyundai Sans Text Office', sans-serif);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 1px 1px 1px 15px;
}

.footer-menu li {
    margin-bottom: 6px;
}

.footer-menu li a {
    color: #ACC0D1;
    font-family: var(--font-hyundai-text, 'Hyundai Sans Text Office', sans-serif);
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    line-height: 1.7;
    transition: color 0.2s ease;
}

.footer-menu li a:hover {
    color: #ffffff;
}

.footer-info-text {
    color: #ACC0D1;
    font-family: var(--font-hyundai-text, 'Hyundai Sans Text Office', sans-serif);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    margin: 1px 1px 1px 15px;
}

.footer-email-link {
    color: #ACC0D1;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-email-link:hover {
    color: #ffffff;
}

/* Social Buttons */
.footer-social-list {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 1px 1px 1px 15px;
}

.footer-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #ffffff;
    color: #172A3A;
    border-radius: 6px;
    font-size: 18px;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.footer-social-btn:hover {
    transform: translateY(-2px);
    background-color: #e9ecef;
    color: #0d1a26;
}

/* Bottom Red Pill Banner */
.footer-bottom-pill {
    background-color: #EA4C56;
    color: #ffffff;
    font-family: var(--font-hyundai-text, 'Hyundai Sans Text Office', sans-serif);
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    padding: 14px 24px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    letter-spacing: 0.3px;
    margin-top: 20px;
}

/* Responsive Media Queries */
/* Responsive Media Queries */
@media (max-width: 991px) {
    .footer-section {
        padding: 50px 0 30px;
    }

    .footer-logo-badge {
        position: relative;
        top: 0;
        left: 0;
        margin-bottom: 28px;
        border-radius: 0 40px 40px 0;
    }

    .footer-quote-title {
        font-size: 28px;
    }

    .footer-quote-text {
        font-size: 13px;
    }

    .footer-quote-wrapper {
        margin-top: 10px;
    }
}

@media (max-width: 575px) {
    .footer-section {
        padding: 40px 0 24px;
    }

    .footer-quote-title {
        font-size: 24px;
    }

    .footer-quote-text {
        font-size: 12px;
    }

    .footer-bottom-pill {
        font-size: 12px;
        padding: 12px 16px;
        border-radius: 30px;
    }

    .footer-heading {
        font-size: 14px;
        margin-top: 10px;
    }
}