/* ==== Reset cơ bản ==== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: #f4f7f6;
    /* Nền xám nhạt hiện đại */
    color: #333;
    line-height: 1.6;
    scroll-behavior: smooth;
    overflow-x: hidden;
    /* KHẮC PHỤC LỖI CUỘN NGANG TOÀN TRANG */
}

/* ==== Header (MÀU MỚI - NÂU VÀNG ĐỒNG - CĂN GIỮA) ==== */
header {
    /* Nền nâu vàng đậm, ấm */
    background: linear-gradient(to right, #8E4E1E, #6A380F);
    color: #F5EFE6;
    /* Chữ màu kem nhạt */
    padding: 10px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* Trên PC */
    flex-wrap: wrap;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    /* Shadow nhẹ */
    border-bottom: 1px solid #A05D2C;
    /* Viền dưới màu đồng sáng hơn */
    position: sticky;
    top: 0;
    z-index: 1000;

    /* Giới hạn chiều rộng và căn giữa */
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}


header .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    order: 1;
    /* Vị trí 1 trên PC/Mobile */
}

header .logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

header .logo a:hover img {
    box-shadow: 0 0 15px 3px rgba(255, 215, 0, 0.6);
    transform: scale(1.05);
}


header .logo h1 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    /* Chữ trắng cho tiêu đề */
}


/* ==== Menu Navigation (TỐI ƯU CHO MOBILE - CUỘN NGANG) ==== */
nav {
    display: flex;
    gap: 0;
    /* KHỞI TẠO CHO PC */
    width: auto;
    order: 2;
    margin-top: 0;
}

nav .menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    /* Reset cuộn ngang cho PC */
    overflow-x: visible;
    flex-wrap: nowrap;
    width: auto;
}


nav .menu li a {
    color: #E0CDB6 !important;
    /* Màu chữ menu nhạt hơn */
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    display: block;
    padding: 10px 12px;
    /* Tăng padding dọc */
    border-radius: 4px;
    border-bottom: none !important;
    position: relative;
    overflow: hidden;
    background-color: transparent !important;
    flex-shrink: 0;
    /* KHÔNG CHO MỤC MENU CO LẠI */
}

/* Gạch chân ảo */
nav .menu li a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #FFD700;
    /* Màu vàng gold */
    transition: width 0.3s ease, left 0.3s ease;
}


nav .menu li a:hover {
    color: #ffffff !important;
    /* Chữ trắng khi hover */
    background-color: transparent !important;
    text-shadow: none;
    transform: none;
}

/* Hiệu ứng gạch chân khi hover */
nav .menu li a:hover::after {
    width: 70%;
    left: 15%;
}


nav .menu li a.active {
    color: #ffffff !important;
    /* Chữ trắng cho active */
    background-color: rgba(255, 255, 255, 0.15);
    /* Nền mờ đậm hơn */
    font-weight: 600;
    padding-bottom: 10px;
    /* Reset padding */
    border-bottom: none !important;
    transform: none;
}

/* Gạch chân cho active */
nav .menu li a.active::after {
    width: 70%;
    left: 15%;
    background-color: #FFD700;
}


/* Dropdown Menu */
nav .menu li.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #794014;
    /* Nền dropdown đậm hơn header */
    min-width: 180px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 100;
    border-radius: 0 0 6px 6px;
    border: 1px solid #A05D2C;
    /* Viền đồng */
    border-top: none;
    overflow: hidden;
}

.dropdown-content a {
    color: #E0CDB6;
    /* Màu chữ dropdown */
    padding: 10px 15px;
    text-decoration: none;
    display: block;
    text-align: left;
    margin: 0 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    border-bottom: none;
    transform: none !important;
    /* Reset transform */
}

.dropdown-content a::after {
    display: none;
}


.dropdown-content a:hover {
    background-color: #985F2A;
    /* Nền hover sáng hơn */
    color: #fff !important;
    text-shadow: none !important;
}

nav .menu li.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown>a::after {
    content: ' ▾';
    font-size: 12px;
    color: #D3B89C;
    /* Màu mũi tên */
}

