/*
Theme Name:   Astra Child for Bao Kim
Theme URI:    https://congnghebaokim.vn/
Description:  Child theme chuẩn UI/UX & SEO cho Thiet Bi Van Phong & Cong Nghe Bao Kim.
Author:       Bao Kim Tech Team
Template:     astra
Version:      1.1.0
Text Domain:  astra-child
*/

/* ==========================================================================
   1. GOOGLE FONTS IMPORT
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

/* ==========================================================================
   2. BỘ BIẾN MÀU & TIỆN ÍCH (CSS VARIABLES)
   ========================================================================== */
:root {
    /* Brand Colors */
    --color-primary: #1A387D;     /* Deep Trust Blue */
    --color-secondary: #0E72E8;   /* Tech Blue */
    --color-accent: #F4B400;      /* Kim Gold */
    --color-navy-dark: #0A1F44;   /* Navy Dark */
    --color-bg-light: #F5F7FA;    /* Light Gray */
    --color-white: #FFFFFF;
    
    /* Layout Variables */
    --color-text-main: #333333;
    --color-text-muted: #6c757d;
    --font-main: 'Montserrat', sans-serif;
    
    /* Shadows & Radiuses */
    --shadow-sm: 0 2px 4px rgba(26, 56, 125, 0.08);
    --shadow-md: 0 4px 15px rgba(26, 56, 125, 0.12);
    --radius-md: 8px;
    --radius-lg: 12px;
}

/* ==========================================================================
   3. CSS BASE, TYPOGRAPHY & FIX MOBILE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html, body {
    /* SỬ DỤNG CLIP THAY VÌ HIDDEN ĐỂ KHÔNG LÀM HỎNG HIỆU ỨNG STICKY CỦA HEADER */
    overflow-x: clip !important; 
    width: 100%;
    max-width: 100vw;
}

body {
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    background-color: var(--color-bg-light);
    color: var(--color-text-main);
    font-family: var(--font-main);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 800; 
    color: var(--color-primary); 
    line-height: 1.3;
}

a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover { color: var(--color-accent); }

