
.banner-1 {
    width: 100%;
    height: 400px; /* Điều chỉnh chiều cao phù hợp */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Ngăn ảnh bị méo */
    background-color: #f8f9fa; /* Màu nền nhẹ */
}

.banner-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Đảm bảo ảnh luôn bao phủ toàn bộ */
    object-position: center; /* Căn giữa ảnh */
    display: block;
}

.banner {
    margin-top: 0px; /* Đẩy xuống dưới nếu navbar che banner */
}
.banner img {
    width: 100%;
    height: auto; /* Đảm bảo ảnh không bị mất */
    display: block;

}

/* ========================== Định dạng chung ========================== */
body {
    font-family: Arial, sans-serif;
    /*background-color: #f8f9fa;*/
    margin: 0;
    padding: 0;
    font-size: 22px;
}

/* ========================== Thanh địa chỉ & ô tìm kiếm ========================== */
/* Căn chỉnh phần hỗ trợ khách hàng */
.support-container {
    display: flex;
    align-items: center;
    gap: 10px; /* Khoảng cách giữa icon và văn bản */
}

/* Icon tròn màu xanh */
.support-icon {
    width: 50px; /* Kích thước icon */
    height: 50px;
}

/* Căn chỉnh văn bản */
.support-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.2;
}

/* Chữ "Liên hệ" */
.support-title {
    font-size: 16px;
    font-weight: normal;
    color: black;
}

/* Chữ "Hỗ trợ khách hàng" */
.support-subtitle {
    font-size: 18px;
    font-weight: bold;
    color: black;
}

/* ========================== Thiết lập kích thước icon điện thoại ========================== */
.phone-icon,
.icon {
    width: 80px; /* Kích thước hình tròn */
    height: 80px;
}

/* ========================== Top Bar ========================== */
.top-bar {
    background-color: #009688;
    color: white;
    padding: 10px 20px;
}

.d-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Tìm kiếm */
.search-container {
    display: flex;
    align-items: center;
    gap: 5px;
}

#search-input {
    width: 200px;
    border-radius: 5px;
    border: none;
    padding: 5px 10px;
    outline: none;
}

/* ========================== Header ========================== */
.clinic-header {
    background-color: white;
    padding: 15px 0;
    border-bottom: 2px solid #D6F0FF;
}

/* Logo */
.logo {
    height: 70px; /* Kích thước logo */
}
.hotline-container {
    display: flex;
    align-items: center;
    gap: 10px; /* Khoảng cách giữa icon và số điện thoại */
}

.phone-icon {
    width: 80px; /* Điều chỉnh kích thước icon */
    height: 80px;
}

.hotline-text-container {
    display: flex;
    flex-direction: column; /* Hiển thị số điện thoại theo chiều dọc */
    font-size: 18px;
    font-weight: bold;
    color: red;
    line-height: 1.5; /* Tạo khoảng cách giữa các số */
}


/* Hỗ trợ khách hàng */
.support-container {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    color: #E30000;
}

.support-icon {
    font-size: 24px;
    color: #009688;
    margin-right: 8px;
}

.support-text {
    text-align: left;
    font-size: 16px;
}

/* ========================== RESPONSIVE CHO IPAD & MOBILE ========================== */

/* 🔹 iPad (768px - 1024px) */
@media (max-width: 1024px) {
    .d-flex {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .top-bar {
        text-align: center;
        padding: 15px;
    }

    .hotline-container {
        font-size: 28px;
    }

    .support-container {
        font-size: 16px;
        justify-content: center;
    }

    .support-icon {
        width: 40px;
        height: 40px;
    }

    .support-text {
        font-size: 14px;
    }

    #search-input {
        width: 180px;
    }
}

/* 🔹 iPhone 14 Pro Max & Mobile (430px - 768px) */
@media (max-width: 768px) {
    .top-bar {
        padding: 10px;
    }

    .d-flex {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .clinic-header {
        padding: 10px 0;
    }

    .logo {
        height: 60px; /* Giảm kích thước logo */
    }

    .hotline-container {
        font-size: 24px;
    }

    .phone-icon {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }

    .support-container {
        font-size: 14px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .support-icon {
        width: 35px;
        height: 35px;
    }

    .support-text {
        font-size: 12px;
    }

    #search-input {
        width: 160px;
    }
}

/* 🔹 iPhone nhỏ hơn 430px (iPhone SE, iPhone 12 Mini) */
@media (max-width: 430px) {
    .support-container {
        flex-direction: column;
        text-align: center;
    }

    .hotline-container {
        font-size: 20px;
    }

    .phone-icon {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .support-text {
        font-size: 12px;
    }

    .support-icon {
        width: 30px;
        height: 30px;
    }

    #search-input {
        width: 140px;
    }
}

/* ========================== Banner ========================== */
.text-center.bg-primary {
    background: linear-gradient(to right, #009688, #009688);
    color: white;
    padding: 50px 0;
}

/* ========================== Danh mục chuyên khoa ========================== */

.specialty-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Mặc định trên desktop: 4 cột */
.specialty-card {
    width: 220px;
    height: 240px;
    background: white;
    border: 2px solid #009688;
    border-radius: 20px;
    text-align: center;
    padding: 20px;
    position: relative;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s;
    cursor: pointer;
}

/* Hover effect */
.specialty-card:hover {
    transform: scale(1.05);
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.15);
}

/* Hình ảnh trong khối */
.specialty-image {
    width: 100%;
    height: 150px;
    border-radius: 15px;
    background: #009688;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.specialty-image img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

/* Chữ bên dưới */
.specialty-card h4 {
    font-size: 16px;
    margin-top: 10px;
    color: #009688;
    font-weight: bold;
}

/* 🔹 Responsive: Hiển thị tốt trên mobile */
@media (max-width: 768px) {
    .specialty-container {
        gap: 15px; /* Giảm khoảng cách */
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* Chia thành 2 cột */
        justify-content: center;
    }

    .specialty-card {
        width: 90%; /* Chiếm gần hết màn hình để tối ưu */
        height: auto;
        padding: 15px;
    }

    .specialty-image {
        height: 120px; /* Giảm chiều cao ảnh */
    }

    .specialty-image img {
        width: 70%;
        height: 70%;
    }

    .specialty-card h4 {
        font-size: 14px; /* Giảm kích thước chữ */
    }

    /* Điều chỉnh nút "+" cho mobile */
    .specialty-card::before {
        font-size: 16px;
        width: 22px;
        height: 22px;
        top: -12px;
    }
}

/* 🔹 Responsive: Đảm bảo trên iPhone 14 Pro Max (430px) hiển thị 2 cột */
@media (max-width: 480px) {
    .specialty-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* Giữ 2 cột trên màn hình nhỏ */
        gap: 10px;
    }

    .specialty-card {
        width: 90%;
        height: auto;
        padding: 10px;
    }
}

/* ========================== Bài viết giới thiệu ========================== */
.intro-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.intro-img {
    max-width: 350px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.intro-content {
    max-width: 600px;
    text-align: justify;
}

.intro-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.intro-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
}

/* Responsive bài viết */
@media (max-width: 992px) {
    .intro-section {
        flex-direction: column;
        text-align: center;
    }

    .intro-img {
        max-width: 100%;
    }
}

/* ========================== Đội ngũ bác sĩ ========================== */

.bg-light-blue {
    background: linear-gradient(to right, #009688, #009688);
    border-radius: 15px;
    padding: 20px;
}

.doctor-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    text-align: center;
}

.doctor-card:hover {
    transform: translateY(-5px);
}

.doctor-img {
    width: 160px;
    height: 230px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #009688;
}

/* Responsive bác sĩ */
@media (max-width: 768px) {
    .doctor-card {
        padding: 15px;
    }
}
.swiper-container {
    width: 100%;
    padding: 20px 0;
    position: relative;
    overflow: hidden; /* Ẩn phần ảnh thừa */
}

/* Căn chỉnh các slide */
.swiper-slide {
    display: flex;
    justify-content: center;
}

/* Điều chỉnh kích thước của facility-card trong slider */
.facility-card {
    width: 90%;
    max-width: 350px;
    position: relative;
    background: white;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Hover effect */
.facility-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
}

/* Badge đỏ */
.facility-badge {
    background: red;
    color: white;
    font-size: 14px;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    position: absolute;
    top: 10px;
    left: 10px;
}

/* Nút mũi tên điều hướng */
.swiper-button-prev, .swiper-button-next {
    color: white !important;
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-button-prev:hover, .swiper-button-next:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* Chỉnh vị trí mũi tên */
.swiper-button-prev {
    left: -10px;
}

.swiper-button-next {
    right: -10px;
}

/* Ẩn nút điều hướng trên mobile */
@media (max-width: 768px) {
    .swiper-button-prev, .swiper-button-next {
        display: none;
    }
}

/* ========================== Footer ========================== */
/* Định dạng body và toàn trang */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

/* Định dạng wrapper để đẩy footer xuống dưới */
.wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Nội dung trang */
.main-content {
    flex: 1;
    padding: 20px;
    background-color: #f8f9fa;
}

/* Xóa khoảng trắng trên footer */
.footer {
    background-color: #343a40;
    color: white;
    text-align: center;
    padding: 15px 0;
    width: 100%;
    margin-top: 0 !important;
}

/*============================báo chí nói gì về chúng tôi=========================*/
/* Hiệu ứng cho phần báo chí */
.news-card {
    display: block;
    background: white;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: black;
}

.news-card  img {
    max-width: 100px;
    height: auto;
    margin-bottom: 10px;
}

.news-card :hover {
    transform: scale(1.05);
    background: #f0f8ff; /* Màu xanh nhạt */
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
}

.news-card  p {
    font-size: 16px;
    font-weight: bold;
}

/*=========================tại sao lại chọn chúng tôi ===================>


/* Căn chỉnh bố cục */
.choose-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    cursor: pointer;
    width: 100%; /* Full width */
    font-family: "Times New Roman", Times, serif;
}

/* Hiển thị hình ảnh lớn hơn */
.choose-card img {
    width: 250px; /* Tăng kích thước ảnh */
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #009688;
}

/* Tiêu đề */
.choose-card h5 {
    margin-top: 20px;
    font-size: 22px; /* To hơn */
    font-weight: bold;
    font-family: "Times New Roman", Times, serif;
}

/* Mô tả */
.choose-card p {
    font-size: 18px;
    font-weight: bold;
    font-family: "Times New Roman", Times, serif;
}

/* Hiệu ứng hover */
.choose-card:hover {
    transform: scale(1.08);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.25);
}

