/* =========================================================
   START : FOOTER
========================================================= */

.footer-section {
    padding: 14px;

    background: #f3efe8;
}

/* ---------- Wrapper ---------- */

.footer-wrapper {
    display: grid;
    grid-template-columns: 1.4fr .7fr;
    gap: 14px;
}

/* ---------- Main ---------- */

.footer-main {
    padding: 34px 36px;

    border-radius: 24px;

    background: #fff;
}

/* ---------- Logo ---------- */

.footer-logo img {
    height: 58px;
    width: auto;

    object-fit: contain;
}

/* ---------- Text ---------- */

.footer-text {
    max-width: 240px;

    margin-bottom: 28px;

    color: #666;

    font-size: 15px;
    line-height: 1.8;
}

/* ---------- Social ---------- */

.footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #1f1f1f;

    transition: .3s ease;
}

.footer-social a:hover {
    transform: translateY(-2px);
}

.footer-social img {
    width: 16px;
    height: 16px;

    object-fit: contain;
}

/* ---------- Heading ---------- */

.footer-heading {
    margin-bottom: 22px;

    color: #1a1a1a;

    font-size: 26px;
    font-weight: 700;
}

/* ---------- Links ---------- */

.footer-links ul {
    padding: 0;
    margin: 0;

    list-style: none;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: #4f4f4f;

    font-size: 15px;
    font-weight: 500;
    text-decoration: none;

    transition: .3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

/* ---------- Contact ---------- */

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-contact-item img {
    width: 18px;
    height: 18px;

    object-fit: contain;
}

.footer-contact-item span {
    color: #4f4f4f;

    font-size: 15px;
    line-height: 1.7;
}

/* ---------- Newsletter ---------- */

.footer-newsletter {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 34px;

    border-radius: 24px;

    background:
        linear-gradient(135deg,
            #003b2a 0%,
            #005339 100%);
}

/* ---------- Newsletter Title ---------- */

.newsletter-title {
    margin-bottom: 10px;

    color: #fff;

    font-size: 34px;
    font-weight: 700;
}

.newsletter-subtitle {
    margin-bottom: 30px;

    color: rgba(255, 255, 255, .78);

    font-size: 15px;
    line-height: 1.7;
}

/* ---------- Newsletter Form ---------- */

.newsletter-form {
    display: flex;

    overflow: hidden;

    border-radius: 12px;

    background: #fff;
}

.newsletter-form input {
    flex: 1;

    height: 62px;

    padding: 0 20px;

    border: none;
    outline: none;

    font-size: 15px;
}

.newsletter-form button {
    padding: 0 26px;

    border: none;

    background: var(--gold);
    color: #fff;

    font-size: 15px;
    font-weight: 700;
}

/* ---------- Bottom ---------- */

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;

    margin-top: 40px;
}

.footer-bottom span {
    color: rgba(255, 255, 255, .55);

    font-size: 12px;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 18px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, .55);

    font-size: 12px;
    text-decoration: none;
}

/* =========================================================
   END : FOOTER
========================================================= */


/* =========================================================
   START : RESPONSIVE
========================================================= */

@media(max-width:1199px) {

    .footer-wrapper {
        grid-template-columns: 1fr;
    }
}

@media(max-width:767px) {

    .footer-main,
    .footer-newsletter {
        padding: 28px 24px;

        border-radius: 22px;
    }

    .footer-heading {
        font-size: 20px;
    }

    .newsletter-title {
        font-size: 28px;
    }

    .newsletter-form {
        flex-direction: column;

        background: transparent;

        gap: 12px;
    }

    .newsletter-form input {
        border-radius: 12px;
    }

    .newsletter-form button {
        height: 56px;

        border-radius: 12px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        gap: 12px;
    }
}

/* =========================================================
   END : RESPONSIVE
========================================================= */