﻿/* ==================== 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;
}

/* ==================== CERTIFICATIONS STRIP (08/05/2026 v6 — bigger + decorated) ==================== */
/* 6 cert logos uniform height, subtle decorations + per-logo card */
.site-footer-certs-marquee {
    background:
        radial-gradient(ellipse at top left, rgba(3, 78, 162, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        linear-gradient(180deg, #f8f9fb 0%, #eef1f5 100%);
    padding: 32px 0; /* v7 — more vertical room */
    border-top: 1px dashed rgba(212, 175, 55, 0.35);
    border-bottom: 2px solid rgba(212, 175, 55, 0.45);
    box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.04), inset 0 -1px 0 rgba(212, 175, 55, 0.15);
    position: relative;
}

/* Subtle decorative wave lines top + bottom */
.site-footer-certs-marquee::before,
.site-footer-certs-marquee::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.6), transparent);
}
.site-footer-certs-marquee::before { top: 6px; }
.site-footer-certs-marquee::after { bottom: 8px; }

.site-footer-certs-marquee__track {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 60px; /* v7 — wider gap between cards */
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* v7 — bigger height + solid white card + bigger padding */
.site-footer-certs-marquee__item {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 108px;            /* STANDARD bumped 88 → 108 (~23% bigger) */
    padding: 14px 20px;       /* more breathing room around logo */
    background: #ffffff;       /* solid white — card nổi rõ */
    border-radius: 14px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.04);
    cursor: help;
    transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
    filter: grayscale(0.05);
}

.site-footer-certs-marquee__item:hover {
    filter: grayscale(0);
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 8px 18px rgba(3, 78, 162, 0.15), 0 0 0 1px rgba(212, 175, 55, 0.4);
}

.site-footer-certs-marquee__item img {
    height: 100%;
    width: auto;
    display: block;
}

/* Responsive — proportionally scaled */
@media (max-width: 991px) {
    .site-footer-certs-marquee {
        padding: 26px 0;
    }
    .site-footer-certs-marquee__track {
        gap: 40px;
    }
    .site-footer-certs-marquee__item {
        height: 86px;
        padding: 10px 14px;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .site-footer-certs-marquee {
        padding: 18px 0;
    }
    .site-footer-certs-marquee__track {
        gap: 22px;
    }
    .site-footer-certs-marquee__item {
        height: 68px;
        padding: 6px 10px;
        border-radius: 10px;
    }
}

.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;
    }
}