/* Responsive: 2 ảnh mỗi hàng */
@media (min-width: 768px) {
    .row .col-md-6 {
        display: flex;
        justify-content: center;
    }
}

/* Trên mobile: vẫn giữ hàng dọc */
@media (max-width: 767px) {
    .choose-card img {
        width: 200px;
        height: 200px;
    }

    .choose-card h5 {
        font-size: 20px;
    }

    .choose-card p {
        font-size: 16px;
    }
}
/* ========================phản hồi của bệnh nhân======================

 */

.feedback-row {
    display: flex;
    justify-content: center;
    gap: 50px;
    max-width: 1000px;
    margin: auto;
}

.feedback-item {
    width: 45%;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: opacity 0.5s ease-in-out;
}

.feedback-text {
    font-size: 18px;
    color: #333;
    font-style: italic;
    text-align: justify;
    margin-bottom: 20px;
}

.quote-mark {
    font-size: 40px;
    color: #028a0f;
    font-weight: bold;
}

.feedback-user {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
}

.feedback-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #028a0f;
}

/* Responsive (xuống hàng khi màn hình nhỏ) */
@media (max-width: 768px) {
    .feedback-row {
        flex-direction: column;
        align-items: center;
    }

    .feedback-item {
        width: 80%;
    }
    .hide-on-mobile{
        display: none;
    }
}
/* ================khung tư vấn =====================

 */
.online-consultation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f0f8ff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.consultation-left {
    width: 50%;
    text-align: left;
}

.consult-title {
    font-size: 24px;
    color: #009688;
    font-weight: bold;
}

.btn-chat {
    background: red;
    color: white;
    padding: 10px 20px;
    border: none;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
}

.consultation-right {
    width: 40%;
    text-align: center;
}

.consult-image {
    width: 100%;
    max-width: 300px;
}

/* Responsive */
@media (max-width: 768px) {
    .online-consultation {
        flex-direction: column;
        text-align: center;
    }
    .consultation-left, .consultation-right {
        width: 100%;
    }
}

/*==============================================phần cuôis

 */

/* Background tổng */
.clinic-info {
    background: linear-gradient(to right, rgb(0, 150, 136), rgb(0, 150, 136)),  url('../images/bacsinam.jpg') center/cover no-repeat;
    padding: 50px 0;
    color: white;
    text-align: left;
    border-radius: 10px;
}

/* Tiêu đề phòng khám */
.clinic-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Giờ làm việc */
.working-hours {
    background: rgba(255, 255, 255, 0.2);
    padding: 15px;
    border-radius: 8px;
    display: inline-block;
}

/* Danh sách chuyên khoa */
ul {
    list-style: none;
    padding: 0;
}

ul li {
    font-size: 21px;
    margin-bottom: 5px;
}

/* Form đăng ký */
.booking-form {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.booking-form h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #009688;
}

/* Nút gửi */
.btn-primary {
    background: #009688;
    border: none;
    padding: 12px;
    font-size: 16px;
}

.btn-primary:hover {
    background: #009688;
}

/* Responsive */
@media (max-width: 768px) {
    .clinic-info {
        text-align: center;
    }
}.logo img {
     width: 200px;
     height: 0px;
 }



/* Đảm bảo navbar không che banner */
.navbar-1 {
    position: relative;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.9); /* Giữ nền navbar trong suốt nhẹ */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Thêm hiệu ứng đổ bóng */
}

/* Điều chỉnh banner */
.banner-1 {
    width: 100%;
    height: 500px; /* Điều chỉnh chiều cao theo nhu cầu */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: #f8f9fa;
    position: relative;
}

/* Căn chỉnh hình ảnh banner */
.banner-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Đảm bảo ảnh phủ kín */
    object-position: center; /* Căn giữa ảnh */
    display: block;
}

/* Thêm hiệu ứng làm nổi bật banner */
.banner-1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

}

/* Nếu muốn có tiêu đề trên banner */
.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    z-index: 2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}





.list-group-item {
    background: none;
    border: none;
    font-size: 18px;
    font-weight: bold;
    padding: 10px 0;
    cursor: pointer;
}

