/* ================= FOOTER BASE ================= */
footer {
    background-color: #002147;
    color: #fff;
    padding: 40px;
    font-family: Arial, Helvetica, sans-serif;
}

/* ================= SUBSCRIBE SECTION ================= */
.footer-subscribe {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-subscribe .txt {
    max-width: 450px;
}

.footer-input {
    width: 260px;
    padding: 10px;
    border-radius: 8px;
    border: none;
}

.footer-btn {
    padding: 10px 20px;
    background-color: #ffd700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
}

/* ================= MAIN FOOTER SECTION ================= */
.foot-section {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

/* LEFT SIDE CONTENT */
.footer-text {
    max-width: 40%;
    min-width: 300px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-container img {
    height: 90px;
    width: 90px;
}

.logo-container h1 {
    font-size: 22px;
    margin: 0;
}

/* FOOTER PARAGRAPH */
.footer-text p {
    margin-top: 15px;
    line-height: 1.6;
    color: #ffd700;
}

.mail {
    color: #c66804;
    text-decoration: none;
}

/* SOCIAL ICONS */
.social-icons a {
    font-size: 26px;
    margin-right: 12px;
    color: white;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #ffa500;
}

/* ================= MAP SECTION ================= */
.footer-map {

    min-width: 700px;
}

.footer-map h3 {
    margin-bottom: 12px;
}

.footer-map iframe {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    border: none;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
    .foot-section {
        flex-direction: column;
    }

    .footer-text, .footer-map {
        max-width: 100%;
    }

    .footer-map iframe {
        height: 250px;
    }
}
