﻿/* ================================================
   FAYVOR FOOTER - OPTIMIZED FOR DESKTOP
   ================================================ */

/* MAIN FOOTER CONTAINER */
.footer-section {
    background-color: #ffffff;
    padding-top: 0;
    margin-top: 80px;
    width: 100%;
}

.footer-main {
    background-color: #f5f5f5;
    padding: 60px 0 40px 0;
    width: 100%;
}

/* Footer content wrapper */
.footer-wrapper {
    max-width: 100%;
    padding: 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.2fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

/* LEFT SECTION - BRAND INFO */
.footer-left {
    padding-right: 0;
}

.footer-logo {
    font-size: 26px;
    font-weight: 700;
    margin-top:0px;
    margin-bottom: 15px;
    letter-spacing: 1px;
    font-family: 'Arial', sans-serif;
}

.footer-desc {
    font-size: 13px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 25px;
    text-align: left;
}

.explore-link {
    display: inline-block;
    text-decoration: none;
    color: #333;
    border-bottom: 2px solid #333;
    padding-bottom: 5px;
    margin-top: 10px;
    transition: all 0.3s ease;
}

    .explore-link:hover {
        color: #666;
        border-bottom-color: #666;
    }

    .explore-link strong {
        font-size: 14px;
        font-weight: 600;
    }

.link-text {
    font-size: 12px;
    display: block;
    margin-top: 2px;
}

/* CENTER SECTION - LINKS */
.footer-center {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.footer-column {
    padding-left: 0;
}

.column-title {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 18px;
    margin-top: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin-bottom: 11px;
    }

    .footer-links a {
        color: #666;
        text-decoration: none;
        font-size: 13px;
        transition: color 0.3s ease;
    }

        .footer-links a:hover {
            color: #A4D65E;
            font-weight: 500;
        }

/* RIGHT SECTION - HELP BOX */
.footer-right {
    display: flex;
    justify-content: flex-end;
}

.help-box {
    background: linear-gradient(135deg, #B8E986 0%, #A4D65E 100%);
    border-radius: 10px;
    padding: 28px;
    color: #2d3d1a;
    box-shadow: 0 4px 12px rgba(164, 214, 94, 0.25);
    max-width: 340px;
    width: 100%;
}

.help-title {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 18px;
    color: #1a2410;
    margin-top: 0;
}

.help-phone,
.help-timing,
.help-email,
.help-address {
    font-size: 12px;
    line-height: 1.7;
    margin-bottom: 9px;
    margin-top: 0;
    color: #2d3d1a;
}

    .help-phone strong,
    .help-timing strong,
    .help-email strong,
    .help-address strong {
        font-weight: 600;
        color: #1a2410;
    }

.help-divider {
    border: 1px solid rgba(26, 36, 16, 0.15);
    margin: 14px 0;
    padding: 0;
    background: none;
}

.newsletter-title {
    font-size: 12px;
    font-weight: 600;
    margin-top: 14px;
    margin-bottom: 10px;
    color: #1a2410;
}

.newsletter-form {
    display: flex;
    gap: 7px;
    margin-top: 10px;
}

.newsletter-input {
    flex: 1;
    padding: 9px 11px;
    border: none;
    border-radius: 5px;
    font-size: 11px;
    background-color: rgba(255, 255, 255, 0.85);
    color: #333;
    outline: none;
    transition: background-color 0.3s ease;
    font-family: inherit;
}

    .newsletter-input::placeholder {
        color: #999;
        font-size: 11px;
    }

    .newsletter-input:focus {
        background-color: #ffffff;
        box-shadow: 0 0 0 2px rgba(26, 36, 16, 0.1);
    }

.newsletter-btn {
    padding: 9px 18px;
    background-color: #2d3d1a;
    color: #B8E986;
    border: none;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    white-space: nowrap;
}

    .newsletter-btn:hover {
        background-color: #1a2410;
        transform: translateY(-2px);
        box-shadow: 0 3px 10px rgba(26, 36, 16, 0.2);
    }

/* BOTTOM COPYRIGHT */
.footer-bottom {
    background-color: #4a5f3d;
    padding: 18px 0;
    text-align: center;
}

.copyright-text {
    color: #B8E986;
    font-size: 12px;
    margin: 0;
    letter-spacing: 0.3px;
}


/* ================================================
   RESPONSIVE DESIGN
   ================================================ */

/* TABLET VIEW (1200px and below) */
@media (max-width: 1200px) {
    .footer-wrapper {
        padding: 0 30px;
    }

    .footer-content {
        gap: 40px;
    }
}

/* TABLET VIEW (1024px and below) */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }

    .footer-center {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-right {
        grid-column: 1 / -1;
        justify-content: flex-start;
    }
}

/* TABLET VIEW (768px and below) */
@media (max-width: 768px) {
    .footer-wrapper {
        padding: 0 20px;
    }

    .footer-main {
        padding: 40px 0 30px 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-left {
        padding-right: 0;
    }

    .footer-center {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .footer-column {
        padding-left: 0;
    }

    .footer-right {
        grid-column: auto;
        justify-content: center;
    }

    .help-box {
        max-width: 100%;
    }

    .newsletter-form {
        flex-direction: row;
    }

    .newsletter-input,
    .newsletter-btn {
        width: auto;
    }
}

/* SMALL MOBILE (480px and below) */
@media (max-width: 480px) {
    .footer-wrapper {
        padding: 0 15px;
    }

    .footer-main {
        padding: 30px 0 20px 0;
    }

    .footer-logo {
        font-size: 22px;
    }

    .footer-desc {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .column-title {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        font-size: 12px;
    }

    .help-title {
        font-size: 15px;
        margin-bottom: 14px;
    }

    .help-phone,
    .help-timing,
    .help-email,
    .help-address {
        font-size: 12px;
        margin-bottom: 7px;
    }

    .help-divider {
        margin: 10px 0;
    }

    .newsletter-title {
        font-size: 11px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-input,
    .newsletter-btn {
        width: 100%;
        font-size: 11px;
        padding: 8px 10px;
    }

    .copyright-text {
        font-size: 11px;
    }

    .footer-content {
        gap: 20px;
    }
}