.list-group-item a {
    text-decoration: none;
    color: white;
}

.sub-menu {
    display: none; /* Ẩn danh mục con ban đầu */
    list-style-type: none;
    padding-left: 15px;
}

.sub-menu li {
    font-size: 16px;
    font-weight: normal;
    padding: 5px 0;
}

.sub-menu li a {
    color: #ffffff;
}

.sub-menu li a:hover {
    text-decoration: underline;
}


/* Giới hạn chiều cao danh mục bệnh và hiển thị thanh cuộn */
#category-list {
    max-height: 300px;
    overflow-y: auto;
}


.content-text {
    white-space: pre-wrap;  /* Giữ nguyên xuống dòng */
    font-family: inherit;   /* Giữ nguyên font mặc định */
    word-wrap: break-word;  /* Tự động xuống dòng khi quá dài */
}

/* Giới hạn chiều cao danh mục bệnh và hiển thị thanh cuộn */
#category-list {
    max-height: 300px;
    overflow-y: auto;
}

.content-text {
    white-space: pre-wrap;  /* Giữ nguyên xuống dòng */
    font-family: inherit;   /* Giữ nguyên font mặc định */
    word-wrap: break-word;  /* Tự động xuống dòng khi quá dài */
}



#category-list li a {
    text-decoration: none;
    transition: 0.3s;
}

#category-list li a:hover {
    color: yellow;
    font-weight: bold;
}

.register-form {
    background-color: #f8f9fa; /* Nhẹ hơn màu nền để nổi bật */
    padding: 15px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
}
.banner-2 {
    width: 100%;
    position: relative; /* Giữ banner ở vị trí tự nhiên */
    margin-top: 80px; /* Tạo khoảng cách nếu navbar che mất */
    z-index: 1; /* Đảm bảo banner hiển thị phía trên */
}

.banner-2 img {
    width: 100%;
    height: auto;
    display: block; /* Loại bỏ khoảng trắng dư thừa */
}


/* Hiệu ứng ảnh nổi khi hover */
/* Đảm bảo container hiển thị dạng block để chữ nằm dưới ảnh */
.blog-image-container {
    display: flex;
    flex-direction: column; /* Sắp xếp ảnh trên, chữ dưới */
    align-items: center; /* Căn giữa nội dung */
    text-align: center;
    margin-bottom: 20px; /* Khoảng cách giữa ảnh và nội dung dưới */
}
.title-with-underline::after {
    content: "";
    display: block;
    width: 100%; /* Để kéo dài hết dòng */
    height: 2px;
    background-color: #008080; /* Màu xanh tùy chỉnh */
    margin-top: 5px;
}

/* Hiệu ứng ảnh nổi khi hover */
.blog-image-container img {
    transition: transform 0.3s ease-in-out;
}

.blog-image-container img:hover {
    transform: scale(1.05);
}

/* Căn chỉnh dòng chữ dưới ảnh */
.click-to-consult {
    font-size: 16px;
    font-weight: bold;
    color: red;
    margin-top: 10px; /* Khoảng cách giữa ảnh và chữ */
    text-transform: uppercase;
    text-align: center;
    width: 100%; /* Đảm bảo không bị đẩy lệch */
}

/* Khi hover vào dòng chữ */
.click-to-consult a {
    text-decoration: none;
    color: red;
}

.click-to-consult a:hover {
    color: darkred;
    text-decoration: underline;
}
/* Tiêu đề phụ (h3) - chữ đậm & màu đen */
.sub-title {
    font-size: 20px;
    font-weight: bold;
    color: #000; /* Màu đen */
    margin-top: 20px;
    position: relative;
    padding-bottom: 8px; /* Tạo khoảng cách với gạch chân */
}

/* Gạch chân cố định dưới tiêu đề phụ */
.sub-title::after {
    content: "";
    display: block;
    width: 850px; /* Độ dài của gạch chân */
    height: 2.5px;
    background-color: #008080; /* Màu xanh tùy chỉnh */
    position: absolute;
    bottom: 0;
    left: 0;
}



.below-footer {
    text-align: center;
    font-style: italic;
    color: gray;
    font-size: 14px;
    margin-top: 10px;
    padding: 10px 0;
    background-color: #f8f9fa; /* Màu nền nhẹ để tách biệt */
}




/*// phan sdt hotline cam ket dieu tri*/
@media (max-width: 991.98px) {
    .commit-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.4);
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 9999;
    }

    .commit-content {
        background-color: #17881d;
        padding: 20px;
        border-radius: 15px;
        width: 90%;
        max-width: 350px;
        color: white;
        position: relative;
    }

    .commit-header h4 {
        color: #ff4444;
        text-align: center;
        font-weight: bold;
    }

    .commit-header p {
        text-align: center;
        font-weight: bold;
        margin-top: -5px;
    }

    .commit-list {
        margin-top: 10px;
        padding-left: 20px;
    }

    .commit-list li {
        margin-bottom: 8px;
        list-style: none;
    }

    .close-commit {
        position: absolute;
        top: 5px;
        right: 10px;
        background: transparent;
        border: none;
        color: white;
        font-size: 20px;
    }
}



/*=================cuôis trang====================*/

/* Ẩn trên PC, chỉ hiển thị trên mobile */
@media (max-width: 991.98px) {
    .mobile-fixed-buttons {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: space-around;
        padding: 10px 0;
        background-color: rgba(255, 255, 255, 0.9); /* Nền trắng trong suốt nhẹ */
        z-index: 9999; /* Đảm bảo hiển thị trên cùng */
        box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.1); /* Hiệu ứng bóng */
    }

    .mobile-fixed-buttons a {
        padding: 12px;
        font-size: 10px;
        font-weight: bold;
        color: white;
        text-align: center;
        border-radius: 20px;
        text-decoration: none;
        border: 2px solid yellow; /* Viền vàng */
        flex: 1; /* Chia đều khoảng cách giữa các nút */
        margin: 0 5px;
        text-transform: uppercase;
    }

    .btn-chat {
        background-color: #007f5f; /* Xanh lá */
    }

    .btn-commit {
        background-color: #0056b3; /* Xanh dương */
    }

    .btn-hotline {
        background-color: #b30000; /* Đỏ */
    }


    /* ========== Hộp thoại hotline ========== */
    .hotline-modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5); /* Làm mờ nền */
        z-index: 10000; /* Hiển thị trên tất cả */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hotline-content {
        background: white;
        padding: 20px;
        border-radius: 10px;
        text-align: center;
        width: 80%;
        max-width: 300px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    }

    .hotline-content h3 {
        margin-bottom: 15px;
        font-size: 18px;
        font-weight: bold;
    }

    .hotline-btn {
        display: block;
        background: #008000;
        color: white;
        padding: 12px;
        border-radius: 5px;
        margin: 10px 0;
        text-decoration: none;
        font-size: 16px;
        font-weight: bold;
    }

    .close-hotline {
        background: #d9534f;
        color: white;
        padding: 12px;
        border: none;
        border-radius: 5px;
        font-size: 16px;
        font-weight: bold;
        cursor: pointer;
        width: 100%;
    }
}































































/*!* ===================== NAVBAR ===================== *!*/
/*.navbar {*/
/*    background-color: #D6F0FF !important;*/
/*    padding: 10px 0;*/

/*    position: relative; !* Giữ navbar cố định *!*/
/*    z-index: 1000; !* Đảm bảo navbar nổi trên banner *!*/
/*}*/