/* Utilities */
.bg-accent { background-color: var(--color-accent) !important; color: #fff; }
.text-accent { color: var(--color-accent) !important; }
.text-primary { color: var(--color-primary) !important; }
.max-w-700 { max-width: 700px; }

/* Astra Conflict Fix */
.homepage-wrapper, .site-content {
    width: 100%;
    margin: 0;
    padding: 0;
}

/* ==========================================================================
   4. HEADER STYLES (STICKY & SCROLL EFFECT)
   ========================================================================== */
.site-header {
    background-color: rgba(255, 255, 255, 1);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1020;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid transparent;
}

/* Class kích hoạt khi cuộn chuột (JS truyền vào) */
.site-header.is-scrolled {
    background-color: rgba(255, 255, 255, 0.85); /* Opacity 85% */
    backdrop-filter: blur(10px); /* Kính mờ Tech */
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(26, 56, 125, 0.08);
    border-bottom: 1px solid rgba(26, 56, 125, 0.05);
}

/* Ẩn top-bar khi cuộn xuống - MƯỢT MÀ, KHÔNG GIẬT CỤC */
.site-header.is-scrolled .top-bar {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
    pointer-events: none; /* Ngăn chặn người dùng click nhầm khi top-bar đang tàng hình */
    /* Tuyệt đối KHÔNG sử dụng display: none !important ở đây nữa */
}

/* Thu nhỏ logo khi cuộn */
.site-header.is-scrolled .navbar-brand img { max-height: 50px; }

/* Thu gọn chiều cao menu khi cuộn */
.site-header.is-scrolled .navbar-nav .nav-link {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
}

/* Top Bar Default */
.top-bar {
    background: linear-gradient(90deg, var(--color-navy-dark) 0%, var(--color-primary) 100%);
    color: var(--color-white);
    font-size: 0.85rem;
    padding: 8px 0;
    max-height: 100px; /* Đặt một chiều cao tối đa giả định để transition hoạt động */
    opacity: 1;
    overflow: hidden; /* Cắt phần nội dung bị tràn khi thu nhỏ */
    transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.3s ease;
}

.top-bar a { color: var(--color-white); }
.top-bar a:hover { color: var(--color-accent); }
.top-bar i { color: var(--color-accent); }
.top-hotline i { font-size: 1.1rem; }



/* Logo Text Fallback */
.site-header .navbar-brand img { max-height: 65px; transition: transform 0.3s ease; }
.site-header .navbar-brand:hover img { transform: scale(1.05); }
.brand-text strong { color: var(--color-primary); font-size: 1.5rem; }
.brand-text span { color: var(--color-accent); font-size: 1.5rem; font-weight: 800; margin-left: 5px; }

/* Navbar Menu Items */
.site-header .navbar-nav { gap: 2rem; } /* Khoảng cách rộng rãi giữa các mục */

.site-header .navbar-nav .nav-link,
.site-header .navbar-nav .menu-item a {
    color: var(--color-navy-dark);
    text-transform: uppercase;
    font-size: 0.95rem;
    padding-top: 25px !important; /* Vùng Hit-area rộng để không rớt chuột */
    padding-bottom: 25px !important;
    position: relative;
    letter-spacing: 0.5px;
    font-weight: 700;
}

/* Hover Animation Underline (Đã fix lỗi xung đột mũi tên dropdown) */
.site-header .navbar-nav .nav-link::before,
.site-header .navbar-nav .menu-item a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 15px; /* Điều chỉnh vị trí gạch chân cho cân đối */
    left: 0;
    background-color: var(--color-accent);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.site-header .navbar-nav .nav-link:hover::before,
.site-header .navbar-nav .menu-item a:hover::before {
    width: 100%;
}

/* Xóa bỏ đoạn mã can thiệp vào ::after cũ để trả lại mũi tên mặc định cho Bootstrap */
.site-header .navbar-nav .nav-link::after {
    /* Trữ lại vị trí mặc định của mũi tên Bootstrap */
    vertical-align: middle;
    margin-left: 0.3em;
}

/* Header Actions */
.header-btn-cta {
    background: linear-gradient(135deg, var(--color-accent) 0%, #E6A200 100%);
    color: var(--color-white) !important;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(244, 180, 0, 0.3);
}
.header-btn-cta:hover {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ==========================================================================
   5. MEGA MENU STYLES
   ========================================================================== */
.mega-dropdown { position: static !important; }

.mega-menu {
    width: 100%;
    left: 0;
    right: 0;
    top: 100%;
    margin-top: 0;
    border-radius: 0 0 15px 15px !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block !important;
    pointer-events: none;
    background: var(--color-white);
    border-top: 1px solid var(--color-border);
}

/* Cầu nối vô hình chống rớt chuột */
.mega-menu::before {
    content: '';
    position: absolute;
    top: -25px; 
    left: 0;
    right: 0;
    height: 25px;
    background: transparent;
}

.mega-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}
/* Hiệu ứng hover cho từng mục Mega Menu */
.mega-item a { 
    transition: all 0.3s ease; 
    border-radius: 8px; 
    padding: 10px; 
}
.mega-item a:hover { 
    background: var(--color-bg-light); 
    transform: translateX(5px); 
}

/* Icon Box mặc định */
.icon-box-sm { 
    width: 45px; 
    height: 45px; 
    line-height: 45px; 
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); /* Làm mượt hiệu ứng chuyển màu nền */
}
.icon-box-sm i {
    transition: color 0.3s ease;
}

/* KÍCH HOẠT ĐỔI MÀU ICON VÀ CHỮ KHI HOVER */
.mega-item a:hover .icon-box-sm {
    background-color: var(--color-primary) !important; /* Đổi nền icon sang Xanh Navy */
    box-shadow: 0 4px 10px rgba(26, 56, 125, 0.2);
    transform: scale(1.05); /* Phóng to icon lên một chút xíu */
}
.mega-item a:hover .icon-box-sm i {
    color: var(--color-accent) !important; /* Đổi màu icon sang Kim Gold */
}
.mega-item a:hover h6 {
    color: var(--color-secondary) !important; /* Đổi màu tiêu đề sang Xanh Tech Blue */
    transition: color 0.3s ease;
}

/* Mobile Menu Adjustments */
@media (max-width: 991px) {
    .site-header .navbar-collapse {
        background: var(--color-white);
        padding: 15px;
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-md);
        margin-top: 15px;
    }
    .site-header .navbar-nav { gap: 0; }
    .site-header .navbar-nav .nav-link,
    .site-header .navbar-nav .menu-item a {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }
    .site-header .navbar-nav .nav-link::after { display: none; }
}

