@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 100 900;
    ;
    font-display: swap;
    src: url('../fonts/Montserrat-VariableFont_wght.ttf') format('truetype');
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 100 900;
    ;
    font-display: swap;
    src: url('../fonts/PlusJakartaSans-VariableFont_wght.ttf') format('truetype');
}

*,
*::before,
*::after {
    transition: all .3s ease-in-out;
}

:root {
    --color1: #0086d7;
    --color2: #22bfef;
    --color3: #0086d7;
    --color4: #22bfef;
    --bg-color: #f0f8ff;
    --secondary-bg: #e1f3fd;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --card-bg: #ffffff;
}

html {
    font-size: 62.5%;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #666666;
    margin: 0;
}

p {
    margin-block-start: 0;
    margin-block-end: 0;
}

ul {
    margin-block-start: 0;
    margin-block-end: 0;
    padding-inline-start: 0;
}

ul,
li,
ol {

    list-style: none;

}

a {
    text-decoration: none;
    color: #000;
}

img {
    max-width: 100%;
}

.max-w {
    max-width: 1920px;
    margin: 0 auto;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.min-w {
    max-width: 1350px;
    margin: 0 auto;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.container {
    position: relative;
}

.left {
    float: left;
}

.right {
    float: right;
}

.clear {
    clear: both;
}

.clearfix:after {
    content: " ";
    visibility: hidden;
    display: block;
    clear: both;
}

.border-box {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.divclr:after {
    content: '';
    clear: both;
    display: block;
}

.clear-ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}


/*HEADER*/
header .header-bottom .content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0;
}

/* CSS MENU */
.header-menu>ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    height: 65px;
}

.header-menu>ul>li>a {
    padding: 4px 15px;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    font-size: 1.8rem;
    font-weight: 500;
    text-transform: uppercase;
}

.cta-contact {
    font-family: 'Montserrat', sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 8px;
    background: #ffcb13;
    color: #2a2f38;
    font-weight: bold;
    font-size: 1.6rem;
    min-width: 154px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.cta-contact i {
    margin-left: 10px;
}

.cta-contact::after {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 100%;
    background: #0086d7;
    z-index: -1;
    transition: all .3s ease;
}

.cta-contact:hover {
    color: #fff;
}

.cta-contact:hover::after {
    width: 100%;
    transition: all .3s ease-out;
}

/* Mũi tên chỉ xuống cho Menu cấp 1 */
.header-menu ul li.node-menu>a::after,
.header-menu ul li.node-menu-vertical>a::after {
    content: '\f107';
    font-family: "Font Awesome 6 Free", "FontAwesome";
    font-weight: 900;
    margin-left: 8px;
    font-size: 13px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.header-menu ul li.node-menu:hover>a::after,
.header-menu ul li.node-menu-vertical:hover>a::after {
    transform: rotate(180deg);
}

/* GIAO DIỆN DROPDOWN 2 CẤP */
.header-menu .item {
    position: relative;
}

.header-menu .submenu li {
    position: relative;
    list-style: none;
    width: 100%;
}


.header-menu .submenu,
.header-menu .submenu .sub-submenu {
    display: none;
    position: absolute;
    background: #fff;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 8px 0;
    margin: 0;
    z-index: 100;
    min-width: 250px;
    opacity: 0;
}

/* Vị trí Menu Cấp 1 */
.header-menu .submenu {
    top: 100%;
    left: 0;
    margin-top: 15px;
}

/* Vị trí Menu Cấp 2 */
.header-menu .submenu .sub-submenu {
    top: -5px;
    left: 100%;
    margin-left: 2px;
}

/* Cầu nối vô hình để chuột không bị trượt mất menu */
.header-menu .submenu::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height: 15px;
}

.header-menu .submenu .sub-submenu::before {
    content: '';
    position: absolute;
    top: 0;
    left: -15px;
    width: 15px;
    height: 100%;
}

/* Kích hoạt hiển thị (Hover) kèm Animation */
.header-menu .item:hover>.submenu {
    display: block;
    animation: fadeInDown 0.25s ease forwards;
}

.header-menu .submenu li:hover>.sub-submenu {
    display: block;
    animation: fadeInRight 0.25s ease forwards;
}

/* Định dạng Link Menu con */
.header-menu .submenu li {
    border-bottom: none;
}

.header-menu .submenu li a,
.header-menu .submenu .sub-submenu li a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 12px 20px;
    font-size: 15px;
    color: #475569;
    font-weight: 500;
    transition: all 0.2s ease;
    text-transform: none;
    text-align: left;
}

/* Hiệu ứng rê chuột trượt ngang */
.header-menu .submenu li a:hover,
.header-menu .submenu .sub-submenu li a:hover {
    color: var(--color1);
    background-color: #f8fafc;
    padding-left: 26px;
}

/* Icon mũi tên đôi ở đầu mỗi dòng */
.header-menu .submenu li a i.fa-angles-right {
    margin-right: 8px;
    font-size: 11px;
    color: #cbd5e1;
    transition: all 0.2s;
}

.header-menu .submenu li a:hover i.fa-angles-right {
    color: var(--color1);
}

/* Mũi tên chỉ báo mục cha (Bên góc phải) */
.header-menu .submenu li.has-child>a {
    justify-content: space-between;
}