/*!* Căn giữa nội dung navbar *!*/
/*.navbar-nav {*/
/*    margin: 0 auto;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    gap: 30px;*/
/*}*/

/*!* Định dạng link *!*/
/*.navbar-nav .nav-link {*/
/*    font-weight: bold;*/
/*    color: black !important;*/
/*    padding: 10px 15px;*/
/*    transition: color 0.3s ease-in-out;*/
/*}*/

/*!* Hover *!*/
/*.navbar-nav .nav-link:hover {*/
/*    color: #007bff !important;*/
/*    text-decoration: underline;*/
/*}*/

/*!* ===================== DROPDOWN ===================== *!!* Dropdown mặc định ẩn *!!* ===================== DROPDOWN CẤP 1 ===================== *!*/
/*.dropdown-menu {*/
/*    display: none;*/
/*    position: absolute;*/
/*    background-color: white;*/
/*    border-radius: 5px;*/
/*    border: 1px solid #ccc;*/
/*    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);*/
/*    min-width: 180px;*/
/*    padding: 10px 0;*/
/*}*/

/*!* Khi hover trên desktop, dropdown mở *!*/
/*@media (min-width: 1025px) {*/
/*    .nav-item:hover > .dropdown-menu {*/
/*        display: block;*/
/*    }*/

/*    !* Dropdown cấp 2 mở ngang *!*/
/*    .dropdown-submenu {*/
/*        position: relative;*/
/*    }*/

/*    .dropdown-submenu:hover > .dropdown-menu {*/
/*        display: block;*/
/*        position: absolute;*/
/*        left: 100%;*/
/*        top: 0;*/
/*        margin-left: 10px;*/
/*    }*/
/*}*/

/*!* ===================== DROPDOWN CẤP 2 HIỂN THỊ DỌC TRÊN MOBILE ===================== *!*/
/*@media (max-width: 1024px) {*/
/*    .dropdown-menu {*/
/*        position: static;*/
/*        width: 100%;*/
/*    }*/

/*    !* Giữ dropdown mở khi có focus *!*/
/*    .dropdown:focus-within .dropdown-menu {*/
/*        display: block !important;*/
/*    }*/

/*    .dropdown-submenu {*/
/*        position: relative;*/
/*    }*/

/*    !* Menu con mở khi bấm vào *!*/
/*    .dropdown-submenu:focus-within > .dropdown-menu {*/
/*        display: block !important;*/
/*        position: static;*/
/*        width: 100%;*/
/*        padding-left: 15px;*/
/*    }*/

/*    !* Tạo hiệu ứng mũi tên cho menu con *!*/
/*    .dropdown-toggle::after {*/
/*        content: " ▼";*/
/*        font-size: 12px;*/
/*        float: right;*/
/*    }*/
/*}*/

/*@media (max-width: 991.98px) {*/
/*    body {*/
/*        padding-top: 0 !important; !* ✅ Xoá khoảng trắng không cần thiết *!*/
/*    }*/
/*}*/

/*/////////////////////////////////!**/



/*!* ===================== NAVBAR CHUNG ===================== *!*/
/*@media (max-width: 991.98px) {*/
/*    !* Menu trượt ngang bên trái *!*/
/*    .navbar-collapse {*/
/*        position: fixed !important;*/
/*        top: 70px; !* 👈 CHỈNH PHÙ HỢP VỚI CHIỀU CAO HEADER *!*/
/*        left: 0;*/
/*        width: 280px;*/
/*        height: calc(100% - 70px); !* Chiều cao menu còn lại *!*/
/*        background-color: #ffffff;*/
/*        z-index: 999;*/
/*        padding: 15px 20px;*/
/*        transform: translateX(-100%);*/
/*        transition: transform 0.3s ease;*/
/*        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);*/
/*        overflow-y: auto;*/
/*    }*/

/*    !* Khi mở *!*/
/*    .navbar-collapse.show {*/
/*        transform: translateX(0);*/
/*    }*/

/*    !* Overlay mờ phần còn lại *!*/
/*    .mobile-overlay {*/
/*        display: none;*/
/*        position: fixed;*/
/*        inset: 0;*/
/*        background-color: rgba(0, 0, 0, 0.4);*/
/*        z-index: 998;*/
/*    }*/

/*    !* Menu item *!*/
/*    .navbar-nav {*/
/*        flex-direction: column;*/
/*        gap: 12px;*/
/*    }*/

/*    .nav-link {*/
/*        font-weight: 600;*/
/*        color: #00695c;*/
/*        border-bottom: 1px solid #ddd;*/
/*        padding-bottom: 10px;*/
/*    }*/

/*    .dropdown-menu {*/
/*        position: static !important;*/
/*        background-color: #f7f7f7;*/
/*        margin-left: 15px;*/
/*        margin-top: 5px;*/
/*    }*/

/*    .dropdown-item {*/
/*        padding-left: 20px;*/
/*    }*/
/*}*/

/*!* Đảm bảo submenu sát bên menu cha *!*/
/*.dropdown-submenu {*/
/*    position: relative;*/
/*}*/

/*.dropdown-submenu > .dropdown-menu {*/
/*    display: none;*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 100%;*/
/*    margin-left: -0.2rem; !* ✅ Giảm khoảng trống giữa menu cha & con *!*/
/*    z-index: 9999;*/
/*}*/

/*!* Khi hover vào menu cha thì hiển thị menu con *!*/
/*.dropdown-submenu:hover > .dropdown-menu {*/
/*    display: block;*/
/*}*/

/*!* Ngăn mất khi rê chuột qua vùng nhỏ *!*/
/*.dropdown-submenu > .dropdown-item {*/
/*    white-space: nowrap;*/
/*    padding-right: 2.5rem; !* ✅ Tăng vùng di chuột giữ kết nối *!*/
/*}*/

/*!* Tăng vùng kích hoạt ảo để "giữ chuột" *!*/
/*.dropdown-submenu > .dropdown-menu::before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: -10px;*/
/*    width: 10px;*/
/*    height: 100%;*/
/*}*/

/*@media (max-width: 991.98px) {*/
/*    !* Ẩn navbar mặc định của Bootstrap *!*/
/*    .navbar-collapse {*/
/*        display: none !important;*/
/*    }*/
/*    !* Đẩy nội dung xuống dưới để không bị navbar che khuất *!*/
/*    body {*/
/*        padding-top: 80px; !* Điều chỉnh theo chiều cao navbar *!*/
/*    }*/
/*    !* Layout của mobile navbar *!*/
/*    .mobile-navbar {*/
/*        display: flex;*/
/*        justify-content: space-between;*/
/*        align-items: center;*/
/*        background-color: #ffffff; !* Màu nền của thanh navbar *!*/
/*        padding: 8px 10px;*/
/*        gap: 10px;*/

/*    }*/

/*    !* Nút Menu *!*/
/*    .custom-toggler {*/

/*        border: none;*/
/*        color: black;*/
/*        display: flex;*/
/*        align-items: center;*/
/*        padding: 8px 15px;*/
/*        border-radius: 5px;*/
/*        gap: 5px;*/
/*    }*/

/*    .menu-text {*/
/*        font-size: 14px;*/
/*        font-weight: bold;*/
/*        text-transform: uppercase;*/
/*    }*/