/* ==========================================================================
   6. HOMEPAGE & SHOWCASE STYLES
   ========================================================================== */
.hero-section { border-bottom: 1px solid var(--color-border); }

.service-card {
    background: var(--color-bg-light);
    border-radius: var(--radius-lg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 15px rgba(26,56,125,0.05);
    border-bottom: 4px solid transparent !important;
}
.service-card .icon-box {
    width: 75px; height: 75px; 
    border-radius: 50%; 
    background: rgba(14, 114, 232, 0.1); 
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s ease;
}
.service-card .icon-box i { color: var(--color-secondary); transition: all 0.3s ease; }
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    background: var(--color-white);
    border-bottom: 4px solid var(--color-accent) !important;
}
.service-card:hover .icon-box { background: var(--color-secondary); }
.service-card:hover .icon-box i { color: var(--color-white); transform: scale(1.1); }
.service-card li { padding: 6px 0; border-bottom: 1px dashed #e0e0e0; }
.service-card li:last-child { border-bottom: none; }

/* ==========================================================================
   8. INTERACTIVE SHOWCASE STYLES (TECH DASHBOARD REDESIGN)
   ========================================================================== */

/* Wrapper cột Tabs bên trái */
.showcase-tabs-wrapper {
    position: relative;
    z-index: 2;
}

/* Kiểu dáng Tab hiện đại */
.sc-tab {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    border: 1px solid transparent;
}

/* Icon Box bên trong Tab */
.sc-tab .sc-tab-icon {
    width: 42px; 
    height: 42px;
    border-radius: 10px;
    background: var(--color-white);
    color: var(--color-secondary);
    display: flex; 
    align-items: center; 
    justify-content: center;
    font-size: 1.1rem; 
    margin-right: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.sc-tab h5 {
    color: var(--color-navy-dark);
    transition: color 0.3s ease;
}

/* Hover State */
.sc-tab:hover {
    background: var(--color-white);
    border-color: var(--color-border);
    transform: translateX(5px);
}

/* Active State (Đang được chọn) */
.sc-tab.active {
    background: var(--color-primary);
    box-shadow: 0 10px 20px rgba(26, 56, 125, 0.2);
    transform: translateX(10px);
}

.sc-tab.active h5 {
    color: var(--color-white) !important;
}

/* Icon Kim Gold rực rỡ khi Tab Active */
.sc-tab.active .sc-tab-icon {
    background: var(--color-accent);
    color: var(--color-white);
    box-shadow: 0 4px 10px rgba(244, 180, 0, 0.4);
}

/* Khối màu Offset Kim Gold của Cột Nội dung (Đồng bộ Hero Section) */
.showcase-bg-offset {
    position: absolute;
    top: 20px;
    right: -20px; /* Lệch sang phải */
    width: 100%;
    height: 100%;
    background-color: var(--color-accent);
    border-radius: 1.2rem;
    z-index: 1;
    box-shadow: 0 10px 25px rgba(244, 180, 0, 0.15);
}

/* Animation mượt mà khi chuyển Tab */
.fade-in {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .showcase-bg-offset {
        top: 15px; right: -10px;
    }
    .sc-tab.active {
        transform: translateX(0); /* Tắt dịch chuyển ngang trên mobile để không tràn viền */
    }
}

/* CTA Form */
.custom-checkbox .form-check-input:checked {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
}
.custom-checkbox .form-check-label { cursor: pointer; transition: color 0.2s; }
.custom-checkbox .form-check-input:checked ~ .form-check-label {
    color: var(--color-primary) !important;
    font-weight: 600;
}
/* ==========================================================================
   10. HERO SECTION REDESIGN (OFFSET FRAME, FLOATING ICONS, ACCENT SLIDE BUTTON)
   ========================================================================== */

/* 1. Wrapper & Khối ảnh vững chắc (Dựa theo ảnh mẫu) */
.hero-illustration-wrapper {
    position: relative;
    width: 90%; /* Thu nhỏ lại một chút để nhường chỗ cho khối màu phía sau */
    margin: 0 auto;
    z-index: 1;
}

/* Khối màu offset vững chắc (Màu Kim Gold) */
.hero-bg-shape-solid {
    position: absolute;
    top: 25px; /* Lệch xuống dưới */
    left: 25px; /* Lệch sang phải */
    width: 100%;
    height: 100%;
    background-color: var(--color-accent);
    border-radius: 1.5rem; /* Bo góc bằng với bo góc của ảnh */
    z-index: 1;
    box-shadow: 0 15px 30px rgba(244, 180, 0, 0.2);
}

/* Ảnh chính */
.hero-illustration {
    width: 100%;
    max-width: 100%;
    border-radius: 1.5rem; /* Bo góc viền ảnh */
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 25px rgba(26, 56, 125, 0.15);
}

/* Hiệu ứng lơ lửng êm ái cho toàn bộ khối ảnh (không lơ lửng rời rạc nữa) */
.float-block {
    animation: floatSolid 6s ease-in-out infinite;
}

@keyframes floatSolid {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

/* 2. Floating Tech Icons (Bay lượn xung quanh) */
.floating-icon {
    position: absolute;
    color: rgba(14, 114, 232, 0.15);
    animation: floatObj 8s ease-in-out infinite;
}
.icon-camera { top: 15%; right: 5%; font-size: 3rem; animation-delay: 0s; color: rgba(244, 180, 0, 0.2); }
.icon-wifi { top: 10%; left: 45%; font-size: 4rem; animation-delay: 1.5s; }
.icon-printer { bottom: 15%; right: 8%; font-size: 3.5rem; animation-delay: 3s; color: rgba(26, 56, 125, 0.12); }
.icon-laptop { bottom: 20%; left: 35%; font-size: 2.5rem; animation-delay: 4.5s; }
.icon-server { top: 40%; left: 5%; font-size: 4.5rem; animation-delay: 2s; color: rgba(14, 114, 232, 0.1); }

@keyframes floatObj {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(15deg); }
}

/* 3. Nút CTA cơ bản */
.btn-hero-primary { transition: all 0.3s ease; }
.btn-hero-primary:hover {
    transform: translateY(-3px);
    background-color: var(--color-primary) !important;
    box-shadow: 0 6px 20px rgba(26, 56, 125, 0.4) !important;
}

/* 4. NÚT "TƯ VẤN NGAY" HIỆU ỨNG TRƯỢT VÀ HIỆN SỐ (MÀU ACCENT) */
.btn-hero-outline {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: 2px solid var(--color-secondary);
    color: var(--color-secondary);
    min-width: 220px;
    height: 54px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0 1.5rem;
    transition: border-color 0.4s ease;
}

/* Lớp màu Accent trượt từ trái sang */
.btn-hero-outline::before {
    content: '';
    position: absolute;
    top: 0; left: 0; 
    width: 0; height: 100%;
    background: var(--color-accent); /* Đổi sang màu Kim Gold theo yêu cầu */
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

/* Text mặc định */
.btn-text-default {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    font-weight: 600;
}

/* Hiệu ứng nhấp nháy nhẹ cho mũi tên >>> để hút mắt */
.icon-arrow {
    animation: bounceRight 2s infinite;
}
@keyframes bounceRight {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

/* Text khi Hover (Số điện thoại) */
.btn-text-hover {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-150%, -50%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    white-space: nowrap;
    color: var(--color-primary); /* Màu Primary (Xanh Navy) trên nền Vàng sẽ cực kỳ dễ đọc và sang trọng */
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

/* Kích hoạt Hover */
.btn-hero-outline:hover { 
    border-color: var(--color-accent); /* Đổi viền sang màu Kim Gold */
}
.btn-hero-outline:hover::before { width: 100%; }
.btn-hero-outline:hover .btn-text-default {
    transform: translateX(100%);
    opacity: 0;
}
.btn-hero-outline:hover .btn-text-hover {
    transform: translate(-50%, -50%);
    opacity: 1;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .hero-illustration-wrapper { width: 95%; margin-top: 2rem; }
    .hero-bg-shape-solid { top: 15px; left: 15px; } /* Thu nhỏ offset trên mobile để không bị tràn */
    .floating-icon { display: none; }
}
/* ==========================================================================
   11. CTA MASCOT ENHANCEMENTS
   ========================================================================== */
.hero-technician {
    /* Đảm bảo ảnh luôn đứng sát đáy */
    display: block;
    margin: 0 auto;
    /* Hiệu ứng nhịp thở nhè nhẹ để nhân vật trông sống động */
    animation: floatTech 5s ease-in-out infinite;
    transform-origin: bottom center;
}

@keyframes floatTech {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Bong bóng thoại */
.chat-bubble {
    animation: popBubble 2.5s infinite alternate;
}

/* Tạo mũi nhọn cho bong bóng chat hướng về nhân vật */
.chat-bubble::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 30px;
    border-width: 12px 12px 0;
    border-style: solid;
    border-color: #ffffff transparent transparent transparent;
    display: block;
    width: 0;
}

@keyframes popBubble {
    0% { transform: rotate(-5deg) scale(1); }
    100% { transform: rotate(-5deg) scale(1.05); }
}
/* ==========================================================================
   12. FOUNDER & ABOUT US SECTION
   ========================================================================== */
.founder-section {
    border-top: 1px solid var(--color-border);
}

.founder-quote {
    border-left: 4px solid var(--color-accent);
    transition: all 0.3s ease;
}

.founder-quote:hover {
    background-color: var(--color-white) !important;
    box-shadow: var(--shadow-sm);
    transform: translateX(5px);
}

.founder-image-wrapper {
    transition: transform 0.4s ease;
}

.founder-image-wrapper:hover {
    transform: translateY(-5px);
}

/* Điều chỉnh lại trên Mobile để khung nền không bị tràn */
@media (max-width: 991px) {
    .founder-image-wrapper { margin-top: 2rem; margin-left: 0 !important; }
    .founder-bg-shape { left: 15px; top: 15px; }
}
/* ==========================================================================
   13. FOOTER STYLES (FIXED COLOR, ALIGNMENT & OVERRIDES)
   ========================================================================== */
.site-footer {
    font-size: 1rem; /* Tăng size chữ */
    font-weight: 500; /* Tăng độ dày chữ để dễ đọc trên nền tối */
}

/* Ép màu logo chữ BẢO KIM thành màu trắng */
.site-footer .brand-text strong {
    color: var(--color-white) !important;
}

/* Tiêu đề widget */
.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 40px;
    height: 3px;
    background-color: var(--color-accent);
    border-radius: 2px;
}

/* GHI ĐÈ MÀU LINK: Chặn theme Astra ép màu xanh dương */
.site-footer a,
.footer-links a,
.footer-contact a {
    color: #e2e8f0 !important; /* Xám sáng / Trắng nhạt */
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links li { margin-bottom: 15px; }

.footer-links a {
    display: inline-block;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--color-accent) !important;
}
.footer-links a:hover {
    transform: translateX(5px);
}

/* Căn chỉnh Icon và Text Liên hệ thẳng hàng đẹp mắt */
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}
.footer-contact li i {
    margin-top: 6px; /* Cân bằng icon với dòng text đầu tiên */
}

/* Fix lỗi Nút Social bị tàng hình */
.social-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1) !important; /* Lớp nền sáng nhẹ */
    color: var(--color-white) !important;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background-color: var(--color-accent) !important;
    color: var(--color-navy-dark) !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(244, 180, 0, 0.3);
}

/* ẨN NÚT BACK TO TOP VƯỚNG VÍU CỦA THEME ASTRA */
#ast-scroll-top {
    display: none !important;
}

