﻿body {
    height: 100%;
    margin: 0;
    font-family: Inter, "Roboto", "Open Sans", Arial, sans-serif;
    color: #033;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-image: url('../../images/design/5.png');
    background-size: cover; /* phủ toàn màn hình */
    background-repeat: no-repeat;
    background-attachment: fixed; /* cố định khi cuộn */
    background-position: center;
}

    body::before {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(255, 255, 255, 0.2); /* trắng trong nhẹ, giống nền */
        backdrop-filter: blur(3px); /* làm mờ nền phía sau */
        -webkit-backdrop-filter: blur(3px); /* hỗ trợ Safari */
        z-index: -2;
    }

.partner-logo {
    filter: grayscale(100%) opacity(70%);
    transition: all 0.3s ease;
}

    .partner-logo:hover {
        filter: grayscale(0%) opacity(100%);
        transform: scale(1.05);
    }

.report-link:hover .report-icon {
    transform: scale(1.1);
    background-color: #005A9E;
    color: white;
}
/* Custom scrollbar for slider */
.slider-container::-webkit-scrollbar {
    height: 8px;
}

.slider-container::-webkit-scrollbar-thumb {
    background-color: #d1d5db;
    border-radius: 10px;
}

.slider-container::-webkit-scrollbar-track {
    background-color: #f3f4f6;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background-color: #005A9E;
    color: white;
}

.partner-logo {
    filter: grayscale(100%) opacity(80%);
    transition: all 0.3s ease;
    max-height: 120px; /* tăng chiều cao để logo rõ hơn */
    max-width: 160px; /* thêm chiều rộng tối đa */
    width: auto;
    height: auto;
    object-fit: contain; /* giữ nguyên tỉ lệ ảnh */
}

    .partner-logo:hover {
        filter: grayscale(0%) opacity(100%);
        transform: scale(1.05);
    }

.counter-wrap {
    will-change: transform, opacity;
}

.animate-fadeInUp {
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
}

    .animate-fadeInUp.delay-200 {
        animation-delay: .2s;
    }

    .animate-fadeInUp.delay-400 {
        animation-delay: .4s;
    }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== HEADER ===== */
* {
    box-sizing: border-box;
}

h1 {
    margin: 0;
    padding: 0;
    font-family: 'Inter', Arial, sans-serif;
}
.biwase-header {
    position: sticky;
    top: 0;
    z-index: 15;
    border-bottom: 2px solid transparent;
    background: rgba(255, 255, 255, 0); /* ban đầu trong suốt */
    transition: all 0.3s ease; /* hiệu ứng mượt */
}

    .biwase-header.scrolled {
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px); /* ✅ thêm px, fix lỗi cũ */
        background: rgba(255, 255, 255, 0.95); /* trắng mờ đẹp */
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        border-bottom: 2px solid #0077c8;
        padding-bottom: 5px;
    }

/* --- Header top --- */
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap; /* ❗ giữ trên một dòng */
    padding: 8px 0;
    gap: 5px;
}

.logo {
    height: 85px;
    align-items: center;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 5px;
}

    .header-left h1 {
        font-weight: 700;
        color: #180a70;
        text-transform: uppercase;
    }

        .header-left h1 span {
            color: #f58634;
        }

.header-right {
    display: flex;
    align-items: center;
    gap: 5px; /* khoảng cách giữa các nút dropdown */
    flex-shrink: 0; /* không bị co lại */
}

/* --- Dropdowns --- */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Nút chính */
.dropbtn {
    display: flex;
    align-items: center;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.6); /* nền trong suốt mờ nhẹ */
    border: 1px solid rgba(2, 78, 151, 0.15); /* viền xanh mờ */
    border-radius: 999px; 

    color: #024e97;
    padding: 5px 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(6px); /* hiệu ứng kính mờ */
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

    .dropbtn:hover {
        background: rgba(230, 243, 255, 0.8); /* sáng hơn nhẹ khi hover */
        color: #f58634; /* cam như nút */       
    }