/*    .navbar-toggler-icon {*/
/*        background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAzMCAyMCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48bGluZSB4MT0iMCIgeTE9IjIiIHgyPSIzMCIgeTI9IjIiLz48bGluZSB4MT0iMCIgeTE9IjEwIiB4Mj0iMzAiIHkyPSIxMCIvPjxsaW5lIHgxPSIwIiB5MT0iMTgiIHgyPSIzMCIgeTI9IjE4Ii8+PC9zdmc+");*/
/*        width: 25px;*/
/*        height: 25px;*/
/*    }*/

/*    .logo-title {*/
/*        display: flex;*/
/*        align-items: center;*/
/*        gap: 10px;*/
/*    }*/


/*    .logo-mobile {*/
/*        height: 40px;*/
/*    }*/

/*    .clinic-info {*/
/*        display: flex;*/
/*        flex-direction: column;*/
/*    }*/
/*    .clinic-name {*/
/*        color: yellow;*/
/*        font-size: 14px;*/
/*        font-weight: bold;*/
/*        text-transform: uppercase;*/
/*    }*/
/*    .clinic-slogan {*/
/*        color: white;*/
/*        font-size: 12px;*/
/*        font-style: italic;*/
/*    }*/

/*    !* Chỉnh nút MENU *!*/
/*    .custom-toggler {*/
/*        background-color: #00695c; !* màu xanh đậm *!*/
/*        border: none;*/
/*        border-radius: 5px;*/
/*        padding: 10px;*/
/*        display: flex;*/
/*        align-items: center;*/
/*        justify-content: center;*/
/*    }*/

/*    !* Gói icon + text theo chiều dọc *!*/
/*    .menu-icon-wrapper {*/
/*        display: flex;*/
/*        flex-direction: column;*/
/*        align-items: center;*/
/*    }*/

/*    !* Icon dạng 3 gạch trắng *!*/
/*    .navbar-toggler-icon {*/
/*        width: 25px;*/
/*        height: 20px;*/
/*        background-image: url("data:image/svg+xml;base64,PHN2ZyBmaWxsPSJ3aGl0ZSIgd2lkdGg9IjMwIiBoZWlnaHQ9IjMwIiB2aWV3Qm94PSIwIDAgMzAgMzAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHJlY3QgeT0iNCIgd2lkdGg9IjMwIiBoZWlnaHQ9IjQiIHJ4PSIyIi8+PHJlY3QgeT0iMTMiIHdpZHRoPSIzMCIgaGVpZ2h0PSI0IiByeD0iMiIvPjxyZWN0IHk9IjIyIiB3aWR0aD0iMzAiIGhlaWdodD0iNCIgcng9IjIiLz48L3N2Zz4=");*/
/*        background-repeat: no-repeat;*/
/*        background-position: center;*/
/*        background-size: contain;*/
/*        margin-bottom: 5px;*/
/*    }*/

/*    !* Chữ MENU màu vàng *!*/
/*    .menu-text {*/
/*        font-size: 14px;*/
/*        font-weight: bold;*/
/*        color: yellow;*/
/*        text-transform: uppercase;*/
/*    }*/

/*}*/


/*!* ===================== NAVBAR CHO PC ===================== *!*/

/*!* ===================== NAVBAR CHO MOBILE ===================== *!*/
/*@media (max-width: 991.98px) {*/
/*    !* Đảm bảo navbar-collapse hoạt động khi bấm *!*/
/*    .navbar-collapse {*/
/*        display: none; !* Mặc định ẩn *!*/
/*    }*/

/*    .navbar-collapse.show {*/
/*        display: block !important; !* Khi mở ra *!*/
/*        background-color: #D6F0FF; !* Đổi màu nền menu *!*/
/*        padding: 0px;*/
/*    }*/
/*    !* Đảm bảo navbar luôn hiển thị trên cùng *!*/
/*    .navbar-custom {*/
/*        position: fixed;*/
/*        top: 0;*/
/*        left: 0;*/
/*        width: 100%;*/
/*        z-index: 9999; !* Đảm bảo navbar không bị che *!*/
/*        background-color: #ffffff !important;*/
/*        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); !* Tạo hiệu ứng bóng *!*/
/*    }*/
/*}*/
/*@media (max-width: 991.98px) {*/
/*    .mobile-navbar {*/
/*        height: 60px; !* hoặc 55px tùy bạn *!*/
/*        display: flex;*/
/*        align-items: center;*/
/*        padding: 5px 10px;*/
/*        background-color: white;*/
/*        overflow: hidden;*/
/*    }*/

/*    .logo-container {*/
/*        display: flex;*/
/*        align-items: center;*/
/*        gap: 8px;*/
/*        flex: 1;*/
/*    }*/

/*    .logo-mobile {*/
/*        height: 100%;*/
/*        max-height: 100px; !* Giữ logo không vượt quá header *!*/
/*        width: auto;*/
/*        object-fit: contain;*/
/*    }*/

/*    .clinic-name {*/
/*        font-size: 14px;*/
/*        font-weight: bold;*/
/*        color: #007f3f;*/
/*        text-transform: uppercase;*/
/*        white-space: nowrap;*/
/*    }*/

/*    .menu-text {*/
/*        color: yellow;*/
/*        font-size: 12px;*/
/*        font-weight: bold;*/
/*        text-transform: uppercase;*/
/*    }*/
/*    .clinic-text {*/
/*        display: flex;*/
/*        flex-direction: column;*/
/*        align-items: flex-start; !* dòng đầu căn trái *!*/
/*        font-weight: bold;*/
/*        text-transform: uppercase;*/
/*        color: #007f3f; !* xanh đậm *!*/
/*        font-size: 14px;*/
/*        line-height: 1.2;*/
/*    }*/

/*    .clinic-line-2 {*/
/*        align-self: center; !* căn giữa dòng thứ 2 *!*/
/*        font-size: 22px;*/
/*    }*/
/*    .clinic-line-1 {*/

/*        font-size: 17px;*/
/*    }*/

/*}*/




/*@media (max-width: 991.98px) {*/
/*    .dropdown-menu {*/
/*        display: none;*/
/*        position: static;*/
/*        background-color: #f7f7f7;*/
/*        margin-left: 15px;*/
/*        margin-top: 5px;*/
/*    }*/

/*    .nav-item.dropdown.open > .dropdown-menu,*/
/*    .dropdown-submenu.open > .dropdown-menu {*/
/*        display: block !important;*/
/*    }*/

/*    .dropdown-toggle::after {*/
/*        content: " ▼";*/
/*        float: right;*/
/*        font-size: 12px;*/
/*    }*/
/*}*/


/*////////////////////////////////////////////////////////////////*/





/* ===================== NAVBAR CHUNG ===================== */


