* { /* Chọn tất cả các phần tử */
    margin: 0; /* Xóa lề mặc định của tất cả các phần tử */
    padding: 0; /* Xóa padding mặc định */
    box-sizing: border-box; /* Tính kích thước phần tử gồm cả border và padding */
}

body, html { /* Chọn body và html */
    font-family: 'Roboto', Arial, Helvetica, sans-serif;  /* Font chữ mặc định là Roboto */
}

/* Giữ riêng font cho logo */
.logo-text {
    font-family: 'Sansita Swashed', cursive; /* Font đặc trưng cho logo */
    font-weight: 800; /* Extrabold */ /* Chữ đậm (Extra bold) */
    font-size: 2rem; /* Cỡ chữ lớn */
    color: #217a57; /* Màu xanh lá đậm */
    letter-spacing: 1px; /* Tăng khoảng cách giữa các ký tự */
}

/* Giữ riêng font cho "Follow us" */
.social-title {
    font-family: 'Sansita Swashed', cursive;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px; /* Khoảng cách dưới với phần tử tiếp theo */
    color: #fff;
}

/* Các thành phần khác sẽ kế thừa font Roboto từ body, html */

body {
    line-height: 1.6; /* Khoảng cách dòng dễ đọc */
    color: #333;
}

.container { /* Căn giữa nội dung */
    max-width: 1200px; /* Giới hạn chiều rộng tối đa */
    margin: 0 auto;  /* Căn giữa nội dung */
    padding: 0 20px; /* Padding hai bên */
}

/* Header */
.header {   
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); /* Đổ bóng nhẹ bên dưới */
    position: sticky; /* Giữ cố định khi cuộn */
    top: 0; /* Dính vào đỉnh trình duyệt */
    z-index: 1000; /* Lớp hiển thị cao hơn các phần khác */
}

.header .container { /* Căn giữa nội dung */
    display: flex; /* Sắp xếp con theo chiều ngang */
    align-items: center; /* Căn giữa theo chiều dọc */
    justify-content: space-between; /* Căn hai đầu trái phải */
    height: 80px; /* Chiều cao header */
    position: relative; /* Cho phép định vị con bên trong */
}

.logo { /* Logo */
    display: flex;
    align-items: center;
    gap: 12px;  /* Khoảng cách giữa icon và text */
}

.logo-img { /* Ảnh logo */
    width: 48px; /* Chiều rộng ảnh logo */
    height: 48px;
    object-fit: contain;  /* Không bị méo hình */
}

.desktop-nav .nav-link,
.mobile-nav-link { /* Liên kết menu */
    font-family: 'Roboto', Arial, Helvetica, sans-serif; /* Font chữ thống nhất */
    font-weight: 800; /* Extrabold */
    color: #217a57; /* Xanh chủ đạo */
    text-transform: none; /* Giữ nguyên kiểu chữ */
    font-size: 1.1rem; /* Cỡ chữ */
    transition: color 0.3s; /* Hiệu ứng chuyển màu khi hover */
}

.desktop-nav .nav-link:hover,
.desktop-nav .nav-link.active,
.mobile-nav-link:hover,
.mobile-nav-link.active { /* Hiệu ứng hover/active cho link */
    color: #14543b; /* Màu xanh đậm hơn khi hover/active */
}

.desktop-nav { 
    display: flex;
    gap: 32px;
}

.nav-link { /* Link menu */
    text-decoration: none; /* Bỏ gạch dưới */
    color: #374151;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover { /* Hiệu ứng hover */
    color: #0f766e;
}

.mobile-menu-btn { /* Nút hamburger cho mobile */
    display: none; /* Ẩn đi mặc định (sẽ hiện ở mobile) */
    background: none; /* Không nền /*
    border: none; /* Không viền */
    cursor: pointer; /* Trỏ chuột dạng bấm được */
    padding: 8px;
}

.hamburger { /* Hamburger icon */
    display: flex;
    flex-direction: column; /* Các dòng hamburger nằm dọc */
    gap: 4px;
}

.line { /* Mỗi dòng hamburger */
    width: 24px;
    height: 3px;
    background: #315242;
    transition: 0.3s;
}

.mobile-nav { /* Menu mobile */
    display: none;
    position: absolute; /* Định vị theo cha tương đối */
    top: 100%; /* Xuống dưới header */
    right: 20px;  /* Căn phải */
    background: white;
    border-radius: 8px; /* Bóng */
    box-shadow: 0 10px 25px rgba(0,0,0,0.15); /* Ánh sáng */
    padding: 16px 0; /* Padding trên dưới */
    min-width: 200px;   /* Chiều rộng tối thiểu */
}