/* Khung menu thả xuống */
.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    min-width: 280px;
    border-radius: 12px;
    box-shadow: 0px 4px 16px rgba(0,0,0,0.1);
    z-index: 10;
    overflow: hidden;
    border: 1px solid rgba(2, 78, 151, 0.1);
}
.dropdown-content a {
    color: #024e97;
    padding: 10px 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    background: transparent;
    line-height: 1.4; /* 👈 giữ chiều cao dòng ổn định */
}

    .dropdown-content a:hover {
        background: rgba(230, 243, 255, 0.8);
        color: #f58634;
    }

    /* FIX MÉO ICON */
    .dropdown-content a svg {       
        flex-shrink: 0; /* 👈 không cho co lại khi text dài */
        display: inline-block;
        vertical-align: middle;
        color: inherit; /* 👈 đổi màu theo text */
        transition: color 0.2s ease;
    }

    /* Khi hover: icon đổi màu cùng chữ */
    .dropdown-content a:hover svg {
        color: #024e97;
    }

/* Hiện menu khi hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* ======== MENU CHÍNH (CẤP 1) ========== */
.main-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 2px 0;
    width: 100%; /* Kéo dài hết chiều rộng */
}

.menu {
    display: flex;    
    gap: 5px;
    padding: 0;
    margin: 0;
    list-style: none;
    /* RẤT QUAN TRỌNG: Cho phép menu chiếm hết không gian còn lại */
    flex-grow: 1;
    /* Đảm bảo menu dồn hết về bên trái */
    justify-content: flex-start;
}

    .menu li {
        position: relative;
        flex-grow: 1;
    }

    .menu a {
        display: flex;
        align-items: center; /* Căn giữa theo chiều dọc */
        justify-content: space-between; /* Đẩy nội dung và icon ra hai đầu */
        /* Các thuộc tính hiện có */
        background: #fff;
        border-radius: 999px; /* Sử dụng 999px thay vì 50px */
        gap: 8px;
        padding: 7px 15px;
        color: #000000;
        background: rgba(255, 255, 255, 0.6);
        border: 1px solid rgba(2, 78, 151, 0.15);
        /*border-bottom: 1px solid rgba(2, 78, 151, 0.15);*/
        cursor: pointer;
        transition: all 0.2s ease;
        backdrop-filter: blur(6px);
        box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    }

        .menu a .dropdown-icon svg {
            transition: transform 0.3s ease;
            font-weight: 600;
        }

    /* Khi hover vào LI cha (.dropdown) */
    .menu .dropdown:hover .dropdown-icon svg {
        transform: rotate(180deg); /* Quay ngược 180 độ */
    }

    /* Khi hover vào mục menu cấp 1 có menu con */
    .menu .dropdown:hover > a {
        background: #ffffff;
        color: #024e97;
        border-radius: 15px 15px 0 0; /* Bo góc trên để liền với menu con */
    }

/* --- CẤP 2: MENU XỔ XUỐNG (DROPDOWN) --- */
.dropdown-menu {
    display: none; /* Mặc định ẩn đi */
    position: absolute;
    top: 100%; /* Hiển thị ngay dưới mục cha */
    left: 0;
    width: max-content; /* Chiều rộng tự động theo nội dung */
    min-width: 250px; /* Đặt chiều rộng tối thiểu */
    list-style: none;
    padding: 0;
    margin-top: 0;
    background: #fff;
    border-radius: 0 0 10px 10px; /* Bo góc dưới */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 10;
    /* QUAN TRỌNG: Phải là 'visible' (hoặc không cần khai báo) để menu cấp 3 không bị cắt */
    overflow: visible;
}
 
/* Hiển thị menu cấp 2 khi hover vào mục cha */
.dropdown:hover > .dropdown-menu {
    display: block;
}
.dropdown:nth-last-child(-n+2) .dropdown-menu {
    left: auto;
    right: 0;
}
/* Các mục trong menu cấp 2 */
.dropdown-menu a {
    display: block;
    padding: 10px 14px;
    color: #000000;
    font-size: 15px;
    text-decoration: none;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    border-bottom: 1px solid #d9e8f7;
    transition: all 0.2s ease;
}