/*!* ===================== DROPDOWN DESKTOP ===================== *!*/
/*@media (min-width: 1025px) {*/
/*    .navbar {*/
/*        background-color: #D6F0FF !important;*/
/*        padding: 10px 0;*/
/*        position: relative;*/
/*        z-index: 1000;*/
/*    }*/
/*    .navbar-nav {*/
/*        margin: 0 auto;*/
/*        display: flex;*/
/*        justify-content: center;*/
/*        gap: 30px;*/
/*    }*/
/*    .navbar-nav .nav-link {*/
/*        font-weight: bold;*/
/*        color: black !important;*/
/*        padding: 10px 15px;*/
/*        transition: 0.3s;*/
/*    }*/
/*    .navbar-nav .nav-link:hover {*/
/*        color: #007bff !important;*/
/*        text-decoration: underline;*/
/*    }*/
/*    !* Tăng vùng kích hoạt ảo để "giữ chuột" *!*/
/*    .dropdown-submenu > .dropdown-menu::before {*/
/*        content: "";*/
/*        position: absolute;*/
/*        top: 0;*/
/*        left: -10px;*/
/*        width: 10px;*/
/*        height: 100%;*/
/*    }*/
/*    .dropdown-menu {*/
/*        display: none;*/
/*        position: absolute;*/
/*        background-color: white;*/
/*        border-radius: 5px;*/
/*        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);*/
/*        min-width: 180px;*/
/*        padding: 10px 0;*/
/*    }*/
/*    .dropdown-submenu {*/
/*        position: relative;*/
/*    }*/
/*    .dropdown-submenu:hover > .dropdown-menu {*/
/*        display: block;*/
/*        left: 100%;*/
/*        top: 0;*/
/*        margin-left: 10px;*/
/*    }*/
/*}*/

/*!* ===================== DROPDOWN MOBILE ===================== *!*/
/*@media (max-width: 1024px) {*/
/*    .dropdown-menu {*/
/*        position: static !important;*/
/*        width: 100%;*/
/*        background-color: #f7f7f7;*/
/*        margin-left: 15px;*/
/*    }*/
/*    .dropdown-toggle::after {*/
/*        content: " ▼";*/
/*        font-size: 12px;*/
/*        float: right;*/
/*    }*/
/*    .dropdown:focus-within .dropdown-menu,*/
/*    .dropdown-submenu:focus-within > .dropdown-menu {*/
/*        display: block !important;*/
/*        padding-left: 15px;*/
/*    }*/
/*}*/



/*/////logo menu trên mobile//!**/



/*!* ===================== NAVBAR MOBILE ===================== *!*/
/*@media (max-width: 991.98px) {*/
/*    !* Navbar cố định ở trên cùng *!*/
/*    .navbar-custom {*/
/*        position: fixed;*/
/*        top: 0; !* Cố định navbar ở đầu trang *!*/
/*        left: 0;*/
/*        width: 100%;*/
/*        background-color: #ffffff; !* Màu nền navbar *!*/
/*        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); !* Hiệu ứng bóng *!*/
/*        padding: 10px 0;*/
/*        z-index: 9999; !* Đảm bảo navbar luôn ở trên các phần tử khác *!*/
/*    }*/

/*    !* Logo và tên phòng khám *!*/
/*    .logo-container {*/
/*        display: flex;*/
/*        align-items: center;*/
/*        gap: 8px;*/
/*        flex: 1;*/
/*    }*/

/*    !* Giảm kích thước logo với max-height để tránh logo làm thay đổi chiều cao navbar *!*/
/*    .logo-mobile {*/
/*        max-height: 60px; !* Tăng chiều cao tối đa của logo *!*/
/*        width: auto; !* Giữ tỷ lệ gốc của logo *!*/
/*        object-fit: contain; !* Giữ logo không bị méo *!*/
/*    }*/

/*    !* Tên phòng khám căn giữa *!*/
/*    .clinic-text {*/
/*        display: flex;*/
/*        flex-direction: column;*/
/*        align-items: center; !* Căn giữa chữ *!*/
/*        justify-content: center; !* Căn giữa trong navbar *!*/
/*        font-weight: bold;*/
/*        text-transform: uppercase;*/
/*        color: #007f3f;*/
/*        font-size: 18px; !* Kích thước chữ có thể thay đổi mà không ảnh hưởng đến chiều cao *!*/
/*        line-height: 1.2;*/
/*        flex: 1; !* Lấp đầy không gian còn lại để căn giữa *!*/
/*    }*/

/*    .clinic-name {*/
/*        font-size: 18px; !* Kích thước chữ có thể thay đổi *!*/
/*        font-weight: bold;*/
/*        color: #007f3f;*/
/*        text-transform: uppercase;*/
/*        white-space: nowrap;*/
/*        text-align: center; !* Căn giữa chữ *!*/
/*    }*/

/*    .clinic-line-2 {*/
/*        font-size: 24px; !* Giảm hoặc tăng kích thước dòng thứ 2 *!*/
/*        text-align: center;*/
/*    }*/

/*    .clinic-line-1 {*/
/*        font-size: 21px;*/
/*    }*/

/*    !* Nút menu (Hamburger) *!*/
/*    .navbar-toggler {*/
/*        background-color: #007f3f;*/
/*        border: none;*/
/*        border-radius: 5px;*/
/*        padding: 18px; !* Tăng hoặc giảm kích thước nút mà không thay đổi chiều cao navbar *!*/
/*        display: flex;*/
/*        align-items: center;*/
/*        justify-content: center;*/
/*        flex-direction: column;*/
/*        gap: 3px;*/
/*    }*/

/*    !* Biểu tượng ba gạch của menu *!*/
/*    .navbar-toggler-icon {*/
/*        background-color: #fff;*/
/*        width: 25px; !* Tăng hoặc giảm kích thước biểu tượng *!*/
/*        height: 3px;*/
/*        display: block;*/
/*        margin: 3px 0;*/
/*    }*/

/*    !* Chữ "MENU" *!*/
/*    .menu-text {*/
/*        font-size: 10px; !* Tăng hoặc giảm kích thước chữ "MENU" *!*/
/*        font-weight: bold;*/
/*        text-transform: uppercase;*/
/*        color: yellow;*/
/*        margin-top: 2px;*/
/*    }*/

/*    !* Navbar *!*/
/*    .navbar {*/
/*        background-color: #ffffff !important;*/
/*        padding: 0px 0;*/
/*        position: relative;*/
/*        z-index: 1000;*/
/*    }*/

/*    !* ===================== MENU MỞ TOÀN MÀN HÌNH ===================== *!*/
/*    .navbar-collapse {*/
/*        position: fixed;*/
/*        top: 70px; !* Đẩy menu xuống dưới navbar *!*/
/*        left: 0;*/
/*        width: 100%;*/
/*        height: calc(100% - 60px); !* Chiếm toàn bộ màn hình còn lại *!*/
/*        background-color: #ffffff;*/
/*        box-shadow: 2px 0px 10px rgba(0, 0, 0, 0.2);*/
/*        transform: translateX(-100%);*/
/*        transition: transform 0.3s ease;*/
/*        padding: 20px;*/
/*        z-index: 999;*/
/*        overflow-y: auto; !* Thêm cuộn nếu cần *!*/
/*    }*/

/*    .navbar-collapse.show {*/
/*        transform: translateX(0); !* Hiển thị menu khi mở *!*/
/*    }*/

/*    !* Menu item *!*/
/*    .navbar-nav {*/
/*        flex-direction: column;*/
/*        gap: 12px;*/
/*    }*/

/*    .nav-link {*/
/*        font-weight: 600;*/
/*        color: #00695c;*/
/*        border-bottom: 1px solid #ddd;*/
/*        padding-bottom: 10px;*/
/*    }*/

/*    !* Overlay cho phần còn lại *!*/
/*    .mobile-overlay {*/
/*        display: none;*/
/*        position: fixed;*/
/*        inset: 0;*/
/*        background-color: rgba(0, 0, 0, 0.4);*/
/*        z-index: 998;*/
/*    }*/

