.footer {
    background-color: #223324;
    padding: 70px 60px 0 60px;
}

/* ---------- Top row ---------- */
.f-top {
    padding-bottom: 55px;
}

.f-brand h3 {
    font-family: 'Cormorant Upright', serif;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.f-brand h3 i {
    font-size: 20px;
    color: #C9A15D;
}

.f-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-top: -40px;
}

.f-brand p {
    font-family: var(--secondary-font);
    font-size: 13.5px;
    font-weight: 400;
    color: #A9B7A9;
    line-height: 1.6;
    margin-bottom: 22px;
    max-width: 220px;
}

.f-social {
    display: flex;
    gap: 12px;
}

.f-social a {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 13px;
    text-decoration: none;
    transition: 0.25s ease;
}

.f-social a:hover {
    background-color: #C9A15D;
    border-color: #C9A15D;
    color: #223324;
}

.f-links h3,
.f-newsletter h3 {
    font-family: var(--primary-font);
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.f-links a {
    display: block;
    font-family: var(--secondary-font);
    font-weight: 400;
    font-size: 13.5px;
    color: #A9B7A9;
    text-decoration: none;
    margin-bottom: 13px;
    transition: color 0.2s ease;
}

.f-links a:hover {
    color: #fff;
}

.f-newsletter p {
    font-family: var(--secondary-font);
    font-size: 13.5px;
    font-weight: 400;
    color: #A9B7A9;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 320px;
}

.f-newsletter .input-group {
    max-width: 340px;
}

.f-newsletter .form-control {
    border: none;
    border-radius: 30px 0 0 30px !important;
    padding: 12px 20px;
    font-family: var(--secondary-font);
    font-size: 14px;
}

.f-newsletter .form-control::placeholder {
    color: #8a8a8a;
    font-size: 14px;
}

.f-newsletter .form-control:focus {
    box-shadow: none !important;
    outline: none;
}

.f-newsletter .btn {
    background-color: #C9A15D;
    border: none;
    border-radius: 0 30px 30px 0 !important;
    padding: 0 20px;
    color: #223324;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.f-newsletter .btn:hover {
    background-color: #b98d47;
}

.f-newsletter .btn i {
    font-size: 15px;
}

/* ---------- Bottom row ---------- */
.f-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 24px 0;
}

.f-copyright p {
    font-family: var(--secondary-font);
    font-size: 13px;
    font-weight: 400;
    color: #A9B7A9;
    margin-bottom: 0;
}

.f-accept img {
    height: 22px;
    width: auto;
    margin-left: 14px;
    /* filter: brightness(0) invert(1); */
    opacity: 0.9;
    vertical-align: middle;
}

/* ================= Responsive ================= */
@media (max-width: 575px) {
    .footer {
        padding: 50px 24px 0 24px;
    }

    .f-brand,
    .f-links {
        margin-bottom: 34px;
    }

    .f-newsletter {
        margin-bottom: 10px;
    }

    .f-accept {
        text-align: left !important;
        margin-top: 14px;
    }

    .f-accept img {
        margin-left: 0;
        margin-right: 14px;
    }

    .f-bottom .row {
        flex-direction: column;
    }
}

@media only screen and (min-width:576px) and (max-width: 767px) {

    .f-brand,
    .f-links {
        margin-bottom: 30px;
    }
}

@media only screen and (min-width:768px) and (max-width: 991px) {
    .footer {
        padding: 60px 40px 0 40px;
    }

    .f-brand,
    .f-links {
        margin-bottom: 30px;
    }

    .f-accept img {
        height: 18px;
    }
}

@media only screen and (min-width:992px) and (max-width: 1199px) {
    .f-accept img {
        height: 20px;
    }
}