/* ===============================================
   FOOTER SECTION
=============================================== */
.footer-section {
    padding: 80px 0 25px;
    background: #f5f5f5;
}


/* ===============================================
   BRAND LOGO
=============================================== */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo {
    width: 300px;
    height: auto;
}


/* ===============================================
   ENQUIRY INPUT SECTION
=============================================== */
.enquiry-title {
    font-family: "f3";
    margin-bottom: 8px;
}

.enquiry-wrapper {
    border: 1px solid #ddd;
    border-radius: 30px;
    display: flex;
    padding: 4px;
    max-width: 320px;
    transition: border-color 240ms ease;
}

.enquiry-wrapper:focus-within {
    border-color: #FA5C40;
}

.enquiry-wrapper input {
    border: none;
    outline: none;
    flex: 1;
    padding: 10px 14px;
    font-family: "f1";
    background: none;
    font-size: 14px;
}

.enquiry-wrapper input::placeholder {
    color: #999;
}

.enquiry-wrapper button {
    border: none;
    background: #000;
    color: #fff;
    border-radius: 24px;
    padding: 0px 13px;
    font-family: "f3";
    cursor: pointer;
    transition: background 240ms ease, transform 200ms ease;
}

.enquiry-wrapper button:hover {
    background: #333;
    transform: translateY(-1px);
}


/* ===============================================
   FOOTER LINKS
=============================================== */
.footer-links a {
    display: block;
    margin-bottom: 12px;
    font-family: "f3";
    font-size: 24px;
    text-decoration: none;
    color: #000;
    transition: color 240ms ease, transform 200ms ease;
}

.footer-links a:hover {
    color: #FA5C40;
    transform: translateX(4px);
}


/* ===============================================
   SOCIAL MEDIA ICONS
=============================================== */
.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons a {
    color: #000;
    font-size: 24px;
    transition: color 240ms ease, transform 200ms ease;
}

.social-icons a:hover {
    color: #FA5C40;
    transform: translateY(-2px);
}

.social-icons i {
    font-size: 24px;
}


/* ===============================================
   FOOTER DIVIDER
=============================================== */
.footer-line {
    margin: 35px 0;
    border: none;
    border-top: 1px solid #ddd;
}


/* ===============================================
   FOOTER BOTTOM ROW
=============================================== */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: "f1";
    font-size: 14px;
    color: #777;
}

.footer-bottom span {
    line-height: 1.6;
}


/* ===============================================
   RESPONSIVE - TABLET (≤992px)
=============================================== */
@media (max-width: 992px) {
    
    .footer-section {
        padding: 120px 0 25px;
    }

    .footer-top {
        gap: 40px;
    }

    .footer-links {
        margin-top: 10px;
    }

    .social-icons {
        margin-top: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}


/* ===============================================
   RESPONSIVE - MOBILE (≤576px)
=============================================== */
@media (max-width: 576px) {
    
    .footer-section {
        padding: 80px 0 20px;
    }

    .footer-logo {
        width: 200px;
    }

    .footer-links a {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .enquiry-wrapper {
        max-width: 100%;
    }

    .social-icons {
        gap: 12px;
    }

    .social-icons i {
        font-size: 20px;
    }

    .footer-bottom {
        font-size: 12px;
    }
}