.header-menu .submenu li.has-child>a::after {
    content: '\f105';
    font-family: "Font Awesome 6 Free", "FontAwesome";
    font-weight: 900;
    margin-left: 10px;
    font-size: 12px;
    color: #cbd5e1;
    transition: all 0.2s ease;
}

.header-menu .submenu li.has-child:hover>a::after {
    color: var(--color1);
    transform: translateX(3px);
}

/* Keyframes Animation */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*-------------END CSS MENU-----------------*/

/*---------------END HEADER------------------------*/

/*TRANG CHU*/

/* DỊCH VỤ */
section.service {
    font-family: 'Montserrat', sans-serif;
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
    margin-top: 60px;
}

.service-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    background: linear-gradient(-45deg, #0072ff, #00c6ff, #0052d4, #00a8ff);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    border-radius: 1.5rem;
    /* rounded-3xl */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    /* shadow-2xl */
    overflow: hidden;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.bg-decoration {
    position: absolute;
    width: 16rem;
    height: 16rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(64px);
    pointer-events: none;
    z-index: 1;
}

.decoration-top {
    top: -6rem;
    left: -6rem;
}

.decoration-bottom {
    bottom: -6rem;
    right: -6rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    z-index: 10;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.service-item:last-child {
    border-right: none;
}

.service-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.icon-wrapper {
    position: relative;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.icon-wrapper i {
    font-size: 3rem;
    color: #ffffff;
}

.service-item:hover .icon-wrapper {
    transform: translateY(-8px) scale(1.1);
    filter: drop-shadow(0 10px 15px rgba(255, 255, 255, 0.4));
}

.icon-wrapper::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

.service-item:hover .icon-wrapper::after {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0.3;
}

.text-center {
    text-align: center;
}

.sub-title {
    display: block;
    color: #e0f2fe;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
    transition: color 0.3s ease;
}

.service-item:hover .sub-title {
    color: #ffffff;
}

.main-title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    margin: 0;
}

/*-------------END DỊCH VỤ-----------------*/


/* DANH MỤC */
.category-section {
    width: 100%;
    background-color: var(--card-bg);
    border-radius: 24px;
    box-sizing: border-box;
    margin-bottom: 60px;
}

.category-section .section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--secondary-bg);
}

.category-section .section-title {
    font-size: 24px;
    color: var(--text-main);
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
}