/* Bỏ đường kẻ của mục cuối cùng */
.dropdown-menu li:last-child > a {
    border-bottom: none;
}

.dropdown-menu a:hover {
    color: #024e97;
    background-color: #f7fbfd;
}


/* --- CẤP 3: MENU CON CỦA CẤP 2 (SUBMENU) --- */
.has-submenu {
    position: relative; /* Bắt buộc: để định vị cho .submenu */
}

.submenu {
    display: none; /* Mặc định ẩn */
    position: absolute;
    top: -1px; /* Vị trí theo chiều dọc, căn chỉnh cho đẹp */
    left: 100%; /* Hiển thị ngay bên phải mục cha cấp 2 */
    min-width: 220px;
    width: max-content;
    list-style: none;
    padding: 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    z-index: 20;
}

/* Hiển thị menu cấp 3 khi hover vào mục cha cấp 2 */
.has-submenu:hover > .submenu {
    display: block;
}

.has-submenu > a {
    position: relative; /* để chứa pseudo-element ở góc phải */
    padding-right: 20px; /* chừa chỗ cho mũi tên */
}

    /* Mũi tên nằm sát phải */
    .has-submenu > a::after {
        content: "›"; /* hoặc "▸", "►" */
        position: absolute;
        right: 10px; /* cách mép phải một chút */
        top: 50%;
        transform: translateY(-50%);
        transition: transform 0.2s ease;
    }

/* Hiệu ứng hover */
.has-submenu:hover > a::after {
    transform: translate(2px, -50%); /* dịch nhẹ sang phải khi hover */
}

/* --- Search box & Language --- */
.menu-tools {
    display: flex;   
    align-items: center;
    gap: 5px;
    flex-wrap: nowrap; /* Ngăn không cho rớt xuống dòng */
}

.search-wrapper {
    display: flex;
    align-items: center;
    width: 38px; /* Chiều rộng thu gọn: chỉ vừa đủ icon */
    height: 38px; /* Cố định chiều cao */
    overflow: hidden;
    border: 1px solid rgba(2, 78, 151, 0.15);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.4s ease-in-out;
    padding: 0 5px; /* Điều chỉnh padding */
}

    /* Trạng thái mở rộng (sử dụng JS để thêm class 'active') */
    .search-wrapper.active {
        width: 250px; /* Chiều rộng khi mở rộng */
    }

/* Icon (Đã có trong HTML, chỉ cần style CSS cơ bản) */
.search-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    /* Các thuộc tính căn giữa đã được thêm trong Tailwind HTML */
}

/* Input */
.search-input {
    flex-grow: 1;
    min-width: 0;
    border: none;
    outline: none;
    background: transparent;
    color: #024e97;    
    font-size: 0.9rem;
    padding: 0 8px;
    opacity: 0; /* Ẩn ban đầu */
    transition: opacity 0.2s ease 0.2s;
}

/* Input khi ở trạng thái ACTIVE */
.search-wrapper.active .search-input {
    opacity: 1;
}

.lang-switch {
    position: relative;
    display: inline-block;
    font-family: sans-serif;
}

.toggle {
    position: relative;
    width: 90px;
    background: #eaf3fb;
    border-radius: 999px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    user-select: none;
}

.option {
    flex: 1;
    text-align: center;
    padding: 7px 0;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    color: #024e97;
    z-index: 2;
    transition: color 0.3s ease;
}

    .option.active {
        color: #fff;
    }

.slider {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 43px;
    height: calc(100% - 4px);
    background: #024e97;
    border-radius: 999px;
    transition: all 0.3s ease;
    z-index: 1;
}

    /* Vị trí slider theo ngôn ngữ */
    .slider.left {
        transform: translateX(0);
    }

    .slider.right {
        transform: translateX(45px);
    }
/* Responsive */
@media (max-width: 900px) {
    .header-left h1 {
        font-size: 1rem;
        text-align: center;
    }

    .main-menu {
        flex-direction: column;
        gap: 5px;
    }

    .menu-tools {
        justify-content: center;
    }
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 2.5rem !important;
}