/* Nút Back to Top Custom */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: var(--color-primary) !important;
    color: var(--color-white) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(255,255,255,0.1);
}
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover {
    background-color: var(--color-accent) !important;
    color: var(--color-primary) !important;
    transform: translateY(-5px);
    border-color: transparent;
}

/* Hộp Giờ Làm Việc (Working Hours) */
.working-hours-box {
    background-color: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1) !important;
    transition: all 0.3s ease;
}
.working-hours-box:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--color-accent) !important;
}

/* THẺ LIÊN HỆ VIP (Contact Card) */
.footer-contact-card {
    background: linear-gradient(135deg,#F6BD25 0%,#CC4D00 100%);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Hiệu ứng Shine (lóe sáng) chạy ngang thẻ */
.footer-contact-card::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    animation: shineCard 6s infinite;
}

@keyframes shineCard {
    0% { left: -100%; }
    20%, 100% { left: 200%; }
}

.footer-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(244, 180, 0, 0.2) !important;
}

/* Link bên trong thẻ VIP */
.contact-card-link {
    transition: all 0.2s ease;
}
.contact-card-link:hover {
    color: var(--color-white) !important;
    text-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Tinh chỉnh Link ở cột 2 & 3 */
.footer-links a { color: #a0aec0 !important; }
.footer-links a:hover { color: var(--color-accent) !important; }