/* ===== PROFESSIONAL FOOTER ===== */
.pro-footer {
    background: linear-gradient(180deg, #111 0%, #000 100%);
    color: #d1d1d1;
    font-size: 14px;
}

.footer-top {
    padding: 80px 0 60px;
}

.footer-col {
    margin-bottom: 30px;
}

.footer-brand {
    font-size: 30px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
    margin-top: 2px;
}

.footer-desc {
    max-width: 320px;
    line-height: 26px;
}

.pro-footer h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #d1d1d1;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #FFD321;
    padding-left: 6px;
}

/* Contact */
.footer-contact p {
    margin-bottom: 12px;
}

.footer-contact i {
    color: #FFD321;
    margin-right: 10px;
    width: 16px;
}

/* Social Icons */
.footer-social {
    margin-top: 20px;
}

.footer-social a,
.footer-social a i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-right: 10px;
    background: #FFD321;
    color: white;
    border-radius: 50%;
    font-size: 18px;
    transition: 0.3s;
    text-decoration: none;
}

.footer-social a:hover {
    background: #fff;
    transform: translateY(-3px);
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 15px 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
}

.footer-bottom a {
    color: #FFD321;
    text-decoration: none;
}

/* ===== WHY T.L SUPPLIER (FAQ) ===== */
#why-tl-supplier {
    padding: 100px 0;
    background: #ffffff;
}

.faq-item {
    border: 1px solid #eee;
    margin-bottom: 15px;
    border-radius: 4px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    cursor: pointer;
    font-weight: bold;
    background: #f9f9f9;
}

.faq-question i {
    color: #FFD321;
    font-size: 18px;
}

.faq-question .arrow {
    margin-left: auto;
    transition: transform 0.3s ease;
}

.faq-answer {
    display: none;
    padding: 20px;
    background: #ffffff;
    color: #555;
    line-height: 26px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .arrow {
    transform: rotate(180deg);
}

/* ===== PRODUCT BOX FIX ===== */
.product-box {
    position: relative;
    overflow: hidden;
}

.product-box img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    padding: 20px;
}

.product-box:hover .product-overlay {
    opacity: 1;
    pointer-events: auto;
}

.product-box:hover img {
    transform: scale(1.1);
}

.product-overlay h4 {
    color: #FFD321;
    font-size: 20px;
    margin-bottom: 8px;
}

.product-overlay p {
    color: #fff;
    font-size: 14px;
    margin-bottom: 15px;
}

/* Enquiry Button */
.enquiry-btn {
    padding: 10px 24px;
    border: 2px solid #FFD321;
    color: #FFD321;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: 0.3s;
}

.enquiry-btn:hover {
    text-decoration: none;
    background: #FFD321;
    color: #000;
}


/* Mobile Fix */
@media (max-width: 768px) {
    .footer-desc {
        max-width: 100%;
    }
}