/* Giảm kích thước mũi tên trên mobile */
@media (max-width: 768px) {
    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 1.8rem !important;
    }
}
/* ==== Slide back next ==== */
.swiper-products {
    position: relative;
}

    
    /* Giữ nguyên phần định dạng nút ngoài (button) */
    .swiper-products .swiper-button-prev-cus,
    .swiper-products .swiper-button-next-cus {
        background-color: #fff;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        border: 1px solid rgba(0, 90, 158, 0.25);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 45%;
        transform: translateY(-50%);
        transition: all 0.3s ease;
        z-index: 5;
        opacity: 1;
        cursor: pointer;
    }

        /* === Mũi tên xanh, nhỏ gọn, không có nền bao quanh === */
        .swiper-products .swiper-button-prev-cus::after,
        .swiper-products .swiper-button-next-cus::after {
            font-size: 16px; /* Tăng kích thước font lên một chút để dễ nhìn hơn */
            color: #005A9E; /* Màu mũi tên chuyển từ trắng sang xanh BIWASE */
            /* BỎ nền bao (background-color), và thu nhỏ kích thước (width/height)
			 để chỉ còn lại icon mũi tên nằm giữa. */
            width: 20px; /* Chỉ cần một chút padding ảo để căn chỉnh */
            height: 20px;
            border-radius: 0; /* Không cần bo góc tròn nữa */
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.25s ease;
        }

        /* --- Thêm Nội dung (Content) cho mũi tên --- */
        .swiper-products .swiper-button-prev-cus::after {
            content: '‹';
            font-weight: 900;
        }

        .swiper-products .swiper-button-next-cus::after {
            content: '›';
            font-weight: 900;
        }


        /* === Hover: chỉ cần hiệu ứng phóng to icon nhẹ nhàng === */
        .swiper-products .swiper-button-prev-cus:hover::after,
        .swiper-products .swiper-button-next-cus:hover::after {
            transform: scale(1.2); /* Phóng to mũi tên */
            /* Bỏ box-shadow vì không còn nền xanh */
        }

    /* === Vị trí Đặt trong khu vực bo góc, sát lề === */
    .swiper-products .swiper-button-prev-cus {
        left: -2px;
    }

    .swiper-products .swiper-button-next-cus {
        right: -2px;
    }

/* === Responsive cho Mobile === */
@media (max-width: 768px) {
    .swiper-products .swiper-button-prev-cus {
        left: 5px;
    }

    .swiper-products .swiper-button-next-cus {
        right: 5px;
    }
}

/*============== Danh hiệu =====================*/
.swiper-danhhieu .swiper-button-prev-cus,
.swiper-danhhieu .swiper-button-next-cus {
    background-color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(0, 90, 158, 0.25);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    z-index: 5;
    opacity: 1;
    cursor: pointer;
}

    /* === Mũi tên xanh, nhỏ gọn, không có nền bao quanh === */
    .swiper-danhhieu .swiper-button-prev-cus::after,
    .swiper-danhhieu .swiper-button-next-cus::after {
        font-size: 16px; /* Tăng kích thước font lên một chút để dễ nhìn hơn */
        color: #005A9E; /* Màu mũi tên chuyển từ trắng sang xanh BIWASE */
        /* BỎ nền bao (background-color), và thu nhỏ kích thước (width/height)
			 để chỉ còn lại icon mũi tên nằm giữa. */
        width: 20px; /* Chỉ cần một chút padding ảo để căn chỉnh */
        height: 20px;
        border-radius: 0; /* Không cần bo góc tròn nữa */
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.25s ease;
    }

    /* --- Thêm Nội dung (Content) cho mũi tên --- */
    .swiper-danhhieu .swiper-button-prev-cus::after {
        content: '‹';
        font-weight: 900;
    }

    .swiper-danhhieu .swiper-button-next-cus::after {
        content: '›';
        font-weight: 900;
    }


    /* === Hover: chỉ cần hiệu ứng phóng to icon nhẹ nhàng === */
    .swiper-danhhieu .swiper-button-prev-cus:hover::after,
    .swiper-danhhieu .swiper-button-next-cus:hover::after {
        transform: scale(1.2); /* Phóng to mũi tên */
        /* Bỏ box-shadow vì không còn nền xanh */
    }