nav .menu li.dropdown>a:hover::after {
    width: 0;
}


/* ==== Section tiêu đề (Các mục) ==== */
section h2 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #d32f2f;
    border-left: 6px solid #ff7b00;
    padding-left: 10px;
    text-transform: capitalize;
}

/* ==== BỐ CỤC CHUNG CHO CÁC LƯỚI ==== */

/* Lưới video/karaoke (Trang chủ & Trang con) */
.video-grid,
.list,
.karaoke-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Lưới text (Lời bài hát list, Tham khảo grid) */
.text-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* ==== THẺ BÀI VIẾT (.item) ==== */
.item {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
    padding: 0;
    border: 1px solid #eee;
    
    /* FIX: Buộc item là Flex container */
    display: flex !important; /* Thêm !important */
    flex-direction: column !important; /* Thêm !important */
}

.item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
    border: 1px solid #ff7a00;
}

.item p {
    font-weight: 600;
    color: #333;
    text-align: left;
    padding: 10px 15px;
    margin: 0;
    background: #ffffff;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 15px;
    line-height: 22px;

    /* FIX: Buộc chiều cao tối thiểu cho 2 dòng */
    min-height: 44px;
    /* Tương đương 2 dòng chữ (22px line-height * 2) */
    height: auto;
}

/* Thumbnail */
.item-link-wrapper {
    display: block;
    text-decoration: none;
    color: inherit;
}

.item-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #e0e0e0;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

.item-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.item-thumbnail .thumb-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: #888;
}

.item-thumbnail .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.item:hover .item-thumbnail .play-icon {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: #ff0000;
}

/* Thẻ bài viết dạng text (Dùng cho Lời bài hát list) */
.item-text {
    border: 1px solid #eee;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.item-text h3 {
    font-size: 18px;
    color: #d32f2f;
    margin: 0 0 10px 0;
}

.item-text a:not(.read-more) {
    text-decoration: none;
    color: inherit;
}

.item-text a:not(.read-more):hover h3 {
    color: #ff7a00;
}

.item-text p.snippet {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
    flex-grow: 1;
    margin: 0 0 15px 0;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0;
    /* Reset */
}



.item-text a.read-more {
    font-weight: bold;
    color: #ff7a00;
    text-decoration: none;
    font-size: 14px;
    margin-top: auto;
}

.item-text a.read-more:hover {
    text-decoration: underline;
}

/* ==== BỐ CỤC TRANG CHỦ ==== */
.home-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1400px;
    margin: 30px auto;
    padding: 0 20px;
}

.main-content {
    flex: 3;
    min-width: 0;
}

.sidebar {
    flex: 1;
    min-width: 300px;
}

.home-section {
    margin-bottom: 30px;
}

.empty-notify {
    font-style: italic;
    color: #777;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    grid-column: 1 / -1;
}

/* Sidebar */
.sidebar-widget {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    margin-bottom: 25px;
    border: 1px solid #eee;
}

.sidebar-widget h3 {
    font-size: 20px;
    margin: 0 0 15px 0;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
    color: #d32f2f;
}

.sidebar-list .sidebar-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f5f5f5;
}

.sidebar-list .sidebar-item:last-child {
    border-bottom: none;
}

.sidebar-list .sidebar-item img,
.sidebar-list .sidebar-item .thumb {
    width: 100px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
    background: #f0f0f0;
}

.sidebar-list .sidebar-item .thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #aaa;
}

.sidebar-list .sidebar-item .info {
    min-width: 0;
}