.category-section .title-icon {
    width: 44px;
    height: 44px;
    background-color: var(--secondary-bg);
    color: var(--color1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.category-section .category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.category-section .category-item a {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    background-color: #f8fafc;
    color: var(--text-main);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-section .category-item a::after {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 20px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.category-section .category-item a:hover {
    background-color: var(--color1);
    color: #ffffff;
    border-color: var(--color1);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 134, 215, 0.15);
    padding-left: 26px;
}

.category-section .category-item a:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/*-------------END DANH MỤC-----------------*/


/* ƯU ĐIỂM */
.healthcare-hero {
    background-color: var(--bg-color);
    width: 100%;
    padding: 40px;
    border-radius: 24px;
    box-sizing: border-box;
    display: flex;
    gap: 60px;
    align-items: center;
    background-image: radial-gradient(circle at 100% 0%, #ffffff 0%, transparent 50%),
        radial-gradient(circle at 0% 100%, var(--secondary-bg) 0%, transparent 50%);
    margin-bottom: 60px;
}

.hero-content {
    flex: 1;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--secondary-bg);
    color: var(--color1);
    font-weight: 700;
    font-size: 14px;
    border-radius: 30px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 40px;
    color: var(--text-main);
    line-height: 1.2;
    margin: 0 0 20px 0;
    font-weight: 800;
}

.hero-title span {
    color: var(--color1);
    display: block;
    margin-top: 8px;
    font-size: 48px;
}

.hero-desc {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 90%;
}

.cta-button {
    background-color: var(--color1);
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 134, 215, 0.2);
}

.cta-button:hover {
    background-color: var(--color2);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(34, 191, 239, 0.3);
}

.hero-features {
    flex: 1.2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.feature-card {
    background-color: var(--card-bg);
    padding: 30px 24px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 134, 215, 0.08);
    border-color: var(--secondary-bg);
}

.icon-box {
    width: 56px;
    height: 56px;
    background-color: var(--secondary-bg);
    color: var(--color1);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.feature-card:hover .icon-box {
    background-color: var(--color1);
    color: white;
    transform: scale(1.1);
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
    margin: 0 0 10px 0;
}

.feature-text {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/*-------------END ƯU ĐIỂM-----------------*/

/* CƠ SỞ VẬT CHẤT */
.facilities-section {
    width: 100%;
    background-color: var(--card-bg);
    border-radius: 24px;
    box-sizing: border-box;
    margin-bottom: 60px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 32px;
    color: var(--text-main);
    font-weight: 800;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    margin: 0;
}

.facilities-section .gallery-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 30px 0;
}

.facilities-section .gallery-item {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform: scale(0.9);
    opacity: 0.6;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 350px;
}

.facilities-section .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Mặc định khi chưa chuột vào khối -> Ảnh ở giữa (số 2) sẽ nổi lên */
.facilities-section .gallery-container:not(:hover) .gallery-item:nth-child(2) {
    transform: scale(1.05);
    opacity: 1;
    z-index: 2;
    box-shadow: 0 15px 35px rgba(0, 134, 215, 0.2);
}

/* Khi rê chuột vào trực tiếp một ảnh bất kỳ -> Ảnh đó sẽ nổi lên */
.facilities-section .gallery-item:hover {
    transform: scale(1.05) !important;
    opacity: 1 !important;
    z-index: 2;
    box-shadow: 0 15px 35px rgba(0, 134, 215, 0.2);
}

/*-------------END CƠ SỞ VẬT CHẤT-----------------*/


/* BÀI VIẾT MỚI */
.blog-section {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 60px;
}

.blog-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.blog-section .section-title {
    font-size: 32px;
    color: var(--text-main);
    font-weight: 800;
    margin: 0 0 10px 0;
}

.blog-section .section-subtitle {
    font-size: 32px;
    color: var(--text-muted);
    font-weight: 600;
    margin: 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    text-decoration: none;
}

.blog-thumb {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.blog-card:hover .blog-thumb img {
    transform: scale(1.08);
}

.blog-badge {
    background-color: var(--color2);
    color: white;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 6px;
    align-self: flex-start;
    margin-top: -18px;
    margin-left: 20px;
    position: relative;
    z-index: 2;
}

.blog-content {
    padding: 20px 10px 0 10px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
    margin: 0 0 12px 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
    color: var(--color1);
}

.blog-excerpt {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.blog-readmore {
    font-size: 15px;
    font-weight: 600;
    color: var(--color1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-readmore {
    color: var(--color2);
}

/*-------------END BÀI VIẾT MỚI-----------------*/


/* FORM ĐẶT HẸN */
.booking-section {
    width: 100%;
    display: flex;
    background-color: var(--card-bg);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    margin-bottom: 60px;
}

.booking-info {
    flex: 0 0 32%;
    background: linear-gradient(135deg, var(--color2) 0%, var(--color1) 100%);
    padding: 40px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.booking-info::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.05) 0px, rgba(255, 255, 255, 0.05) 2px, transparent 2px, transparent 15px);
    pointer-events: none;
}

.booking-info p {
    position: relative;
    z-index: 2;
}

.booking-info p:nth-child(1) {
    font-size: 14px;
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.booking-info p:nth-child(2) {
    font-size: 26px;
    font-weight: 800;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.booking-info p:nth-child(3) {
    font-size: 16px;
    margin: 0;
    font-weight: 500;
    color: #e0f2fe;
}

.booking-form-wrapper {
    flex: 1;
    padding: 40px;
    display: flex;
    align-items: center;
    background-color: #ffffff;
    background-image: radial-gradient(circle at top right, var(--secondary-bg) 0%, transparent 50%);
}

.booking-form {
    width: 100%;
    display: flex;
    gap: 15px;
    align-items: center;
}

.booking-form input[type="text"],
.booking-form input[type="tel"] {
    flex: 1;
    height: 52px;
    padding: 0 20px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    outline: none;
    transition: all 0.3s ease;
    background-color: #f8fafc;
    color: var(--text-main);
}

.booking-form input[type="text"]:focus,
.booking-form input[type="tel"]:focus {
    border-color: var(--color2);
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(34, 191, 239, 0.15);
}

.booking-form input[type="submit"] {
    height: 52px;
    padding: 0 35px;
    background-color: var(--color1);
    color: white;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.booking-form input[type="submit"]:hover {
    background-color: var(--color2);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(34, 191, 239, 0.3);
}

/*-------------END FORM ĐẶT HẸN-----------------*/

/*---------------------END TRANG CHỦ----------------------------*/


/*TRANG LOẠI*/

.category-title h1 {
    font-size: 42px;
    color: #1e293b;
    margin: 0;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 1.3;
}

.trangloai {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: transparent;
    /* Sẽ đổi màu ở mobile nếu cần */
}

.trangloai .content {
    padding: 2rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.trangloai .list-item {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.trangloai .item {
    display: flex;
    flex-direction: column;
    background: var(--card-bg);
}

.trangloai .img-wrap {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    display: block;
}

.trangloai .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    vertical-align: middle;
}

.trangloai .item:hover .img-wrap img,
.trangloai .item:active .img-wrap img {
    transform: scale(1.08);
}

.trangloai .text {
    padding-top: 16px;
    display: flex;
    flex-direction: column;
}

.trangloai .text a {
    text-decoration: none;
}

.trangloai .text h3 {
    font-size: 18px;
    color: var(--text-main);
    font-weight: 600;
    margin: 0 0 10px 0;
    line-height: 1.4;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.trangloai .item:hover .text h3,
.trangloai .item:active .text h3 {
    color: var(--color1);
}

.trangloai .des {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* --- PHÂN TRANG --- */
.phantrang {
    font-weight: 500;
    text-align: center;
    margin: 40px 0 60px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.phantrang span,
.phantrang a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    border: solid 1px #cbd5e1;
    color: var(--text-main);
    border-radius: 6px;
    min-width: 40px;
    height: 40px;
    padding: 0 10px;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.phantrang span,
.phantrang a:hover,
.phantrang a:active {
    color: var(--color1);
    border-color: var(--color1);
    background: var(--secondary-bg);
}

/*--------------END PHÂN TRANG-------------------*/

/*---------------------END TRANG LOẠI----------------------------*/

/*TRANG CHI TIẾT*/
.article-detail .container {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 2rem;
}

.article-detail .container::before,
.article-detail .container::after {
    display: none !important;
}

.article-detail .left {
    flex: 1;
    max-width: 900px;
}

.article-detail .right {
    position: relative;
    width: 400px;
    flex-shrink: 0;
    padding: 2rem 0;
}

.article-detail .title {
    color: var(--text-main);
    font-size: 40px;
    margin-bottom: 1.8rem;
    text-transform: capitalize;
    font-weight: bold;
}

.article-detail .date-view {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.2rem;
    color: #999;
    padding: 1rem 0;
    border-top: 1px solid #ccc;
    margin: 1.5rem 0;
}

.article-detail .date-view span {
    color: #289159;
}

.article-detail .content {
    font-size: 1.6rem;
    text-align: left;
    line-height: 1.6;
}

.article-detail .content p {
    margin: 1em 0;
}

.article-detail .content img {
    max-width: 100%;
    height: auto;
}

.article-detail h2 {
    font-size: 16px;
    text-transform: uppercase;
    display: block;
    border-left: 5px solid var(--color3);
    color: var(--color3);
    padding: 10px 10px 10px 15px;
    margin: 20px 0 10px 0;
    background: #f8f9fa;
}

.article-detail a>em {
    color: #e5262b;
    font-style: normal;
}

.article-detail table {
    border-collapse: collapse;
    border: 2px solid #000;
    width: 100%;
    margin-bottom: 15px;
}

.article-detail table th {
    font-weight: bold;
    background: #eee;
    padding: 8px;
}

.article-detail table td {
    border: 1px solid #000;
    padding: 8px;
}

.article-detail blockquote {
    background: #f9f9f9;
    border-left: 5px solid #ccc;
    margin: 1.5em 0;
    padding: 1em;
    font-style: italic;
    position: relative;
}

/* Sidebar - Bài viết liên quan */
.sticky-sidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 20px;
}

.relate-title {
    font-size: 22px;
    color: #333;
    margin: 0 0 16px 0;
    padding-bottom: 12px;
    border-bottom: 1px solid #e2e8f0;
    font-weight: 600;
}

.relate-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.relate-item a {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-decoration: none;
}

.relate-img {
    width: 150px;
    min-width: 150px;
    flex-shrink: 0;
    aspect-ratio: 4 / 3;
    border-radius: 6px;
    overflow: hidden;
}

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

.relate-item a:hover .relate-img img {
    transform: scale(1.05);
}

.relate-info {
    flex: 1;
}

.relate-heading {
    font-size: 15px;
    color: var(--text-main);
    margin: 0;
    font-weight: 600;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease;
}

.relate-item a:hover .relate-heading {
    color: var(--color1);
}

/*------------------------------END TRANG CHI TIẾT------------------------*/

/* FOOTER */
footer {
    background-color: #fff;
    border-top: 1px solid #cccccc;
}

.lienhe .box {
    display: flex;
    justify-content: space-between;
    margin: 1rem 0;
    padding: 3rem 0;
    color: #2a2f38;
    font-size: 1.6rem;
}

.lienhe .mini-title {
    text-transform: uppercase;
    font-weight: bold;
}

.lienhe .contact {
    width: 30%;
    padding: 0 3rem 0 1rem;
    border-right: 1px solid var(--color3);
}

.lienhe .map-ft {
    width: 45%;
    padding: 0 3rem;
    border-right: 1px solid var(--color3);
}

.lienhe .pages-ft {
    width: 25%;
    padding: 0 1rem 0 3rem;
    border-right: none;
}

.lienhe .contact>div {
    padding: 1rem 0;
}

.footer-name {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    color: #272b2f;
}

.lienhe .map-ft .mini-title {
    padding-bottom: 1.5rem;
}

/* CSS cho danh sách các trang (Pages) ở Footer */
.footer-page-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-page-list li {
    padding: 10px 0;
    border-bottom: 1px dashed #e2e8f0;
}

.footer-page-list li:last-child {
    border-bottom: none;
}

.footer-page-list li a {
    color: #475569;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.footer-page-list li a:hover {
    color: var(--color1);
    transform: translateX(5px);
}

.footer-page-list li a i {
    color: var(--color1);
    font-size: 1.2rem;
}

.footer-fixed {
    background: var(--color1);
    padding: 0.9rem;
}

.footer-fixed .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.ft-form form {
    display: flex;
    gap: 5px;
}

.ft-form input {
    padding: 0.9rem;
    border: none;
    border-radius: 4px;
    outline: none;
    font-size: 1.2rem;
}

.ft-form input[type="tel"] {
    width: 350px;
}

.ft-form input[type="submit"] {
    width: 63px;
    background-color: #facc15;
    color: #0f172a;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    padding: 0.9rem 0;
}

.ft-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 2.1rem;
    margin-left: 4rem;
}

.ft-phone span {
    font-weight: bold;
}

/*-----------------END FOOTER--------------------*/
/* WIDGET */
/* WIDGET MINIAPP (TRẮC NGHIỆM AI) */
.miniapp-widget {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fdfdfd;
    border: 2px solid transparent;
    border-radius: 100px;
    padding: 10px 24px 10px 10px;
    margin: 35px 0;
    transition: all 0.3s ease;
    text-decoration: none !important;
    cursor: pointer;
    clear: both;
}

.miniapp-widget:hover {
    transform: scale(1.02);
    background: #ffffff;
}

.miniapp-main {
    display: flex;
    align-items: center;
    gap: 20px;
}

.miniapp-icon {
    width: 60px;
    height: 60px;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 22px;
    flex-shrink: 0;
    animation: pulseAI 2s infinite;
}

@keyframes pulseAI {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.1);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

.miniapp-info h4 {
    margin: 0 !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    text-transform: uppercase;
}

.miniapp-info p {
    margin: 4px 0 0 !important;
    font-size: 13px !important;
    color: #64748b !important;
    line-height: 1.4 !important;
}

.miniapp-btn {
    color: white !important;
    font-size: 13px;
    font-weight: 800;
    padding: 12px 25px;
    border-radius: 50px;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.2s;
}

.miniapp-widget:hover .miniapp-btn {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

/* WIDGET TREATMENT (LIỆU TRÌNH) */
.treatment-widget {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-left: 6px solid #4f46e5;
    border-radius: 20px;
    padding: 18px 24px;
    margin: 35px 0;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none !important;
    cursor: pointer;
    clear: both;
}

.treatment-widget:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 20px 25px -5px rgba(79, 70, 229, 0.1);
}

.widget-main {
    display: flex;
    align-items: center;
    gap: 20px;
}

.widget-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4f46e5, #818cf8);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    flex-shrink: 0;
}

.widget-info h4 {
    margin: 0 !important;
    font-size: 17px !important;
    color: #1e293b !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
}

.widget-info p {
    margin: 4px 0 0 !important;
    font-size: 13px !important;
    color: #64748b !important;
    line-height: 1.4 !important;
}

.widget-btn {
    background: #f1f5f9;
    font-size: 11px;
    font-weight: 800;
    padding: 10px 18px;
    border-radius: 10px;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.2s;
}

.treatment-widget:hover .widget-btn {
    background: currentColor;
    -webkit-text-fill-color: #ffffff;
}

/* Responsive cho điện thoại (Cả 2 Widget) */
@media (max-width: 640px) {
    .treatment-widget {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 15px;
    }

    .widget-btn {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }

    .miniapp-widget {
        flex-direction: column;
        border-radius: 24px;
        padding: 20px;
        text-align: center;
    }

    .miniapp-main {
        flex-direction: column;
    }

    .miniapp-btn {
        width: 100%;
        margin-top: 10px;
    }
}

/*---------------END WIDGET ----------------*/

/* BREADCRUMB */
.breadcrumb_main {
    padding: 2rem 0;
    background-color: #ffffff;
    font-family: sans-serif;
}

.breadcrumb_main .content {
    margin: 0 auto;
}

.breadcrumb-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.breadcrumb {
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-main, #0f172a);
}

.breadcrumb a {
    color: var(--text-main, #0f172a);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: var(--color1, #0086d7);
}

.breadcrumb:not(:last-child)::after {
    content: "»";
    margin: 0 8px;
    color: var(--text-muted, #64748b);
    font-weight: 400;
}

.breadcrumb .current-page {
    font-weight: 400;
    color: var(--text-main, #0f172a);
}

/*------------END BREADCRUM--------------*/

/* ========================================================
   RESPONSIVE (BẢN MOBILE) 
   Tự động kích hoạt khi màn hình < 992px (Mobile & Tablet)
   ======================================================== */
@media screen and (max-width: 991px) {

    /* --- CẤU TRÚC CHUNG MOBILE --- */
    html,
    body {
        max-width: 100vw;
        font-size: 16px;
    }

    .min-w,
    .max-w {
        min-width: unset;
        max-width: 100%;
        padding: 0 15px;
    }

    #website,
    .wrapper {
        width: 100%;
    }

    /*--- BANNER MOBILE ---*/
    #banner img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
    }

    /* --- HEADER MOBILE --- */
    #header-mobile {
        width: 100%;
        max-width: 100%;
        background-color: #ffffff;
        padding: 10px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        border-radius: 0;
        box-sizing: border-box;
        position: sticky;
        top: 0;
        z-index: 9999;
    }

    #header-mobile .header-menu i {
        font-size: 35px;
        color: var(--color2);
    }

    #header-mobile .header-logo img {
        height: 34px;
        display: block;
    }

    #header-mobile .header-btn .btn-dathen {
        background-color: #facc15;
        color: #0f172a;
        font-weight: 700;
        font-size: 14px;
        padding: 8px 16px;
        border-radius: 8px;
        text-decoration: none;
        display: inline-block;
        box-shadow: 0 4px 6px rgba(250, 204, 21, 0.2);
        transition: all 0.2s ease;
    }

    #header-mobile .header-btn .btn-dathen:active {
        transform: scale(0.95);
        background-color: #eab308;
    }

    header:not(#header-mobile) {
        display: none;
    }

    /*--- MENU MOBILE ---*/
    .mm-menu_theme-white {
        --mm-color-text: #1e293b;
        --mm-color-background: #ffffff;
        --mm-color-border: #f1f5f9;
        font-family: 'Plus Jakarta Sans', Arial, sans-serif;
    }

    .mm-navbar {
        background: linear-gradient(135deg, var(--color1), var(--color2)) !important;
        color: #ffffff !important;
        border-bottom: none !important;
        height: 65px !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    .mm-navbar__title {
        color: #ffffff !important;
        font-weight: 800 !important;
        font-size: 16px !important;
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }

    .mm-btn_prev::before {
        border-color: #ffffff !important;
        border-width: 2px !important;
        width: 10px !important;
        height: 10px !important;
    }

    .mm-listview {
        margin-top: 0px !important;
    }

    .mm-listitem {
        border-bottom: 1px solid #f1f5f9 !important;
    }

    .mm-listitem:last-child {
        border-bottom: none !important;
    }

    .mm-listitem>a,
    .mm-listitem>span {
        padding: 16px 24px !important;
        font-size: 15px !important;
        font-weight: 600 !important;
        color: #334155 !important;
        transition: all 0.2s;
    }

    .mm-listitem>a:active,
    .mm-listitem>a:focus {
        background-color: #f8fafc !important;
        color: #4f46e5 !important;
    }

    .mm-btn_next::after {
        border-color: #cbd5e1 !important;
        border-width: 2px !important;
        width: 8px !important;
        height: 8px !important;
        right: 24px !important;
    }

    .mm-panel_opened:not(#mm-1) .mm-listitem>a {
        font-weight: 500 !important;
        color: #475569 !important;
    }

    /*--- FOOTER MOBILE ---*/
    .lienhe-mobile {
        background-color: #fff;
        border-top: 1px solid #ccc;
        padding: 1rem;
        margin-bottom: 60px;
    }

    .lienhe-mobile .box {
        margin: 1rem 0;
        border-radius: 15px;
    }

    .lienhe-mobile .mini-title {
        font-size: 1.2rem;
        text-transform: uppercase;
        font-weight: bold;
    }

    .lienhe-mobile .contact>div {
        display: flex;
        align-items: center;
        padding: 10px 0;
    }

    .lienhe-mobile .contact>div:first-child {
        justify-content: center;
    }

    .lienhe-mobile .img {
        width: 18px;
        margin-right: 1rem;
        color: var(--color1);
        text-align: center;
    }

    .lienhe-mobile p {
        font-size: 1rem;
        margin: 0;
        line-height: 1.4;
    }

    .lienhe-mobile .hl {
        font-weight: bold;
    }

    .map-ft {
        width: 100%;
        margin-top: 1rem;
    }

    .map-ft .mini-title {
        padding-bottom: 1rem;
    }

    .map-ft img,
    .map-ft iframe {
        width: 100%;
        border-radius: 10px;
        display: block;
        border: none;
    }

    /* Thêm CSS block Pages cho mobile */
    .pages-ft {
        width: 100%;
        margin-top: 2rem;
    }

    .pages-ft .mini-title {
        padding-bottom: 1rem;
    }

    .menu-ft {
        display: none;
    }

    /*--- FOOTER FIXED MOBILE ---*/
    .footer-fixed-mobile {
        width: 100%;
        background: var(--color1);
        z-index: 1000;
        position: fixed;
        bottom: 0;
        left: 0;
    }

    .formfixed {
        display: flex;
        gap: 8px;
        padding: 10px;
        box-sizing: border-box;
    }

    .formfixed input,
    .formfixed button {
        height: 40px;
        border: none;
        border-radius: 6px;
        outline: none;
        font-family: inherit;
    }

    .formfixed input {
        flex: 1;
        padding: 0 10px;
        font-size: 14px;
        min-width: 0;
    }

    .formfixed button {
        padding: 0 16px;
        background: #facc15;
        color: #0f172a;
        font-weight: bold;
        cursor: pointer;
        transition: opacity 0.2s;
    }

    .formfixed button:active {
        opacity: 0.8;
    }

    /*--- DỊCH VỤ MOBILE ---*/
    .service {
        margin: 40px 0 !important;
    }

    .service-container {
        padding: 20px;
        border-radius: 0;
    }

    .service-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        background-color: var(--color1, #0086d7);
        padding: 8px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 134, 215, 0.2);
    }

    .service-item {
        background-color: #ffffff;
        padding: 25px 10px;
        border-radius: 14px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        transition: transform 0.2s ease;
        border: none;
        box-shadow: none;
    }

    .service-item:active {
        transform: scale(0.96);
    }

    .service-item:hover {
        background-color: #fff;
    }

    .service-item .icon-wrapper {
        width: 56px;
        height: 56px;
        font-size: 26px;
        margin: 0 auto 15px auto;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--secondary-bg, #e1f3fd);
        color: var(--color1, #0086d7);
        border-radius: 16px;
    }

    .service-item .text-content .sub-title {
        font-size: 11px;
        color: #64748b;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-weight: 600;
        display: block;
        margin-bottom: 5px;
    }

    .service-item .text-content .main-title {
        font-size: 15px;
        font-weight: 800;
        color: var(--color1, #0086d7);
        margin: 0;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .icon-wrapper i {
        color: var(--color1);
    }

    .bg-decoration {
        display: none;
    }

    /*--- DANH MỤC MOBILE ---*/
    .category-section-mobile {
        width: 100%;
        max-width: 100%;
        background-color: var(--card-bg);
        border-radius: 20px;
        padding: 30px 20px;
        box-sizing: border-box;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
        margin-bottom: 60px;
    }

    .category-section-mobile .section-header {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 24px;
        padding-bottom: 16px;
        border-bottom: 1px solid var(--secondary-bg);
    }

    .category-section-mobile .section-title {
        font-size: 20px;
        color: var(--text-main);
        font-weight: 800;
        margin: 0;
        text-transform: uppercase;
    }

    .category-section-mobile .title-icon {
        width: 36px;
        height: 36px;
        background-color: var(--secondary-bg);
        color: var(--color1);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
    }

    .category-section-mobile .category-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .category-section-mobile .category-item a {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 12px 10px;
        background-color: #f8fafc;
        color: var(--text-main);
        text-decoration: none;
        font-size: 13px;
        font-weight: 600;
        border-radius: 10px;
        border: 1px solid #e2e8f0;
        transition: all 0.3s ease;
        line-height: 1.4;
    }

    .category-section-mobile .category-item a:active {
        background-color: var(--color1);
        color: #ffffff;
        border-color: var(--color1);
    }

    /*--- ƯU ĐIỂM MOBILE ---*/
    .healthcare-hero {
        flex-direction: column;
        padding: 40px 20px;
        border-radius: 0;
        margin: 0;
    }

    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-desc {
        max-width: 100%;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-title span {
        font-size: 36px;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }

    /*--- CƠ SỞ VẬT CHẤT MOBILE ---*/
    .facilities-section-mobile {
        width: 100%;
        max-width: 100%;
        background-color: var(--card-bg);
        border-radius: 24px;
        padding: 40px 20px;
        box-sizing: border-box;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.03);
        margin-bottom: 60px;
    }

    .facilities-section-mobile .section-header {
        text-align: center;
        margin-bottom: 30px;
    }

    .facilities-section-mobile .section-title {
        font-size: 26px;
        color: var(--text-main);
        font-weight: 800;
        margin: 0 0 12px 0;
        line-height: 1.3;
    }

    .facilities-section-mobile .section-subtitle {
        font-size: 14px;
        color: var(--text-muted);
        margin: 0;
    }

    .facilities-section-mobile .gallery-container {
        display: flex;
        flex-direction: row;
        gap: 16px;
        height: 300px;
        width: 100%;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 10px;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .facilities-section-mobile .gallery-container::-webkit-scrollbar {
        display: none;
    }

    .facilities-section-mobile .gallery-item {
        flex: 0 0 85%;
        border-radius: 16px;
        overflow: hidden;
        position: relative;
        scroll-snap-align: center;
    }

    .facilities-section-mobile .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    /*--- BÀI VIẾT MỚI MOBIE ---*/
    .blog-section-mobile {
        width: 100%;
        max-width: 100%;
        margin-bottom: 60px;
        padding: 20px;
        box-sizing: border-box;
    }

    .blog-section-mobile .section-header {
        text-align: center;
        margin-bottom: 20px;
    }

    .blog-section-mobile .section-title {
        font-size: 26px;
        color: var(--text-main);
        font-weight: 800;
        margin: 0 0 5px 0;
    }

    .blog-section-mobile .section-subtitle {
        font-size: 20px;
        color: var(--text-muted);
        font-weight: 600;
        margin: 0;
    }

    .blog-section-mobile .blog-grid {
        display: flex;
        flex-direction: column;
        gap: 35px;
    }

    .blog-section-mobile .blog-card {
        display: flex;
        flex-direction: column;
        text-decoration: none;
    }

    .blog-section-mobile .blog-thumb {
        width: 100%;
        aspect-ratio: 16/10;
        border-radius: 16px;
        overflow: hidden;
    }

    .blog-section-mobile .blog-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .blog-section-mobile .blog-badge {
        background-color: var(--color2);
        color: white;
        font-size: 13px;
        font-weight: 600;
        padding: 6px 14px;
        border-radius: 6px;
        align-self: flex-start;
        margin-top: -16px;
        margin-left: 15px;
        position: relative;
        z-index: 2;
    }

    .blog-section-mobile .blog-content {
        padding: 15px 5px 0 5px;
    }

    .blog-section-mobile .blog-title {
        font-size: 18px;
        font-weight: 700;
        color: var(--text-main);
        margin: 0 0 10px 0;
        line-height: 1.4;
    }

    .blog-section-mobile .blog-excerpt {
        font-size: 14px;
        color: var(--text-muted);
        margin: 0 0 15px 0;
        line-height: 1.5;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .blog-section-mobile .blog-readmore {
        font-size: 15px;
        font-weight: 600;
        color: var(--color1);
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

    /*--- FORM ĐẶT HẸN MOBILE ---*/
    .booking-section-mobile {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        background-color: var(--card-bg);
        overflow: hidden;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
        margin-bottom: 60px;
    }

    .booking-section-mobile .booking-info {
        background: linear-gradient(135deg, var(--color2) 0%, var(--color1) 100%);
        padding: 35px 20px;
        text-align: center;
        color: white;
        position: relative;
    }

    .booking-section-mobile .booking-info::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        top: 0;
        background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.05) 0px, rgba(255, 255, 255, 0.05) 2px, transparent 2px, transparent 15px);
        pointer-events: none;
    }

    .booking-section-mobile .booking-info p {
        position: relative;
        z-index: 2;
    }

    .booking-section-mobile .booking-info p:nth-child(1) {
        font-size: 13px;
        margin: 0 0 5px 0;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .booking-section-mobile .booking-info p:nth-child(2) {
        font-size: 24px;
        font-weight: 800;
        margin: 0 0 5px 0;
        line-height: 1.3;
    }

    .booking-section-mobile .booking-info p:nth-child(3) {
        font-size: 15px;
        margin: 0;
        color: #e0f2fe;
    }

    .booking-section-mobile .booking-form-wrapper {
        padding: 30px 20px;
        background-color: #ffffff;
    }

    .booking-section-mobile .booking-form {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .booking-section-mobile .booking-form input[type="text"],
    .booking-section-mobile .booking-form input[type="tel"] {
        width: 100%;
        height: 52px;
        flex: none;
        padding: 0 20px;
        border: 1px solid #e2e8f0;
        border-radius: 12px;
        font-size: 15px;
        font-family: inherit;
        box-sizing: border-box;
        background-color: #f8fafc;
        outline: none;
        transition: all 0.3s ease;
    }

    .booking-section-mobile .booking-form input[type="text"]:focus,
    .booking-section-mobile .booking-form input[type="tel"]:focus {
        border-color: var(--color2);
        background-color: #ffffff;
        box-shadow: 0 0 0 4px rgba(34, 191, 239, 0.15);
    }

    .booking-section-mobile .booking-form input[type="submit"] {
        width: 100%;
        height: 52px;
        background-color: var(--color1);
        color: white;
        font-size: 16px;
        font-weight: 700;
        border: none;
        border-radius: 12px;
        cursor: pointer;
        margin-top: 5px;
        transition: all 0.3s ease;
    }

    .booking-section-mobile .booking-form input[type="submit"]:hover {
        background-color: var(--color2);
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(34, 191, 239, 0.3);
    }

    /* --- TRANG LOẠI --- */

    .category-title h1 {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 12px;
    }

    .trangloai {
        font-family: sans-serif;
        padding: 0 15px;
        width: 100%;
        box-sizing: border-box;
        background-color: var(--card-bg);
    }

    .trangloai .content {
        padding: 0;
    }

    .trangloai .list-item {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .trangloai .img-wrap {
        border-radius: 8px;
    }

    .trangloai .item:active .img-wrap img {
        transform: scale(1.05);
    }

    .trangloai .text {
        padding-top: 12px;
    }

    .trangloai .text h3 {
        margin-bottom: 8px;
    }

    .trangloai .des {
        font-size: 14px;
        line-height: 1.5;
    }

    .phantrang {
        margin: 30px 0 40px 0;
        gap: 6px;
    }

    .phantrang span,
    .phantrang a {
        border-radius: 4px;
        min-width: 36px;
        height: 36px;
        padding: 0 8px;
        font-size: 14px;
    }

    /* --- TRANG CHI TIẾT ---*/
    #post {
        padding: 10px;
    }

    h1.post-title {
        color: var(--text-main);
        border-bottom: 1px solid var(--color1);
        padding-bottom: 10px;
        text-transform: capitalize;
        font-size: 28px;
    }

    .post-content p {
        font-size: 16px;
        margin-bottom: 1rem;
        text-align: left;
    }

    .post-content h2 {
        font-size: 16px;
        text-transform: uppercase;
        display: block;
        border-left: 5px solid var(--color3);
        position: relative;
        color: var(--color3);
        padding: 10px 10px 10px 15px;
        margin: 10px 0;
        background: #f8f9fa;
    }

    .post-content div {
        max-width: 100% !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        overflow-x: auto !important;
    }

    .post-content img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }

    .post-content iframe,
    .post-content video {
        max-width: 100% !important;
    }

    .related-post {
        margin: 20px 0;
    }

    .related-post .tieude {
        text-transform: capitalize;
        color: #2a2f38;
        font-size: 28px;
        padding-bottom: 12px;
        border-bottom: 1px solid #e2e2e2;
        font-weight: bold;
    }

    .related-post .list-bv {
        display: flex;
        flex-direction: column;
    }

    .related-post .bv-items {
        padding-top: 10px;
        margin-top: 10px;
        display: flex;
        gap: 3%;
        align-items: flex-start;
    }

    .related-post .thumb {
        flex: 0 0 35%;
    }

    .related-post .info {
        flex: 1;
    }

    .related-post .thumb img {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 4px;
    }

    .related-post .info h4 {
        margin: 0;
        font-size: 16px;
        font-weight: normal;
        line-height: 1.4;
        color: var(--text-main, #0f172a);
    }

    /* --- BREADCRUMB MOBILE --- */
    .breadcrumb_main {
        padding: 1rem 0;
        background-color: #ffffff;
        font-family: sans-serif;
    }

    .breadcrumb_main .content {
        width: 100%;
        box-sizing: border-box;
        padding: 0 15px;
    }

    .breadcrumb-wrap {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        margin-bottom: 8px;
    }

    .breadcrumb {
        display: flex;
        align-items: center;
        font-size: 13px;
        font-weight: 600;
        color: var(--text-main, #0f172a);
    }

    .breadcrumb a {
        color: var(--text-main, #0f172a);
        text-decoration: none;
    }

    .breadcrumb a:active {
        color: var(--color1, #0086d7);
    }

    .breadcrumb:not(:last-child)::after {
        content: "»";
        margin: 0 5px;
        color: var(--text-muted, #64748b);
        font-weight: 400;
    }

    .breadcrumb .current-page {
        font-weight: 400;
        color: var(--text-main, #0f172a);
    }
}