/*    .navbar-toggler:focus-within + .mobile-overlay {*/
/*        display: block;*/
/*    }*/
/*}*/
/*!* ==== Dropdown cấp 2 (submenu) cho desktop ==== *!*/
/*.dropdown-submenu {*/
/*    position: relative;*/
/*}*/

/*.dropdown-submenu > .dropdown-menu {*/
/*    top: 0;*/
/*    left: 100%;*/
/*    margin-top: -0.5rem;*/
/*    display: none;*/
/*    position: absolute;*/
/*}*/

/*.dropdown-submenu:hover > .dropdown-menu {*/
/*    display: block;*/
/*}*/

/*!* ==== Dropdown cho mobile (<992px) ==== *!*/
/*@media (max-width: 991.98px) {*/
/*    !* Dropdown cấp 2 hiển thị dạng dọc *!*/
/*    .dropdown-submenu > .dropdown-menu {*/
/*        position: relative !important;*/
/*        top: 0;*/
/*        left: 0;*/
/*        display: none;*/
/*        margin-top: 0;*/
/*    }*/

/*    !* Khi có class .show thì hiển thị *!*/
/*    .dropdown-submenu > .dropdown-menu.show {*/
/*        display: block;*/
/*    }*/

/*    !* Thêm padding để submenu dễ đọc *!*/
/*    .dropdown-submenu > .dropdown-menu > li > a {*/
/*        padding-left: 2rem;*/
/*    }*/


/*}*/
/* ==== MENU CHÍNH ==== */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background-color: #009688;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 0px 0;
}

/* Menu nằm ngang + căn giữa */
.navbar-nav {
    background:#009688;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

/* Item menu */
.navbar-nav li {
    position: relative;
}

/* Link menu */
.navbar-nav li a {
    text-decoration: none;
    display: inline-block;
    padding: 10px 15px;
    color: #ffffff;
    font-weight: bold;
    white-space: nowrap;
    cursor: pointer;
}

/* ==== SUBMENU (ẩn/hiện bằng .open) ==== */

/* Cấp 2 & 3 ẩn mặc định */
.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    flex-direction: column;
    background: #d6f0ff;      /* ✅ Màu xanh giống navbar */
    border: 1px solid #cde5f8; /* Viền nhẹ hơn nếu cần */
    min-width: 200px;
    z-index: 999;
    padding: 10px 0;          /* Thêm khoảng cách bên trong */
    box-shadow: 0 4px 10px rgba(0,0,0,0.1); /* hiệu ứng đổ bóng đẹp */
}


/* Cấp 3 xổ sang phải */
.submenu .submenu {
    top: 0;
    left: 100%;
}

/* Khi có class "open" thì hiển thị submenu */
li.open > .submenu {
    display: flex;
}

/* Submenu link */
.submenu li a {
    font-weight: normal;
    padding: 8px 10px;
    display: block;
    color: #333;
    white-space: nowrap;
}

/* Hover submenu item */
.submenu li a:hover {
    background-color: #14abe1;
}

/* Responsive tối thiểu */
@media screen and (max-width: 768px) {
    .navbar-nav {
        display: none;
        flex-direction: column;
        gap: 15px;
    }
    .clinic-header{
        display: none;
    }
    .navbar {
        display: none;
    }
}























/* Ẩn mặc định trên desktop */
.mobile-header,
.mobile-header-space {
    display: none;
}

/* Hiển thị và xử lý trên mobile */
@media screen and (max-width: 768px) {
    /* Fixed header */
    .mobile-header {
        background-color: #ffffff;
        padding: 10px 15px;
        border-bottom: 1px solid #ccc;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 9999;
        display: block;
        justify-content: space-between;
        align-items: center;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
    }

    .mobile-header-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    /* Logo */
    .mobile-logo {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .mobile-logo img {
        width: auto;
        height: 60px; /* Tăng chiều cao ảnh */
        max-height: 100%; /* Không vượt quá khung cha */
        object-fit: contain;
    }

    .mobile-logo span {
        font-weight: bold;
        font-size: 14px;
        color: #007c3b;
        line-height: 1.2;
        text-transform: uppercase;
    }

    /* Cập nhật cho nút MENU */
    .mobile-menu-btn {
        background-color: #006400; /* Màu nút menu */
        color: #fff;
        font-weight: bold;
        border: none;
        padding: 8px 15px; /* Điều chỉnh padding để nút đẹp hơn */
        border-radius: 12px;
        font-size: 0px; /* Giảm kích thước chữ */
        cursor: pointer;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 55px; /* Điều chỉnh chiều rộng nút */
        height: 55px; /* Điều chỉnh chiều cao để vừa với các phần tử */
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
        gap: 0; /* Loại bỏ khoảng cách giữa các phần tử */
    }

    /* Cập nhật icon để căn giữa và phóng to */
    .menu-icon {
        font-size: 22px; /* Phóng to icon */
        line-height: 1; /* Điều chỉnh line-height để phần tử icon dính sát nhau */
        display: flex;
        justify-content: center;
        align-items: center; /* Căn giữa icon */
    }

    /* Cập nhật chữ "MENU" */
    .menu-text {
        font-size: 12px; /* Giảm kích thước chữ */
        font-weight: bold;
        margin-top: 0; /* Loại bỏ khoảng cách giữa chữ và icon */
        line-height: 1; /* Điều chỉnh line-height để chúng dính lại với nhau */
    }

    /* ✅ Dành cho phần đệm tránh che banner */
    .mobile-header-space {
        display: block;
        height: 80px; /* Đúng với chiều cao .mobile-header */
    }

    .banner {
        margin-top: 62px;
    }

    /* Cập nhật cho .mobile-logo-text */
    .mobile-logo-text {
        display: inline-block;
        text-align: center;
        line-height: 0.2;
    }

    .mobile-logo-text .line-1,
    .mobile-logo-text .line-2 {
        display: block;
        font-weight: bold;
        color: #007c3b;
        font-size: 20px;
        white-space: nowrap;
    }

    .mobile-logo-text .line-2 {
        margin-left: auto;
        margin-right: auto;
        width: max-content;
    }

    /* Menu điều hướng */
    .mobile-nav {
        display: none;
        background-color: #f4f4f4;
        padding: 20px;
        position: fixed;
        top: 0;
        right: 0;
        width: 250px;
        height: 100%;
        z-index: 9998;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease-in-out;
        transform: translateX(100%);
    }

    .mobile-nav.open {
        transform: translateX(0);
    }

    .mobile-nav a {
        display: block;
        padding: 10px 15px;
        text-decoration: none;
        color: #333;
        font-size: 16px;
        font-weight: bold;
        border-bottom: 1px solid #ccc;
        transition: background-color 0.3s ease;
    }

    .mobile-nav a:hover {
        background-color: #006400;
        color: white;
    }

    /* Nút đóng menu */
    .mobile-nav-close {
        position: absolute;
        top: 10px;
        left: 10px;
        font-size: 30px;
        cursor: pointer;
    }


}


#divmorong {
    display: none;
    background-color: #f8f9fa;
    padding: 10px;
    height: 130vh;
}
#divmorong ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
#divmorong ul li {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}
#divmorong ul li a {
    text-decoration: none;
    color: #333;
    display: block;
}