/* === Vị trí Đặt trong khu vực bo góc, sát lề === */
.swiper-danhhieu .swiper-button-prev-cus {
    left: -2px;
}

.swiper-danhhieu .swiper-button-next-cus {
    right: -2px;
}

/* === Responsive cho Mobile === */
@media (max-width: 768px) {
    .swiper-danhhieu .swiper-button-prev-cus {
        left: 5px;
    }

    .swiper-danhhieu .swiper-button-next-cus {
        right: 5px;
    }
}

/* === Silde sub === */
.image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    /* Giả lập tỷ lệ ảnh: Ví dụ 4:3 */
    height: 0;
}

.main-image {
    position: absolute;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    transition: opacity 0.3s;
}

.swiper-slide .service-card {
}
/* 3. Tooltip (Slideshow) */
.image-tooltip {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    overflow: hidden;
    border-radius: 8px;
}

/* Kích hoạt Tooltip khi Hover */
#imageParent:hover .main-image {
    opacity: 0; /* Ẩn ảnh chính */
}

#imageParent:hover .image-tooltip {
    opacity: 1; /* Hiện tooltip */
    visibility: visible;
}

/* --- Cấu trúc Slideshow --- */
.slideshow-content {
    display: flex; /* Đặt các ảnh cạnh nhau */
    width: 300%; /* Ví dụ: 3 ảnh * 100% */
    height: 100%;
    transition: transform 0.4s ease-in-out;
}

    .slideshow-content img {
        min-width: calc(100% / 3); /* Mỗi ảnh chiếm 1/3 chiều rộng */
        height: 100%;
        object-fit: cover;
    }

/* --- Nút điều khiển --- */
.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    color: white;
    border: none;
    padding: 10px 5px;
    cursor: pointer;
    z-index: 10; /* Đảm bảo nút nằm trên ảnh */
    font-size: 20px;
    line-height: 1;
    transition: background 0.2s;
}

    .slide-btn:hover {
        background: rgba(255, 255, 255, 0.6);
    }

.prev-btn {
    left: 0;
    border-radius: 0 5px 5px 0;
}

.next-btn {
    right: 0;
    border-radius: 5px 0 0 5px;
}

/* 4. Tiêu đề và Nút bấm */
.card-title {
    font-size: 1.3em;
    font-weight: 800;
    color: #333;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.details-button {
    display: inline-block;
    padding: 10px 25px;
    border: 2px solid #007bff; /* Màu viền xanh */
    color: #007bff; /* Màu chữ xanh */
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
}

    .details-button:hover {
        background-color: #007bff;
        color: white;
        box-shadow: 0 4px 8px rgba(0, 123, 255, 0.4);
    }

.navigation-disabled {
    pointer-events: none !important;
    /* Đảm bảo nó được ẩn hoàn toàn, ghi đè mọi thứ */
    display: none !important;
}

