﻿/* ==================== FOOTER SIMPLE - ĐỒNG BỘ VỚI BANNER ==================== */
/* ✅ SỬ DỤNG CSS VARIABLES TỪ SETTING DATABASE */
/* --ashico-blue: Color1 từ DB (mặc định #034ea2) */
/* --ashico-red: Color2 từ DB (mặc định #ec2028) */
/* --tanspot-font-two: 'Plus Jakarta Sans' - Font chính */

.site-footer-simple {
    background-color: var(--ashico-blue);
    padding: 0;
    margin: 0;
}

.site-footer-simple__main {
    padding: 25px 0;
}

.site-footer-simple__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

/* ==================== LEFT: Company Info ==================== */
.site-footer-simple__company {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
}

.site-footer-simple__company-name {
    font-family: var(--tanspot-font-two), 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px 0;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.site-footer-simple__company-address {
    font-family: var(--tanspot-font-two), 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.5;
}

/* ==================== CENTER: Social Icons ==================== */
.site-footer-simple__social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-shrink: 0;
}

.site-footer-simple__social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* Facebook - Xanh dương */
.site-footer-simple__social-icon--facebook {
    background-color: #3b5998;
}

.site-footer-simple__social-icon--facebook:hover {
    background-color: #4c6fb1;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(59, 89, 152, 0.4);
}

/* Google Plus - Đỏ cam */
.site-footer-simple__social-icon--google {
    background-color: #dd4b39;
}

.site-footer-simple__social-icon--google:hover {
    background-color: #e5634f;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(221, 75, 57, 0.4);
}

/* YouTube - Đỏ */
.site-footer-simple__social-icon--youtube {
    background-color: #cd201f;
}

.site-footer-simple__social-icon--youtube:hover {
    background-color: #e03433;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(205, 32, 31, 0.4);
}

/* ==================== RIGHT: Contact Info ==================== */
.site-footer-simple__contact {
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    text-align: right;
}

.site-footer-simple__contact-item {
    font-family: var(--tanspot-font-two), 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    margin: 0 0 5px 0;
    line-height: 1.4;
}

.site-footer-simple__contact-item:last-child {
    margin-bottom: 0;
}

.site-footer-simple__contact-label {
    color: rgba(255, 255, 255, 0.7);
    margin-right: 5px;
}

.site-footer-simple__contact-item a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-footer-simple__contact-item a:hover {
    color: var(--ashico-red);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 991px) {
    .site-footer-simple__inner {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .site-footer-simple__company {
        max-width: 100%;
        text-align: center;
    }
    
    .site-footer-simple__contact {
        max-width: 100%;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .site-footer-simple__main {
        padding: 20px 0;
    }
    
    .site-footer-simple__company-name {
        font-size: 13px;
    }
    
    .site-footer-simple__company-address {
        font-size: 12px;
    }
    
    .site-footer-simple__social-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .site-footer-simple__contact-item {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .site-footer-simple__company-name {
        font-size: 12px;
    }
    
    .site-footer-simple__company-address {
        font-size: 11px;
    }
    
    .site-footer-simple__social {
        gap: 10px;
    }
    
    .site-footer-simple__social-icon {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}