.mobile-nav.active { /* Khi có class active thì hiển thị */
    display: block;  /* Khi thêm class active thì hiển thị */
}

.mobile-nav-link {  /* Link trong menu mobile */
    display: block; /* Hiển thị dạng khối */
    padding: 12px 24px; /* Padding trái phải */
    text-decoration: none; /* Bỏ gạch dưới */
    color: #315242;     /* Màu chữ */
    font-weight: bold; /* Chữ đậm */
    font-size: 18px;
    transition: background 0.3s; /* Hiệu ứng chuyển màu nền khi hover */
}

.mobile-nav-link:hover { /* Hiệu ứng hover cho link mobile */
    background: #f3f4f6;
}

/* Hero Section */
.hero {
    width: 100%; /* Chiều rộng tối đa */
    height: 600px; 
    background: url('/image/background service.png') center center/cover no-repeat;     /* Ảnh nền */
    padding: 0;
    margin: 0;
}

.hero-alternate { /* Hero khác */
    width: 100%;
    height: 600px;
    background-color: #dbe9db;
    display: flex;  /* Sắp xếp con theo chiều dọc */
    flex-direction: column; /* Sắp xếp theo chiều dọc */
    justify-content: center; /* Căn giữa theo chiều dọc */
    align-items: center; /* Căn giữa theo chiều ngang */
    text-align: center; /* Căn giữa chữ */
    padding: 0 20px; 
    box-sizing: border-box; /* Tính padding vào kích thước tổng thể */
}

.hero-alternate h1 { /* Tiêu đề trong hero khác */
    font-size: 2.5rem; 
    font-weight: 700; 
    color: #3a6b4f;
    margin-bottom: 16px;
    font-family: 'Sansita Swashed', cursive; /* Font chữ đặc trưng */
}

.hero-alternate p { /* Mô tả trong hero khác */
    font-size: 1.2rem;
    color: #000;
    max-width: 600px;
    margin-bottom: 32px; /* Khoảng cách xuống dòng */
    line-height: 1.4;
}

.online-booking-btn {   /* Nút đặt lịch trực tuyến */
    background-color: white;
    border: none; /* Không có đường viền */
    border-radius: 24px; /* Bo tròn góc */
    padding: 12px 24px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: background-color 0.3s ease;
}

.online-booking-btn:hover { /* Hiệu ứng hover cho nút đặt lịch */
    background-color: #f0f0f0;
}

.btn-icon { /* Biểu tượng trong nút */
    width: 24px;
    height: 24px;
    object-fit: contain; /* Không bị méo hình */
}

.hero-arrow { /* Mũi tên chỉ xuống */
    width: 100%;
    text-align: center; /* Căn giữa */
    margin-bottom: 24px; /* Khoảng cách xuống dòng */
}

.hero-arrow img { /* Hình ảnh mũi tên */
    width: 48px;
    height: auto;
    display: inline-block; /* Hiển thị dạng khối */
}

.hero-text h1 { /* Tiêu đề trong hero */
    font-size: 2.5rem;
    margin-bottom: 10px; /* Khoảng cách dưới */
}

.hero-text p { /* Mô tả trong hero */   
    font-size: 1.2rem;
}


.hero-title { /* Tiêu đề hero */
    font-size: 3rem;
    font-weight: bold; /* Chữ đậm */
    margin-bottom: 32px; /* Khoảng cách xuống */
}

.hero-subtitle { /* Tiêu đề phụ hero */
    font-size: 1.25rem;
    margin-bottom: 48px;
    opacity: 0.9; /* Mờ chữ */
}

.therapy-cards { /* Thẻ dịch vụ trị liệu */
    display: grid; /* Hiển thị dạng lưới */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));    /* Lưới tự động điều chỉnh */
    gap: 24px;  /* Khoảng cách giữa các thẻ */
    max-width: 1000px;
    margin: 0 auto 64px;
}

.therapy-card {      /* Thẻ dịch vụ trị liệu */
    position: relative;
    border-radius: 12px; /* Bo tròn góc */
    padding: 24px;
    color: white;
    cursor: pointer;
    transition: transform 0.3s; /* Hiệu ứng chuyển động khi hover */
    overflow: hidden; /* Ẩn phần tràn */
    min-height: 200px; /* Chiều cao tối thiểu */
}