/* Container cho mỗi thẻ tính năng (giữ nguyên) */
.feature-card {
    text-align: center;
    padding: 20px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin: 10px;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Wrapper bao quanh icon để tạo nền mờ */
.icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    overflow: hidden;
}

    /* Màu nền Gradient cho Wrapper (giống hình mẫu) */
    .icon-wrapper.water {
        background: linear-gradient(135deg, #e0f2f7, #d0ecf4);
    }
    /* Xanh nhạt */
    .icon-wrapper.price {
        background: linear-gradient(135deg, #e9f7e0, #d5f2d0);
    }
    /* Xanh lá nhạt */
    .icon-wrapper.search {
        background: linear-gradient(135deg, #e0e9f7, #d0dcf4);
    }
    /* Xanh dương nhạt */
    .icon-wrapper.payment {
        background: linear-gradient(135deg, #f7e0e0, #f4d0d0);
    }
    /* Hồng nhạt */
    .icon-wrapper.services {
        background: linear-gradient(135deg, #f7e9e0, #f4dcd0);
    }
/* Cam nhạt */


/* Định dạng cho Lucide Icon */
.feature-icon {
    width: 36px;
    height: 36px;
    /* Dùng !important để đảm bảo ghi đè các style Lucide mặc định */
    stroke-width: 1.5 !important; /* Nét vẽ mỏng */
}

/* Màu nét vẽ cho từng icon (Sử dụng CSS Variable --lucide-stroke) */
.icon-wrapper.water .feature-icon {
    color: #3498db !important;
}
/* Màu nét xanh nước */
.icon-wrapper.price .feature-icon {
    color: #2ecc71 !important;
}
/* Màu nét xanh lá cây */
.icon-wrapper.search .feature-icon {
    color: #9b59b6 !important;
}
/* Màu nét tím */
.icon-wrapper.payment .feature-icon {
    color: #e74c3c !important;
}
/* Màu nét đỏ cam */
.icon-wrapper.services .feature-icon {
    color: #f39c12 !important;
}

/* Phong cách cho văn bản */
.feature-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 0;
}
.download-icon {
    color: #024e97; /* Màu xanh */
    transition: color 0.2s ease;
}

    .download-icon:hover {
        color: #f58634; /* Màu cam */
    }

/* Padding cho khung triết lý kinh doanh */
.custom-padding {
    padding-left: 80px; /* Hoặc giá trị khác cho mobile */
    padding-right: 80px;
}

/* Padding cho Desktop/Laptop (màn hình 1024px trở lên) */
@media (min-width: 1024px) {
    .custom-padding {
        padding-left: 100px;
        padding-right: 100px;
    }
}
/* Pie chính — KHÔNG rotateX: để luôn là vòng tròn */
.pie-chart {
    /* conic-gradient: thay giá trị phần trăm ở đây */
    background-image: conic-gradient( #63b3ed 0% 58%, /* Nước sạch */
    #a73229 58% 78%, /* Xử lý rác */
    #38a169 78% 80%, /* Nước thải */
    #f6e05e 80% 100% /* Khác */
    );
    border-radius: 50%;
    box-shadow:
    /* Viền ngoài nhẹ */
    0 6px 18px rgba(0,0,0,0.12),
    /* Bóng inset tạo độ sâu */
    inset 0 6px 12px rgba(0,0,0,0.06);
    /* Nếu muốn viền mảnh sáng ở dưới để "dày" hơn: */
    /* outline: 4px solid rgba(59,130,246,0.08); */
}

/* Overlay highlight: tạo ánh sáng + phản chiếu để giống 3D mà không rotate */
.overlay-highlight {
    /* nhẹ ánh sáng ở góc trên trái */
    background: radial-gradient(120% 80% at 20% 18%, rgba(255,255,255,0.55), rgba(255,255,255,0.15) 20%, rgba(255,255,255,0) 40%), linear-gradient(180deg, rgba(255,255,255,0.06), rgba(0,0,0,0) 50%);
    pointer-events: none;
    mix-blend-mode: screen;
}

/* Tối ưu retina / chỉnh kích thước */
@media (max-width: 640px) {
    .pie-chart {
        box-shadow: 0 6px 16px rgba(0,0,0,0.12), inset 0 4px 8px rgba(0,0,0,0.05);
    }
}
/* CSS cho class table-responsive */
.table-responsive {    
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.submenu_mobile {
    transition: max-height 0.3s ease;
    overflow: hidden;
}

.submenu_mobile.hidden {
   max-height: 0;
}

.submenu_mobile:not(.hidden) {
    max-height: 1000px; /* hoặc auto nếu bạn muốn sổ hết */
}
a strong.active {
    color: #024e97;
    font-weight: 700;
}
/* Cho iframe map luôn full */
.iframe-scale {
    position: relative;
    width: 100%;
    height: 100%;
}
    .iframe-scale iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }
