/* -------------------- Footer Section -------------------- */
.footer .newsletter-section {
    background-image: url("../images/footer-bg.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: calc(100% - 40px);
    max-width: 1000px;
    padding: 26px 45px;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
    transform: translateY(80px);
    overflow: hidden;
}

.footer .newsletter-section .footer-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #032143, #1c2f45);
    opacity: 0.85;
}

.footer .newsletter-section .newsletter-container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.footer .newsletter-section .newsletter-container h2 {
    font-size: 38px;
    font-family: var(--font2);
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.footer .newsletter-section .newsletter-container p {
    font-size: 16px;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Newsletter Form */
.footer .newsletter-section .newsletter-container .newsletter-form {
    display: flex;
    max-width: 500px;
    background: var(--color-white);
    border-radius: 8px;
    margin: 0 auto;
    overflow: hidden;
}

.footer .newsletter-section .newsletter-container .newsletter-form .email-input {
    flex: 1;
    padding: 10px 20px;
    border: none;
    font-size: 16px;
    outline: none;
}

.footer .newsletter-section .newsletter-container .newsletter-form .submit-btn {
    padding: 10px 35px;
    margin: 5px 5px;
    border-radius: 8px;
    background: #d4e8f5;
    color: var(--color-primary);
    font-size: 16px;
    font-weight: 600;
    border: none;
    white-space: nowrap;
    cursor: pointer;
    transition: 0.3s ease;

}

.footer .newsletter-section .newsletter-container .newsletter-form .submit-btn:hover {
    background: #bcd7eb;
}

.footer .footer-main {
    background-color: #d4e8f5;
    padding: 150px 0px 60px;
}

.footer .footer-main .footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer .footer-main .footer-grid .footer-column h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.footer .footer-main .footer-grid .footer-column .footer-logo {
    width: 180px;
    margin-bottom: 15px;
}

.footer .footer-main .footer-grid .footer-column .company-tagline {
    font-size: 14px;
    color: var(--text-grey);
    margin-bottom: 20px;
}

.footer .footer-main .footer-grid .footer-column .social-links {
    display: flex;
    gap: 12px;
}

.footer .footer-main .footer-grid .footer-column .social-links a {
    width: 40px;
    height: 40px;
    background: #1a1a1a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.footer .footer-main .footer-grid .footer-column .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-main .footer-grid .footer-column .footer-links li {
    margin-bottom: 10px;
}

.footer .footer-main .footer-grid .footer-column .footer-links a {
    font-size: 15px;
    color: var(--text-grey);
    text-decoration: none;
}

.footer .footer-main .footer-grid .footer-column .footer-links a:hover {
    color: #0d4a8f;
}

.footer .footer-main .footer-grid .footer-column .contact-item {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    align-items: flex-start;
}

.footer .footer-main .footer-grid .footer-column .contact-item i {
    font-size: 15px;
    color: #1a1a1a;
    width: 22px;
    margin-top: 5px;
}

.footer .footer-main .footer-grid .footer-column .contact-item a {
    text-decoration: none;
    color: #333;
}

.footer .footer-main .footer-grid .footer-column .contact-item .contact-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-right: 4px;
}

.footer .footer-main .footer-grid .footer-column .contact-item .contact-text {
    font-size: 14px;
    color: var(--text-grey);
    text-decoration: none;
}

.footer .footer-main .footer-grid .footer-column .contact-item .contact-location h4 {
    font-weight: 600;
    color: var(--text-dark);
    margin-right: 4px;
}

.footer .footer-main .footer-grid .footer-column .contact-item .contact-location p {
    font-size: 14px;
    color: var(--text-grey);
    text-decoration: none;
}

.footer .footer-bottom {
    padding: 18px;
    background: #1a1a1a;
    text-align: center;
}

.footer .footer-bottom p {
    font-size: 14px;
    color: #aaa;
}

.footer .footer-bottom a {
    color: #fff;
    text-decoration: none;
}

@media (max-width: 1025px) {
    .footer .footer-main .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 576px) {
    .footer .footer-main .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer .newsletter-section .newsletter-container .newsletter-form {
        flex-direction: column;
    }

    .footer .newsletter-section .newsletter-container .newsletter-form .email-input {
        text-align: center;
    }
}

@media (max-width: 400px) {
    .footer .newsletter-section .newsletter-container h2 {
        font-size: 26px;
    }
}