.therapy-card:hover { /* Hiệu ứng hover cho thẻ dịch vụ */
    transform: scale(1.05); /* Phóng to nhẹ khi hover */
}

.therapy-card.individual { /* Thẻ dịch vụ trị liệu cá nhân */
    background: #059669;
}

.therapy-card.couples {     /* Thẻ dịch vụ trị liệu cặp đôi */
    background: #0d9488;
}

.therapy-card.teen { /* Thẻ dịch vụ trị liệu thanh thiếu niên */
    background: #ea580c;
}

.card-content { /* Nội dung thẻ dịch vụ */
    position: relative; /* Vị trí tương đối */
    z-index: 10; /* Trước khi background */
}

.card-content h3 { /* Tiêu đề thẻ dịch vụ */
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.card-content p { /* Mô tả thẻ dịch vụ */
    font-size: 0.875rem;
    opacity: 0.9; /* Mờ chữ */
}

.card-bg { /* Nền thẻ dịch vụ */
    position: absolute; /* Vị trí tuyệt đối */
    inset: 0;   /* Đặt đầy đủ */
}

.card-bg img { /* Ảnh nền thẻ dịch vụ */
    width: 100%;
    height: 100%;
    object-fit: cover; /* Không bị méo hình */
    opacity: 0.8; /* Mờ ảnh nền */
} 

.therapy-card.individual .card-bg::after {          /* Hiệu ứng nền thẻ dịch vụ cá nhân */
    content: ''; /* Tạo một phần tử */
    position: absolute; 
    inset: 0; 
    background: #059669;
    opacity: 0.6; 
}

.therapy-card.couples .card-bg::after {     /* Hiệu ứng nền thẻ dịch vụ cặp đôi */
    content: '';
    position: absolute;
    inset: 0;
    background: #0d9488;
    opacity: 0.6;
}

.therapy-card.teen .card-bg::after {   /* Hiệu ứng nền thẻ dịch vụ thanh thiếu niên */
    content: '';
    position: absolute;
    inset: 0;
    background: #ea580c;
    opacity: 0.6;
}

.scroll-indicator { /* Chỉ báo cuộn */
    margin-top: 64px;
}

.scroll-circle { /* Hình tròn chỉ báo cuộn */
    width: 32px;
    height: 32px;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    animation: bounce 2s infinite; /* Hiệu ứng nhảy */
}

@keyframes bounce { /* Hiệu ứng nhảy */
    0%, 20%, 50%, 80%, 100% { 
        transform: translateY(0); /* Vị trí ban đầu */
    }
    40% {
        transform: translateY(-10px); /* Nhảy lên */
    }
    60% {
        transform: translateY(-5px); /* Nhảy xuống */
    }
}

/* Mission Section */
.mission {
    background: #f9fafb;
    padding: 64px 0;
    text-align: center; /* Xác định vị trí văn bản */
}

.section-title {
    font-size: 2.5rem;  /* Cỡ chữ tiêu đề */
    font-weight: bold;
    color: #047857;
    margin-bottom: 32px; /* Khoảng cách dưới */
}

.mission-text {
    font-size: 1.125rem;
    color: #6b7280; 
    max-width: 1000px;  /* Giới hạn chiều rộng */
    margin: 0 auto; /* Căn giữa */
    line-height: 1.7; /* Khoảng cách dòng */
}

/* About Section */
.about {
    background: white;
    padding: 64px 0;
}

.about .section-title { /* Xác định vị trí tiêu đề */
    text-align: center;
    margin-bottom: 16px;
}

.divider { /* Đường phân cách */
    width: 96px;
    height: 4px;
    background: #059669;
    margin: 0 auto 48px;
}

.about-content { /* Nội dung */
    display: flex;
    gap: 48px;
    align-items: center;
    justify-content: center;
}

.about-visual { /* Phần hình ảnh */
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-visual img { /* Hình ảnh */
    width: 340px;
    max-width: 90vw;
    border-radius: 32px;
    box-shadow: 0 8px 32px rgba(33, 122, 87, 0.18);
    display: block;
    margin: 0 auto;
}

.about-text { /* Nội dung văn bản */
    flex: 1; /* Chiều rộng */
}

.about-text p { /* Văn bản */
    color: #6b7280;
    margin-bottom: 24px;
    line-height: 1.7;
}

.skills-box { /* Hộp kỹ năng */
    background: #fff7ed;
    padding: 24px; /* Padding trong hộp */
    border-radius: 8px; /* Bo tròn góc */
}

.skills-box h3 { /* Tiêu đề */
    color: #ea580c;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.skills-box ul { /* Danh sách kỹ năng */
    list-style: none; /* Bỏ dấu đầu dòng */
}

.skills-box li { /* Mục kỹ năng */
    color: #6b7280;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.skills-box li::before { /* Dấu đầu dòng */
    content: '•';
    color: #ea580c;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.about-visual img { /* Hình ảnh */
    width: 440px;
    max-width: 100%;
    height: auto;
    border-radius: 32px;
    box-shadow: 0 8px 32px rgba(33, 122, 87, 0.18);
    display: block;
    margin: 0 auto;
    border: 4px solid #e6f4ee;
    transition: box-shadow 0.3s;
}

.about-visual img:hover { /* Hiệu ứng hover cho hình ảnh */
    box-shadow: 0 12px 48px rgba(33, 122, 87, 0.28); /* Tăng độ bóng khi hover */
}

/* Services Section */
.services {
    background: #f9fafb;
    padding: 64px 0;
}

.services .section-title { /* Tiêu đề phần dịch vụ */
    text-align: center; /* Đặt tiêu đề ở giữa */
    margin-bottom: 16px;
}

.services-grid { /* Lưới dịch vụ */
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Tạo lưới tự động */
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card { /* Thẻ dịch vụ */
    position: relative;
    border-radius: 12px;
    padding: 24px;
    color: white;
    cursor: pointer;
    transition: transform 0.3s; /* Hiệu ứng chuyển động khi hover */
    overflow: hidden; /* Ẩn phần tràn */
    min-height: 200px;  /* Chiều cao tối thiểu */
} 

.service-card:hover {
    transform: scale(1.05);
}

.service-card.individual {
    background: #059669;
}

.service-card.couples {
    background: #0d9488;
}

.service-card.teen {
    background: #ea580c;
}

.service-card .card-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.6;
}

.service-card.individual .card-bg::after {
    background: #059669;
}

.service-card.couples .card-bg::after {
    background: #0d9488;
}

.service-card.teen .card-bg::after {
    background: #ea580c;
}

.images-grid {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 40px;
}

.service-image-link img {
    width: 340px;
    height: 240px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.service-image-link img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

/* Team Section */
.team {
    background: white;
    padding: 64px 0;
}

.team .section-title {
    text-align: center;
    margin-bottom: 16px;
}

/* --- TEAM SECTION --- */
.team-slider-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.team-slider {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    width: 100%;
    justify-items: center;
    align-items: stretch;
}

@media (max-width: 1200px) {
    .team-slider {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 900px) {
    .team-slider {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        justify-items: center !important;
    }
    .team-member {
        max-width: 95vw;
    }
}
@media (max-width: 600px) {
    .team-slider {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.team-member {
    background: #fff;
    border-radius: 16px;
    padding: 20px 12px 16px 12px;
    box-shadow: 0 2px 12px rgba(33, 122, 87, 0.10);
    text-align: center;
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.25s, box-shadow 0.25s;
    color: #217a57;
    text-decoration: none !important;
}

.team-member:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 10px 25px rgba(33, 122, 87, 0.18); 
}

.member-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    margin: 0 auto 14px;
    overflow: hidden;
    border: 3px solid #e5e7eb;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 8px 0 6px 0;
    color: #217a57;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
}

.team-member p {
    font-size: 0.98rem;
    color: #4b5563;
    margin: 0;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    line-height: 1.5;
}

/* Slider buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: 2px solid #059669;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    color: #059669;
    box-shadow: 0 2px 8px rgba(33, 122, 87, 0.10);
}

.slider-btn-prev {
    left: -24px;
}
.slider-btn-next {
    right: -24px;
}

@media (max-width: 900px) {
    .slider-btn {
        width: 38px;
        height: 38px;
        top: 40%;
        z-index: 10;
        background: #fff;
        border: 2px solid #059669;
        box-shadow: 0 2px 8px rgba(33, 122, 87, 0.10);
    }
    .slider-btn-prev {
        left: 0;
    }
    .slider-btn-next {
        right: 0;
    }
}
@media (max-width: 600px) {
    .slider-btn {
        width: 32px;
        height: 32px;
        top: 35%;
    }
    .slider-btn-prev {
        left: 0;
    }
    .slider-btn-next {
        right: 0;
    }
}

/* --- FOOTER --- */
.footer {
    background-color: #065f46;
    color: white;
    padding: 3rem 0;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.footer-left {
    text-align: left;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
}

.footer-title {
    font-family: 'Sansita Swashed', cursive;
    font-size: 1.5rem;
    font-weight: bold;
    font-style: 2rem;
}

.footer-subtitle {
    font-size: 1.25rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-item i {
    width: 1.25rem;
}

.footer-right {
    text-align: right;
}

.social-links {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.social-link {
    color: white;
    font-size: 1.5rem;
    transition: color 0.2s, transform 0.2s;
}

.social-link:hover {
    color: #a7f3d0;
    transform: translateY(-2px);
}

.footer-copyright {
    border-top: 1px solid #047857;
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-copyright p {
    color: #a7f3d0;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-left {
        text-align: center;
    }
    .footer-right {
        text-align: center;
    }
    .social-links {
        justify-content: center;
    }
    .footer-brand {
        justify-content: center;
    }
}

/* About, Services, Team section mobile tối ưu */
@media (max-width: 900px) {
    .about-content,
    .services-grid {
        flex-direction: column !important;
        align-items: center !important;
        gap: 24px !important;
    }
    .about-visual img,
    .service-image-link img {
        width: 95vw !important;
        max-width: 340px !important;
        height: auto !important;
    }
    .team-member {
        max-width: 90vw;
    }
}

/* Footer mobile tối ưu */
@media (max-width: 900px) {
    .footer-grid {
        flex-direction: column;
        align-items: center;
        gap: 24px;
        text-align: center;
    }
    .footer-left, .footer-right {
        align-items: center !important;
        text-align: center !important;
        padding: 0;
        min-width: unset;
    }
    .footer-brand {
        justify-content: center;
    }
    .footer-brand-text {
        margin-left: 0;
        margin-top: 12px;
    }
    .footer-social {
        justify-content: center;
        gap: 24px;
    }
    .footer-logo {
        width: 40px;
        height: 40px;
    }
    .footer-title {
        font-size: 1.3rem;
    }
}

/* Tối ưu cho iPhone nhỏ */
@media (max-width: 480px) {
    .container {
        padding: 0 4px;
    }
    .footer-logo {
        width: 32px;
        height: 32px;
    }
    .footer-title, .logo-text {
        font-size: 1.1rem;
    }
    .footer-social-link {
        font-size: 1.3rem;
    }
    .team-member {
        padding: 12px 4px;
    }
}

/* --- NAVBAR RESPONSIVE --- */
@media (max-width: 900px) {
    .desktop-nav {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        margin-left: auto;
    }
    .mobile-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #217a57;
        z-index: 1001;
        border-radius: 0 0 12px 12px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        padding: 12px 0;
    }
    .mobile-nav.active {
        display: flex;
    }
    .mobile-nav-link {
        color: #fff;
        padding: 18px 0;
        font-size: 1.15rem;
        border-bottom: 1px solid #e6f4ee22;
        text-align: center;
        text-decoration: none;
        font-family: 'Roboto', Arial, Helvetica, sans-serif;
        font-weight: 700;
    }
}
@media (min-width: 901px) {
    .mobile-menu-btn,
    .mobile-nav {
        display: none !important;
    }
}

.hero-section {
    position: relative;
    width: 100vw;
    max-width: 100%;
    height: 600px;
    overflow: hidden;
    background: #217a57;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0;
    z-index: 1;
    transition: opacity 1s cubic-bezier(.4,0,.2,1);
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-slide.active {
    opacity: 1;
    z-index: 2;
    pointer-events: auto;
}
.hero-bg {
    width: 100vw;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.hero-content-slide {
    background: #315242; /* hoặc màu nền bạn muốn */
    width: 100vw;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-content {
    width: 100vw;
    max-width: 100vw;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: none;
    color: #fff;
    text-align: center;
    padding: 0 16px;
}
.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.hero-subtitle {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #e6f4ee;
}
@media (max-width: 900px) {
    .hero-section { height: 260px; }
    .hero-title { font-size: 1.5rem; }
}
@media (max-width: 600px) {
    .hero-section {
        height: 220px !important;
        min-height: 180px !important;
        max-height: none !important;
        display: flex !important;
        align-items: stretch !important;
        justify-content: center !important;
        padding: 0 !important;
    }
    .hero-slide,
    .hero-content-slide,
    .hero-content {
        position: absolute !important;
        top: 0; left: 0;
        width: 100vw !important;
        height: 100% !important;
        min-height: unset !important;
        max-height: none !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 6px !important;
        text-align: center !important;
        background: none !important;
    }
    .hero-title {
        font-size: 1.1rem !important;
        margin-bottom: 0.5rem !important;
    }
    .hero-subtitle {
        font-size: 0.95rem !important;
        margin-bottom: 1.1rem !important;
    }
    .btn-booking-hero {
        font-size: 1rem !important;
        padding: 0.7rem 1.1rem !important;
        margin-top: 1rem !important;
        width: 90vw !important;
        max-width: 340px !important;
        min-width: 120px !important;
        white-space: normal !important;
        display: inline-flex !important;
        justify-content: center !important;
    }
    .hero-content .container {
        padding: 0 !important;
        max-width: 100vw !important;
    }
}

.fade-in-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(.4,0,.2,1), transform 0.8s cubic-bezier(.4,0,.2,1);
}
.fade-in-element.visible {
    opacity: 1;
    transform: none;
}

.btn-booking-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 40px;
    background: linear-gradient(90deg, #2ecc71 0%, #27ae60 100%);
    color: #fff;
    border: none;
    box-shadow: 0 6px 24px rgba(46,204,113,0.18);
    transition: background 0.3s, transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    letter-spacing: 1px;
    margin-top: 1.5rem;
}
.btn-booking-hero i {
    font-size: 1.6rem;
    margin-right: 0.7rem;
}
.btn-booking-hero:hover, .btn-booking-hero:focus {
    background: linear-gradient(90deg, #27ae60 0%, #2ecc71 100%);
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 12px 32px rgba(46,204,113,0.25);
    color: #fff;
    text-decoration: none;
}

/* --- DESKTOP: Đẩy nút ra ngoài hơn --- */
@media (min-width: 1201px) {
    .team-slider-container {
        position: relative;
    }
    .slider-btn-prev {
        left: -56px !important; /* Đẩy ra ngoài hơn */
        top: 50%;
        transform: translateY(-50%);
    }
    .slider-btn-next {
        right: -56px !important; /* Đẩy ra ngoài hơn */
        top: 50%;
        transform: translateY(-50%);
    }
}

/* --- IPAD: Đặt nút ở giữa hai member hai bên --- */
@media (max-width: 1200px) and (min-width: 901px) {
    .slider-btn {
        width: 44px;
        height: 44px;
        top: 50%;
        transform: translateY(-50%);
    }
    .slider-btn-prev {
        left: -28px !important;
    }
    .slider-btn-next {
        right: -28px !important;
    }
}

/* --- MOBILE & TABLET: Đặt nút sát lề, căn giữa chiều cao slider --- */
@media (max-width: 900px) {
    .slider-btn {
        width: 38px;
        height: 38px;
        top: 50% !important;
        transform: translateY(-50%);
    }
    .slider-btn-prev {
        left: 0 !important;
    }
    .slider-btn-next {
        right: 0 !important;
    }
}
@media (max-width: 600px) {
    .slider-btn {
        width: 32px;
        height: 32px;
        top: 50% !important;
        transform: translateY(-50%);
    }
    .slider-btn-prev {
        left: 0 !important;
    }
    .slider-btn-next {
        right: 0 !important;
    }
}

/* Chỉ áp dụng cho desktop */
@media (min-width: 901px) {
    .hero-section {
        height: 600px;
        min-height: 600px;
        max-height: none;
        overflow: hidden;
        position: relative;
    }
    .hero-bg {
        width: 100vw;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
        position: absolute;
        top: 0; left: 0;
        z-index: 1;
    }
    .hero-content-slide {
        background: none !important;
        position: relative;
        z-index: 2;
    }
}

@media (max-width: 900px) {
    .footer-logo {
        width: 64px !important;
        height: 64px !important;
    }
    .social-title {
        font-size: 1.1rem !important;
    }
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    .footer-left, .footer-right {
        text-align: left !important;
        padding: 0;
        min-width: unset;
    }
    .footer-brand { justify-content: flex-start; }
    .footer-title { font-size: 1.3rem; }
    .social-links { justify-content: flex-start; }
}

@media (max-width: 600px) {
    .section-title,
    .hero-title,
    .footer-title {
        font-size: 1.5rem !important;
    }
}