@media screen and (max-width: 768px) {
    .submenu {
        display: none;
        position: relative;
        margin-top: 5px;
        padding-left: 15px;
        background-color: #fff;

        /* ✅ Giới hạn chiều cao và bật cuộn */
        max-height: 300px; /* Điều chỉnh tùy màn hình mobile */
        overflow-y: auto;

        /* ✅ Cuộn mượt và đẹp */
        scrollbar-width: thin; /* Firefox */
        scrollbar-color: #ccc #f0f0f0;
    }

    /* ✅ Cho Chrome, Safari */
    .submenu::-webkit-scrollbar {
        width: 6px;
    }

    .submenu::-webkit-scrollbar-track {
        background: #f0f0f0;
    }

    .submenu::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 4px;
    }


    .submenu li a {
        padding: 8px 0;
        font-size: 14px;
        line-height: 1.4;
        display: block;
        color: #00695c;
        text-decoration: none;
        border-bottom: 1px solid #aad1c2;
    }


}

@media (max-width: 768px) {
    .banner .carousel-inner img {
        width: 100%;
        height: 200px;
        display: block;
    }
}





































 .dropdown-submenu {
     position: relative;
 }

.dropdown-submenu .dropdown-menu {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    margin-top: -5px;
}

.dropdown-submenu:hover .dropdown-menu {
    display: block;
}

/* Đẩy danh mục chuyên khoa xuống 20px */
.specialties-section {
    margin-top: 40px; /* Điều chỉnh khoảng cách theo ý muốn */
}

/* Hiệu ứng đổ bóng cho banner */
.banner img {
    width: 100%;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3); /* Hiệu ứng bóng */
    border-radius: 8px; /* Bo tròn nhẹ */
}


@media (max-width: 768px) {
    .title-with-underline::after {
        width: 100%; /* Chiều rộng full theo tiêu đề */
    }
        .sub-title::after {
            width: 100%; /* Chiều rộng full theo tiêu đề */
        }
}








































 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header và Footer fragments - đảm bảo tương thích */
.header-placeholder {
    background: linear-gradient(135deg, #0a2d6d, #1e88e5);
    color: white;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-placeholder h1 {
    font-size: 28px;
    margin-bottom: 5px;
}

.header-placeholder p {
    font-size: 16px;
    opacity: 0.9;
}

/* Styles cho fragments footer và mobile */
div[th\\:replace*="footer"] {
    margin-top: auto;
}

div[th\\:replace*="mobile"] {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

/* Main content wrapper */
.main-content {
    flex: 1;
    padding: 0;
}

/* Info section */
.info-section {
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fa;
}

.info-decor {
    margin-bottom: 30px;
}

.info-decor img {
    max-width: 100%;
    height: auto;
}

.info-box {
    background: linear-gradient(135deg, #e3f2fd, #f0f8ff);
    border: 2px dashed #1e88e5;
    border-radius: 15px;
    padding: 30px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
    font-size: 16px;
    line-height: 1.8;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.info-box:hover {
    transform: translateY(-2px);
}

.info-box hr {
    border: none;
    border-top: 2px dotted #1e88e5;
    margin: 20px 0;
    opacity: 0.7;
}

.info-box strong {
    color: #0a2d6d;
    font-weight: 700;
}

/* Banner sections */
.banner-section {
    padding: 20px;
    background: white;
}

.banner-promo {
    position: relative;
    text-align: center;
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.banner-promo:hover {
    transform: translateY(-5px);
}

.banner-promo img {
    width: 100%;
    height: auto;
    display: block;
}

.promo-overlay {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
}

.promo-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #00c8f8, #0099cc);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,200,248,0.3);
    border: 2px solid transparent;
}

.btn:hover {
    background: linear-gradient(135deg, #0099cc, #007399);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,200,248,0.4);
}

.btn i {
    font-size: 16px;
}

/* Package section */
.package-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.package-section h2 {
    text-align: center;
    font-size: 32px;
    color: #0a2d6d;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.package-section .note {
    text-align: center;
    margin-bottom: 40px;
    font-size: 18px;
    color: #666;
    font-style: italic;
}

.packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1201px;
    margin: 0 auto;
}

.package {
    background: white;
    border-radius: 20px;
    border: 3px solid transparent;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.package::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #28a745, #20c997);
    transition: all 0.3s ease;
}

.package:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.package h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #0a2d6d;
    font-weight: 600;
}

.price {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #28a745, #20c997);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.package ul {
    text-align: left;
    padding: 0;
    list-style: none;
}

.package ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
    font-size: 15px;
    line-height: 1.5;
}

.package ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 16px;
}

.box-green::before {
    background: linear-gradient(90deg, #28a745, #20c997);
}

.box-green .price {
    background: linear-gradient(135deg, #28a745, #20c997);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.box-purple::before {
    background: linear-gradient(90deg, #9c27b0, #e91e63);
}

.box-purple .price {
    background: linear-gradient(135deg, #9c27b0, #e91e63);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.box-red::before {
    background: linear-gradient(90deg, #e53935, #ff5722);
}

.box-red .price {
    background: linear-gradient(135deg, #e53935, #ff5722);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Footer placeholder - styles dự phòng nếu cần */
.footer-content {
    background: #0a2d6d;
    color: white;
    padding: 40px 20px 20px;
    text-align: center;
}

/* Mobile placeholder - styles dự phòng */
.mobile-content {
    background: #0a2d6d;
    padding: 10px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.mobile-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.mobile-btn {
    flex: 1;
    max-width: 150px;
    padding: 12px;
    background: #00c8f8;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.mobile-btn:hover {
    background: #0099cc;
}

/* Responsive design */
@media (max-width: 768px) {
    .pc-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    .header-placeholder h1 {
        font-size: 24px;
    }

    .header-placeholder p {
        font-size: 14px;
    }

    .info-box {
        padding: 20px;
        font-size: 14px;
    }

    .package-section {
        padding: 40px 15px;
    }

    .package-section h2 {
        font-size: 24px;
    }

    .package-section .note {
        font-size: 16px;
    }

    .packages {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .package {
        padding: 20px;
    }

    .price {
        font-size: 28px;
    }

    .btn {
        font-size: 12px;
        padding: 10px 18px;
    }

    .btn i {
        font-size: 14px;
    }

    .mobile-placeholder {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #0a2d6d;
        padding: 10px;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
        z-index: 1000;
    }

    .mobile-buttons {
        display: flex;
        gap: 10px;
        justify-content: center;
    }

    .mobile-btn {
        flex: 1;
        max-width: 150px;
        padding: 12px;
        background: #00c8f8;
        color: white;
        text-decoration: none;
        border-radius: 25px;
        text-align: center;
        font-weight: 600;
        font-size: 14px;
        transition: all 0.3s ease;
    }

    .mobile-btn:hover {
        background: #0099cc;
    }

    /* Add padding to body to account for mobile footer */
    body {
        padding-bottom: 70px;
    }
}

@media (min-width: 769px) {
    .mobile-only {
        display: none;
    }

    .btn {
        font-size: 18px;
        padding: 16px 32px;
    }

    .btn i {
        font-size: 20px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
.package:nth-child(1) {
    animation: slideUp 0.6s ease-out 0.1s both;
}

.package:nth-child(2) {
    animation: slideUp 0.6s ease-out 0.2s both;
}

.package:nth-child(3) {
    animation: slideUp 0.6s ease-out 0.3s both;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