.sidebar-list .sidebar-item .info a {
    font-weight: 600;
    color: #333;
    text-decoration: none;
    transition: color 0.2s ease;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.sidebar-list .sidebar-item .info a:hover {
    color: #ff7a00;
}

.sidebar-list .sidebar-item .info span {
    font-size: 13px;
    color: #777;
    display: block;
    margin-top: 4px;
}

/* ==== Bố cục trang con (container) ==== */
main.container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* ==== Banner Slider (ĐÃ SỬA) ==== */
.banner {
    width: 100%;
    max-width: 1400px;
    /* Bằng với .home-container */
    margin: 0 auto;
    /* Căn giữa */
    height: 350px;
    position: relative;
    overflow: hidden;
    background: #f0f0f0;
    border-radius: 8px;
    /* Bo góc banner */
    margin-top: 20px;
    /* Khoảng cách với header */
}

.slides-container {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.7s ease-in-out;
}

.banner .slide {
    min-width: 100%;
    height: 100%;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    /* Bo góc ảnh bên trong */
}


/* ==== Footer (FULL WIDTH - MÀU MỚI) ==== */
footer {
    background: #8E4E1E;
    /* Màu nâu đồng đậm giống header */
    color: #E0CDB6;
    /* Chữ màu kem nhạt */
    text-align: center;
    padding: 25px 20px;
    font-size: 14px;
    margin-top: 50px;
    border-top: 1px solid #A05D2C;
    /* Viền đồng sáng hơn */
    width: 100%;
}


/* ==== RESPONSIVE ==== */

/* Tablet & nhỏ hơn */
@media (max-width: 1420px) {

    /* Điều chỉnh breakpoint để khớp max-width */
    header {
        padding: 10px 15px;
        /* Giảm padding */
    }

    .banner {
        max-width: 100%;
        /* Bỏ giới hạn chiều rộng banner */
        border-radius: 0;
        /* Bỏ bo góc */
        margin-top: 0;
        /* Sát header */
    }

    .banner img {
        border-radius: 0;
    }

    .home-container {
        padding: 0 15px;
    }

    /* Giảm padding container */
}




/* === CSS cho trang Post.php === */
.post-page {
    max-width: 900px;
    margin: 30px auto;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.post-page h1 {
    font-size: 28px;
    color: #d32f2f;
    margin: 0 0 10px 0;
}

.post-meta {
    font-size: 14px;
    color: #777;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.post-meta strong {
    color: #555;
}

.post-player {
    margin-bottom: 30px;
}

.post-player iframe,
.post-player audio {
    width: 100%;
    border-radius: 8px;
}

.post-player iframe {
    aspect-ratio: 16 / 9;
    height: auto;
}

.post-lyrics h2 {
    font-size: 22px;
    color: #ff7a00;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

/* Nội dung từ CKEditor */
.post-content-formatted {
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    background: #fdfdfd;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #eee;
}

.post-content-formatted h1,
.post-content-formatted h2,
.post-content-formatted h3 {
    color: #d32f2f;
    margin-top: 20px;
    margin-bottom: 10px;
}

.post-content-formatted ul,
.post-content-formatted ol {
    padding-left: 30px;
    margin-bottom: 15px;
}

.post-content-formatted a {
    color: #ff7a00;
    text-decoration: none;
}

.post-content-formatted a:hover {
    text-decoration: underline;
}

/* Sửa lỗi hiển thị CKEditor */
.ck-editor__editable_inline {
    min-height: 200px;
}

.ck.ck-toolbar {
    flex-wrap: wrap !important;
}

/* ==== CSS CHO DANH SÁCH LỜI BÀI HÁT MỚI (TRANG CHỦ) ==== */

.lyrics-list-section .lyrics-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #eee;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

.lyrics-item {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    gap: 10px 20px;
}

.lyrics-item:last-child {
    border-bottom: none;
}

.lyrics-title {
    flex-grow: 1;
    flex-basis: 300px;
    font-weight: bold;
}

.lyrics-title a {
    color: #d32f2f;
    text-decoration: none;
    font-size: 16px;
}

.lyrics-title a:hover {
    color: #ff7a00;
    text-decoration: underline;
}

.lyrics-title .new-icon {
    font-size: 12px;
    vertical-align: super;
}

.lyrics-meta {
    flex-basis: 300px;
    font-size: 14px;
    color: #555;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lyrics-meta .meta-author {
    display: inline-block;
    max-width: 100%;
    vertical-align: middle;
}


.lyrics-stats {
    flex-basis: 150px;
    font-size: 14px;
    color: #888;
    text-align: right;
    margin-left: auto;
}

.lyrics-stats .meta-id {
    display: inline-block;
    margin-right: 15px;
    color: #B71C1C;
    font-weight: bold;
}

.lyrics-stats .meta-views {
    color: #1565C0;
}


.reference-item {
    padding: 0;
    display: flex;
    flex-direction: column;
    background-color: #fff;
}

.reference-thumbnail img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.reference-item .play-icon {
    display: none;
}

.reference-item .item-link-wrapper {
    padding: 0;
}

.reference-title {
    font-weight: bold;
    font-size: 16px !important;
    color: #333;
    padding: 10px 15px 5px 15px !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4 !important;
    height: auto !important;
    background: none !important;
}

.reference-item a:hover .reference-title {
    color: #ff7a00;
}


.reference-snippet {
    font-size: 14px !important;
    color: #555;
    line-height: 1.7 !important;
    padding: 0 15px 10px 15px !important;
    margin: 0 !important;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-grow: 1;
}

.reference-views {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    padding: 10px 15px;
    border-top: 1px solid #f0f0f0;
    margin-top: auto;
}

/* === CSS CHO PHÂN TRANG === */
.pagination {
    display: flex;
    justify-content: center;
    padding: 20px 0 10px 0;
    list-style: none;
    border-top: 1px solid #eee;
    margin-top: 15px;
}

.pagination a,
.pagination span {
    color: #8E4E1E;
    /* Màu nâu đồng */
    padding: 8px 14px;
    text-decoration: none;
    transition: background-color .3s;
    border: 1px solid #D3B89C;
    /* Viền nâu nhạt */
    margin: 0 3px;
    font-size: 14px;
}

.pagination a:hover {
    background-color: #F5EFE6;
    /* Nền kem khi hover */
    color: #6A380F;
    /* Chữ nâu đậm hơn */
}

.pagination .active {
    background-color: #8E4E1E;
    /* Nền nâu đồng */
    color: white;
    /* Chữ trắng */
    border: 1px solid #8E4E1E;
    cursor: default;
}

.pagination .dots {
    border: none;
    padding: 8px 5px;
    color: #555;
    cursor: default;
}

/* Responsive cho phân trang */
@media (max-width: 600px) {

    .pagination a,
    .pagination span {
        padding: 6px 10px;
        font-size: 13px;
        margin: 0 2px;
    }
}

/* ==== CSS CHO CAROUSEL (LƯỚT NGANG) ==== */

.carousel-wrapper {
    position: relative;
    margin: 0 -10px;
}

.carousel-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
    padding: 10px;
    margin: -10px;
}

.carousel-container::-webkit-scrollbar {
    display: none;
}

.carousel-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 15px !important;
}

.carousel-grid .item {
    flex: 0 0 calc(33.333% - 10px);
    max-width: calc(33.333% - 10px);
    margin: 0 !important;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    color: #333;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, opacity 0.2s ease;
}

.carousel-btn:hover {
    background-color: #fff;
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: default;
    background-color: rgba(220, 220, 220, 0.7);
}

.carousel-btn.prev {
    left: -15px;
}

.carousel-btn.next {
    right: -15px;
}

@media (max-width: 992px) {
    .carousel-grid .item {
        flex-basis: calc(50% - 8px);
        max-width: calc(50% - 8px);
    }

    .carousel-btn.prev {
        left: -10px;
    }

    .carousel-btn.next {
        right: -10px;
    }
}

@media (max-width: 600px) {
    .carousel-grid .item {
        flex-basis: calc(80% - 10px);
        max-width: calc(80% - 10px);
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .carousel-btn.prev {
        left: -5px;
    }

    .carousel-btn.next {
        right: -5px;
    }

    .carousel-wrapper {
        margin: 0 -5px;
    }
}

/* ==== CSS CHO NÚT LIÊN HỆ NỔI (FAB) ==== */

.floating-contact {
    position: fixed;
    /* Nổi trên trang */
    bottom: 30px;
    /* Cách đáy 30px */
    left: 30px;
    /* <<< SỬA: Cách trái 30px */
    z-index: 1050;
    /* Nằm trên cùng */
    display: flex;
    flex-direction: column;
    /* <<< Nút chính ở dưới, icon lên trên */
    align-items: center;
}

.floating-contact .main-button {
    background-color: #8E4E1E;
    /* Màu nâu đồng chủ đạo */
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.floating-contact .main-button:hover {
    transform: scale(1.1);
    background-color: #A05D2C;
    /* Sáng hơn khi hover */
}

/* Icon dấu X ẩn ban đầu */
.floating-contact .main-button .close-icon {
    display: none;
    font-size: 26px;
    /* To hơn chút */
}

/* Vòng tròn động */
.pulsing-icon {
    position: relative;
    /* Để định vị các vòng tròn */
    width: 24px;
    /* Kích thước bằng icon gốc */
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pulsing-icon .static-icon {
    font-size: 24px;
    /* Giữ kích thước icon gốc */
    color: white;
    z-index: 2;
    /* Nằm trên vòng tròn */
}

.pulsing-icon .circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    /* Màu trắng mờ */
    border-radius: 50%;
    opacity: 0;
    z-index: 1;
    /* Nằm dưới icon tĩnh */
    animation: pulse 2s infinite ease-out;
}

.pulsing-icon .circle-2 {
    animation-delay: 1s;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.5;
    }

    100% {
        transform: translate(-50%, -50%) scale(2.5);
        /* Phóng to ra */
        opacity: 0;
        /* Mờ dần đi */
    }
}

.floating-contact.open .pulsing-icon {
    display: none;
}


/* Các icon con */
.floating-contact .contact-icons {
    position: absolute;
    bottom: calc(100% + 15px);
    /* Đặt ngay trên nút chính + 15px margin */
    left: 50%;
    /* Căn giữa theo nút chính */
    transform: translateX(-50%);
    /* Hoàn tất căn giữa ngang */

    display: flex;
    flex-direction: column;
    align-items: center;

    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    transform: translateX(-50%) translateY(20px) scale(0.9);
    /* Di chuyển LÊN khi ẩn */
    opacity: 0;
    visibility: hidden;
    margin-bottom: 0;
    /* Bỏ margin cũ */
}


/* === TRẠNG THÁI KHI MỞ === */
.floating-contact.open .contact-icons {
    transform: translateX(-50%) translateY(0) scale(1);
    /* Sửa lại transform khi hiện */
    opacity: 1;
    visibility: visible;
}

.floating-contact.open .main-button {
    transform: rotate(135deg);
    /* Xoay nút chính */
    background-color: #c0392b;
    /* Đổi màu đỏ khi mở */
}

.floating-contact.open .main-button .fa-phone-alt {
    display: none;
}

.floating-contact.open .main-button .close-icon {
    display: block;
    transform: rotate(-135deg);
    /* Xoay ngược dấu X lại */
}


/* Style cho từng icon con */
.floating-contact .contact-icons .icon {
    background-color: #f8f8f8;
    /* Nền trắng/xám nhẹ */
    color: #555;
    /* Màu icon tối */
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 20px;
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
    position: relative;
    /* Cho tooltip */
}

.floating-contact .contact-icons .icon:hover {
    transform: scale(1.1);
}

/* Màu riêng cho từng nút */
.floating-contact .icon.phone:hover {
    background-color: #2ecc71;
    color: white;
}

/* Xanh lá */
.floating-contact .icon.sms:hover {
    background-color: #f39c12;
    color: white;
}

/* Vàng cam */
.floating-contact .icon.facebook:hover {
    background-color: #3b5998;
    color: white;
}

/* Xanh Facebook */
.floating-contact .icon.zalo:hover {
    background-color: #0068ff;
    color: white;
}

/* Xanh Zalo */

/* CSS cho ảnh Zalo SVG trong nút FAB */
.floating-contact .icon.zalo .zalo-svg-icon {
    width: 24px;
    /* Kích thước icon Zalo */
    height: 24px;
}

/* Tooltip (chú thích nhỏ khi hover) */
.floating-contact .icon .tooltip {
    position: absolute;
    left: 110%;
    /* Hiện bên phải icon */
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.floating-contact .icon:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

