/* --- 1. Global Variables & Reset --- */
:root {
    --primary-color: #4CAF50;
    /* Xanh lá cây */
    --secondary-color: #2b78e4;
    /* Xanh dương (cho chữ và link) */
    --accent-color: #FF7043;
    /* Cam (cho nút chính, giá, tiêu đề phụ) */
    --red-accent: #e44d3d;
    /* Đỏ cho tag nổi bật */
    --text-dark: #333;
    --text-light: #666;
    --background-light: #f8f8f8;
    /* Nền nhẹ nhàng */
    --background-cream: #fff9f0;
    /* Nền Sidebar/Accordion */
    --box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
    color: var(--text-dark);
    background-color: white;
}

a {
    text-decoration: none;
    color: var(--secondary-color);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-primary {
    background-color: var(--accent-color);
    color: white;
}

.btn-primary:hover {
    background-color: #e6603a;
}

/* --- 2. Header & Banner --- */
.main-header {
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
    color: var(--primary-color);
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

.main-nav a {
    font-weight: 500;
    color: var(--text-dark);
    padding: 0 5px;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 3px;
}

.menu-icon {
    display: none;
    font-size: 1.5em;
    cursor: pointer;
}

/* Hero Banner */
.hero-banner {
    height: 70vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.35);
}

.hero-content {
    z-index: 1;
}

.hero-content .pre-title {
    font-size: 0.9em;
    letter-spacing: 3px;
    font-weight: 500;
}

.hero-content h1 {
    font-size: 3.8em;
    color: white;
    margin: 5px 0 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content .hashtag {
    font-size: 0.8em;
    margin-top: 15px;
}

/* --- 3. Main Content Layout --- */
.tour-content-wrapper {
    background-color: var(--background-light);
}

.tour-detail-layout {
    display: flex;
    gap: 30px;
    padding: 50px 0;
    align-items: flex-start;
}

.tour-main {
    flex: 2;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.tour-sidebar {
    display: none;
    flex: 1;
    min-width: 300px;
    position: sticky;
    top: 80px;
    background-color: var(--background-cream);
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

/* Sidebar Pricing & Form */
.price-box {
    text-align: center;
    margin-bottom: 20px;
}

.price-box .current-price {
    font-size: 2.8em;
    font-weight: bold;
    color: var(--accent-color);
}

.sidebar-form label {
    display: block;
    font-size: 0.9em;
    margin-bottom: 5px;
}

.sidebar-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

/* Main Content - About & Itinerary */
.section-block {
    margin-bottom: 40px;
}

.section-title-main {
    font-size: 1.8em;
    font-weight: 800;
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 20px;
}

.tour-main p {
    margin-bottom: 15px;
}

.guide-info {
    margin-top: 30px;
    padding: 15px;
    background-color: #f0fff0;
    border-left: 5px solid var(--primary-color);
    border-radius: 6px;
    display: flex;
    align-items: center;
}

.guide-info p {
    font-size: 0.9em;
    margin-bottom: 5px;
}

.guide-info .link-more {
    font-weight: bold;
    color: var(--secondary-color);
    display: block;
    margin-bottom: 5px;
}

.guide-info .link-more:hover {
    text-decoration: underline;
}

/* Itinerary */
.itinerary-section .subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 30px;
    font-style: italic;
}

.itinerary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.itinerary-day-box {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.itinerary-day-box h3 {
    font-size: 1.2em;
    color: var(--primary-color);
    margin-bottom: 15px;
    border-bottom: 2px solid #eee;
    padding-bottom: 5px;
}

.itinerary-day-box ul {
    list-style: none;
}

.itinerary-day-box li {
    display: flex;
    margin-bottom: 10px;
    font-size: 0.95em;
}

.itinerary-day-box li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 0.9em;
    padding-top: 5px;
}

.itinerary-day-box li strong {
    color: var(--text-dark);
    font-weight: bold;
    margin-right: 5px;
}

/* --- 4. Accordion (LƯU Ý) --- */
.accordion-section {
    padding: 50px 0;
    background-color: var(--background-light);
}

.accordion-title {
    text-align: center;
    font-size: 1.8em;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.accordion-grid {
    display: flex;
    gap: 30px;
}

.accordion-column {
    flex: 1;
}

.accordion-item {
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 10px;
    background-color: white;
    overflow: hidden;
}

.accordion-header {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
    font-weight: 600;
    justify-content: space-between;
    transition: background-color 0.2s;
}

.accordion-header:hover {
    background-color: #f9f9f9;
}

.accordion-header i.fa-angle-down {
    transition: transform 0.3s;
}

.accordion-header.active i.fa-angle-down {
    transform: rotate(180deg);
}

/* Icon Colors */
.accordion-header .icon-label i {
    margin-right: 8px;
    font-size: 1.1em;
}

.accordion-header .icon-label.check i {
    color: var(--primary-color);
}

.accordion-header .icon-label.close i {
    color: var(--red-accent);
}

.accordion-header .icon-label.warning i {
    color: #f9a825;
}

.accordion-header .icon-label.user i {
    color: var(--secondary-color);
}

.accordion-header .icon-label.info i {
    color: #03a9f4;
}

.accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
    background-color: #fff;
}

.accordion-content p,
.accordion-content ul {
    padding-bottom: 15px;
    margin-left: 20px;
}

.accordion-content ul {
    list-style: disc;
    padding-left: 0;
}

.accordion-content li {
    margin-bottom: 5px;
    font-size: 0.95em;
}

.highlight-box {
    background-color: #fff8e1;
    border-left: 5px solid #ffc107;
    padding: 10px;
    margin: 15px 0;
    border-radius: 4px;
}

/* --- 5. Image Gallery --- */
.gallery-section {
    padding: 50px 0;
}

.gallery-title {
    text-align: center;
    font-size: 1.8em;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.gallery-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 30px;
    font-style: italic;
}

.gallery-grid-laothan {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.gallery-item-laothan {
    overflow: hidden;
    border-radius: 6px;
}

.gallery-item-laothan:nth-child(1),
.gallery-item-laothan:nth-child(2),
.gallery-item-laothan:nth-child(3),
.gallery-item-laothan:nth-child(4) {
    height: 250px;
}

.gallery-item-laothan:nth-child(5),
.gallery-item-laothan:nth-child(6),
.gallery-item-laothan:nth-child(7),
.gallery-item-laothan:nth-child(8) {
    height: 200px;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-img:hover {
    transform: scale(1.05);
}

/* --- 6. Featured Tours --- */
.featured-tours-section {
    padding: 50px 0;
    background-color: var(--background-light);
    text-align: center;
}

.featured-title {
    font-size: 1.8em;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.subtitle-featured {
    color: var(--text-light);
    margin-bottom: 30px;
}

.tour-grid-featured,
.tour-grid-other {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
}

.tour-grid-other {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1000px;
    margin: 30px auto;
}

.tour-card {
    border-radius: 8px;
    overflow: hidden;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    border: 2px solid transparent;
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.tour-card.current-tour {
    border-color: var(--primary-color);
}

.tour-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.card-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--accent-color);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8em;
    font-weight: bold;
}

.card-tag.secondary {
    background-color: var(--secondary-color);
}

.card-tag.red {
    background-color: var(--red-accent);
}

.tour-card-content {
    padding: 15px;
    text-align: left;
}

.tour-card-content h3 {
    font-size: 1.1em;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.tour-meta {
    color: var(--text-light);
    font-size: 0.85em;
    margin-bottom: 10px;
}

.tour-price {
    font-size: 1.2em;
    font-weight: bold;
    color: var(--red-accent);
}

/* --- 7. Charity CTA --- */
.charity-cta-section {
    padding: 50px 0;
    background-color: #f0fff0;
    /* Nền xanh nhạt cho phần thiện nguyện */
}

.charity-cta-content {
    display: flex;
    gap: 40px;
}

.charity-cta-text {
    flex: 2;
}

.charity-cta-text h2 {
    font-size: 2.5em;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.charity-cta-text .main-title {
    color: var(--primary-color);
}

.charity-cta-text .sub-title {
    color: var(--accent-color);
}

.charity-cta-text p {
    font-size: 0.95em;
}

.charity-images {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.charity-images img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.charity-features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 0.9em;
}

.feature-item i {
    font-size: 1.8em;
    color: var(--primary-color);
    min-width: 30px;
    text-align: center;
}

.feature-item h4 {
    margin-top: 0;
    margin-bottom: 5px;
    font-weight: bold;
    color: var(--text-dark);
}

/* --- 8. Footer --- */
.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 30px 0;
    text-align: center;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .tour-detail-layout {
        flex-direction: column;
    }

    .tour-sidebar {
        position: static;
        width: 100%;
    }

    .itinerary-grid {
        grid-template-columns: 1fr;
    }

    .accordion-grid {
        flex-direction: column;
    }

    .tour-grid-featured,
    .tour-grid-other {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid-laothan {
        grid-template-columns: repeat(2, 1fr);
    }

    .charity-cta-content {
        flex-direction: column;
    }

    .charity-features-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .menu-icon {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.5em;
    }

    .tour-grid-featured,
    .tour-grid-other {
        grid-template-columns: 1fr;
    }
}

/* ... Các biến và style chung không đổi ... */

/* --- 6. Featured Tours (Cập nhật cho Scroller) --- */
.featured-tours-section {
    padding: 50px 0;
    background-color: var(--background-light);
    text-align: center;
}

.featured-title {
    font-size: 1.8em;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 30px;
    /* Tăng khoảng cách dưới tiêu đề */
}

/* CONTAINER CHẠY NGANG */
.tour-scroller-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    /* Dùng Flexbox để căn chỉnh nút và nội dung */
    align-items: center;
}

.tour-scroller-content {
    display: flex;
    /* Quan trọng: Để các tour-card nằm ngang */
    overflow-x: auto;
    /* Cho phép cuộn ngang */
    scroll-snap-type: x mandatory;
    /* Giúp cuộn đến từng mục */
    gap: 20px;
    padding: 10px 0;
    /* Padding để tránh card bị dính vào viền */
    -ms-overflow-style: none;
    /* Hide scrollbar IE and Edge */
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
}

/* Ẩn thanh cuộn ngang (Scrollbar) cho Chrome, Safari */
.tour-scroller-content::-webkit-scrollbar {
    display: none;
}

.tour-card {
    /* Quan trọng: Card có độ rộng cố định và bắt buộc cuộn */
    flex: 0 0 250px;
    /* Chiều rộng cố định cho mỗi card */
    scroll-snap-align: start;
    /* Bắt buộc cuộn đến đầu card */

    border-radius: 8px;
    overflow: hidden;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    border: 2px solid transparent;
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

/* Nút điều hướng (Arrows) */
.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: background-color 0.2s;
    color: var(--primary-color);
}

.scroll-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

.scroll-btn.prev {
    left: -20px;
    /* Đặt ra ngoài 1 chút so với container */
}

.scroll-btn.next {
    right: -20px;
}

/* Đảm bảo nội dung card vẫn đúng */
.tour-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.tour-price {
    font-size: 1.2em;
    font-weight: bold;
    color: var(--red-accent);
}

/* Media Query cho Responsive */
@media (max-width: 1024px) {

    /* Ẩn nút điều hướng trên thiết bị nhỏ để dùng tính năng cuộn bằng tay */
    .scroll-btn {
        display: none;
    }

    .tour-scroller-wrapper {
        padding: 0 10px;
    }

    /* Cho phép cuộn ngang trên mobile */
    .tour-scroller-content {
        overflow-x: scroll;
        scroll-snap-align: start;
        margin: 0 -10px;
        /* Kéo ra ngoài để cuộn full màn hình */
        padding: 0 10px;
    }

    .tour-card {
        flex: 0 0 280px;
        /* Chiều rộng card lớn hơn trên mobile */
    }
}

/* Các biến màu sắc cần có trong :root hoặc định nghĩa lại */
:root {
    --primary-color: #f79646;
    /* Màu cam chính */
    --secondary-color: #38761d;
    /* Màu xanh lá cho tiêu đề và icon */
    --red-accent: #e06666;
    /* Màu đỏ cho giá và tag */
    --background-charity: #f0fff0;
    /* Màu nền phần thiện nguyện (xanh lá rất nhạt) */
    --text-color: #333;
}

/* Định nghĩa container cơ bản nếu chưa có */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* --- Section chính --- */
.charity-cta-section {
    padding: 60px 0;
    background-color: var(--background-charity);
    /* Nền xanh lá nhạt */
}

/* CĂN CHỈNH: Khối chữ và khối ảnh trên cùng một hàng (50% - 50%) */
.charity-cta-content {
    display: flex;
    gap: 40px;
    align-items: center;
    /* Căn giữa theo chiều dọc */
}

/* --- Khu vực Chữ (Bên trái): Chiếm 50% --- */
.charity-cta-text {
    flex: 1;
    /* Chiếm 1 phần (khoảng 50%) */
    padding-right: 20px;
}

.charity-title {
    font-family: 'Poppins', sans-serif;
    /* Sử dụng font nổi bật */
    font-size: 2.2em;
    font-weight: 700;
    line-height: 1.1;
    text-align: left;
    /* Căn lề trái cho khối chữ */
    margin-bottom: 30px;
    color: var(--secondary-color);
    /* KẾT HỢP màu xanh lá */
}

.charity-title span {
    color: var(--primary-color);
    /* TREKKING & THIỆN NGUYỆN màu cam */
    font-size: 0.8em;
    display: block;
    margin-top: 5px;
}

.charity-cta-text p {
    font-size: 1em;
    margin-bottom: 15px;
    color: var(--text-color);
    line-height: 1.6;
}

/* Các định dạng chữ nổi bật */
.highlight-text-orange {
    color: var(--primary-color);
    font-weight: 600;
}

.highlight-price {
    color: var(--red-accent);
    /* Màu đỏ nổi bật cho tiền */
    font-weight: 700;
}

.highlight-bold {
    font-weight: 700;
}

.small-note {
    font-size: 0.85em;
    color: var(--secondary-color);
    margin-top: 20px;
}

/* --- Khu vực Hình ảnh (Bên phải): Chiếm 50% --- */
.charity-images-grid {
    flex: 1;
    /* Chiếm 1 phần (khoảng 50%) */
    display: flex;
    /* Đặt hai ảnh cạnh nhau */
    gap: 15px;
    /* Điều chỉnh margin-left để cân bằng với padding-right của khối chữ */
    padding-left: 20px;
}

.charity-images-grid img {
    flex: 1;
    /* Mỗi ảnh chiếm đều 50% khối ảnh */
    width: 60%;
    height: auto;
    aspect-ratio: 4 / 3;
    /* Giữ tỷ lệ khung hình */
    object-fit: cover;
    border-radius: 8px;
    /* Bo góc nhẹ */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* --- Responsive cho di động --- */
@media (max-width: 992px) {

    /* Chuyển sang 1 cột trên màn hình nhỏ/tablet */
    .charity-cta-content {
        flex-direction: column;
        gap: 30px;
    }

    .charity-cta-text {
        padding-right: 0;
        /* Chỉnh lại tiêu đề căn giữa trên mobile cho đẹp hơn */
        text-align: center;
    }

    .charity-title {
        text-align: center;
    }

    .charity-images-grid {
        max-width: 100%;
        width: 100%;
        padding-left: 0;
        /* Giữ 2 cột ảnh cạnh nhau trên di động */
        display: flex;
        /* Đảm bảo vẫn là flex */
    }

    .charity-images-grid img {
        flex: 1;
        width: 100%;
    }
}

/* HEADER */
/* * CSS cho Header có hiệu ứng thanh trượt (Active Indicator)
 * Đã sử dụng tiền tố glt-slide- để tránh xung đột
 */

/* === Định nghĩa Font (Giả định đã có) === */
/* Import Font Awesome (để có icon giỏ hàng) */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');

/* Giả định sử dụng font Poppins hoặc tương tự */
:root {
    --glt-primary-color: #f7a04f;
    /* Màu cam nổi bật */
    --glt-secondary-color: #333;
    /* Màu chữ */
    --glt-bg-light: #fff;
    /* Nền Header */
    --glt-text-hover: #1a1a1a;
    --glt-transition-speed: 0.3s;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    padding-top: 50px;
    /* Đảm bảo nội dung không bị Header che mất */
}

/* === 1. Header Chính === */
.glt-slide-header {
    background-color: var(--glt-bg-light);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.glt-slide-container {
    max-width: 1300px;
    /* Chiều rộng tối đa của nội dung */
    margin: 0 auto;
    padding: 0 25px;
    height: 80px;
    /* Chiều cao cố định của Header */
    display: flex;
    justify-content: space-between;
    /* Đẩy logo và menu ra hai bên */
    align-items: center;
}

/* === 2. Logo/Thương hiệu === */
.glt-logo-brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--glt-primary-color);
    text-decoration: none;
    letter-spacing: 1px;
}

/* === 3. Menu và Nút (Wrapper) === */
.glt-slide-links-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
    /* Khoảng cách giữa Menu và Nút Cửa hàng */
    height: 100%;
    position: relative;
    /* Quan trọng: làm gốc cho thanh trượt (indicator) */
}

/* === 4. Container Menu (Liên kết) === */
.glt-slide-links-container {
    display: flex;
    align-items: center;
    gap: 25px;
    /* Khoảng cách giữa các mục menu */
    height: 100%;
    /* Căn giữa dọc các item */
    position: relative;
    /* Để indicator tính toán vị trí dễ hơn */
}

/* === 5. Các mục Menu (Liên kết) === */

/* === 6. Thanh trượt (Active Indicator) === */
.glt-active-indicator {
    position: absolute;
    bottom: 0;
    /* Đặt thanh trượt ở dưới cùng */
    left: 0;
    /* Vị trí ban đầu (sẽ được JS tính toán lại) */
    height: 40px;
    /* Chiều cao của thanh trượt */
    background-color: var(--glt-primary-color);
    border-radius: 6px;
    transition: transform var(--glt-transition-speed) ease, width var(--glt-transition-speed) ease;
    z-index: 1;
    /* Nằm dưới chữ */
    pointer-events: none;
    /* Không chặn click vào các liên kết */
}

/* Vì Indicator nằm trong glt-slide-links-wrapper, ta cần định vị lại nó so với container nav */
/* Indicator phải có vị trí tương đối với .glt-slide-links-container để căn chỉnh đúng */
/* Thêm CSS cho Indicator nằm trong container nav */
#glt-slide-active-indicator-id {
    position: absolute;
    top: 50%;
    /* Căn giữa dọc */
    transform: translate(0, -50%);
    /* Dịch lên 50% chiều cao của chính nó */
    /* width và translateX được set bằng JS */
}

/* === 7. Nút Cửa hàng === */
.glt-slide-shop-button {
    background-color: var(--glt-primary-color);
    color: var(--glt-bg-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 8px;
    transition: background-color var(--glt-transition-speed);
    display: flex;
    align-items: center;
    gap: 8px;
}

.glt-slide-shop-button:hover {
    background-color: #d18742;
    /* Màu cam đậm hơn khi hover */
}

/* * CSS cho Header có hiệu ứng icon và text nhỏ gọn
 * Đã sử dụng tiền tố glt-slide- để tránh xung đột
 */

/* Import Font Awesome */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css');

/* Giả định sử dụng font Poppins hoặc tương tự */
:root {
    /* Điều chỉnh lại màu sắc theo hình ảnh mới */
    --glt-primary-color: #f77f37;
    /* Màu cam nổi bật (cam tươi) */
    --glt-secondary-color: #ffffff;
    /* Màu chữ thường đã đổi thành TRẮNG để nổi bật trên nền Gradient */
    --glt-bg-light: #fff;
    /* Nền Header cũ */
    --glt-text-hover: #1a1a1a;
    /* Màu chữ khi hover/active (Đen) */
    --glt-transition-speed: 0.3s;
    /* Các màu icon theo hình ảnh */
    --glt-color-red: #e74c3c;
    --glt-color-purple: #9b59b6;
    --glt-color-blue: #3498db;
    --glt-color-pink: #ff69b4;
    --glt-color-yellow: #f1c40f;

    /* MÀU GRADIENT MỚI TỪ HÌNH ẢNH (RGB) */
    --glt-header-gradient: linear-gradient(90deg, rgb(180, 255, 100) 0%, rgb(50, 200, 200) 100%);
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    padding-top: 50px;
}

/* === 1. Header Chính - ÁP DỤNG GRADIENT MỚI === */
.glt-slide-header {
    /* Sử dụng gradient mới làm background */
    background: var(--glt-header-gradient);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    /* Xóa shadow hoặc giảm bớt vì nền đã đậm */
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.glt-slide-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 25px;
    height: 50px;
    display: flex;
    /* Đảm bảo logo và menu cách xa nhau */
    justify-content: space-between;
    align-items: center;
}

/* === 2. Logo/Thương hiệu - Điều chỉnh màu chữ Logo === */
.glt-logo-brand {
    font-size: 24px;
    font-weight: 700;
    /* Đổi màu logo thành TRẮNG để nổi bật trên gradient */
    color: var(--glt-secondary-color);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.glt-logo-brand img {
    height: 35px;
    /* Kích thước logo */
}

/* === 3. Menu và Nút (Wrapper) === */
.glt-slide-links-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    height: 100%;
    position: relative;
}

/* === 4. Container Menu (Liên kết) === */
#glt-slide-nav-links-container {
    display: flex;
    align-items: center;
    gap: 0;
    height: 100%;
    position: relative;
    justify-content: center;
}

/* === 5. Các mục Menu (Liên kết) - ĐÃ ĐỔI MÀU CHỮ THƯỜNG SANG TRẮNG === */
.glt-slide-nav-item {
    text-decoration: none;
    color: var(--glt-secondary-color);
    /* Màu chữ: TRẮNG */
    font-size: 14px;
    font-weight: 500;
    transition: all var(--glt-transition-speed);
    position: relative;
    z-index: 2;
    height: 70%;
    display: flex;
    align-items: center;

    padding: 5px 15px;

    display: inline-flex;
    justify-content: center;
    gap: 5px;
    white-space: nowrap;
    margin: 0 5px;
    border-radius: 10px;
}

/* Kiểu dáng cho icon - ĐÃ ĐỔI MÀU ICON THƯỜNG SANG TRẮNG/NHẠT */
.glt-slide-nav-item i {
    font-size: 16px;
    line-height: 1;
    /* Đổi màu icon mặc định thành trắng nhạt */
    color: rgba(255, 255, 255, 0.8) !important;
    transition: color var(--glt-transition-speed);
}

/* Định kiểu cho mục đang ACTIVE (giống hình bầu dục cam) */
.glt-slide-nav-item.active {
    color: var(--glt-text-hover);
    /* Chữ màu ĐEN khi active */
    background-color: var(--glt-primary-color);
    /* Nền cam nổi bật */
}

/* === HIỆU ỨNG HOVER === */
.glt-slide-nav-item:hover {
    color: var(--glt-text-hover);
    /* Chữ màu ĐEN khi hover */
    background-color: var(--glt-primary-color);
    /* Nền cam khi hover */
    cursor: pointer;
}

/* Đảm bảo icon có màu ĐEN khi mục active HOẶC hover */
.glt-slide-nav-item.active i,
.glt-slide-nav-item:hover i {
    color: var(--glt-text-hover) !important;
    /* Icon màu đen khi hover/active */
}

/* XÓA PHẦN GÁN MÀU ICON RIÊNG VÌ GIỜ NỀN ĐÃ LÀ GRADIENT (MÀU RIÊNG KHÔNG CÒN PHÙ HỢP) */


/* === 6. Nút Cửa hàng (Tách biệt) - Điều chỉnh màu chữ thành đen === */
.glt-slide-shop-button {
    background: var(--glt-bg-light);
    /* Đổi nút cửa hàng thành màu TRẮNG/SÁNG để nổi bật */
    color: var(--glt-text-hover);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 8px;
    /* Giảm độ đổ bóng để phù hợp với nền sáng */
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: background-color var(--glt-transition-speed);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 20px;
}

.glt-slide-shop-button:hover {
    filter: brightness(0.9);
    /* Làm tối đi một chút khi hover */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* === 7. Menu Mobile (Cần điều chỉnh màu cho mobile) === */
@media (max-width: 800px) {

    /* Trên mobile, nền có thể phức tạp, hãy đặt nền menu là trắng để dễ đọc */
    .glt-slide-links-wrapper {
        flex-direction: column;
        align-items: flex-start;
        top: 80px;
        max-height: 0;
        padding: 0 25px;
        background-color: var(--glt-bg-light);
        /* Nền trắng trên mobile */
        box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
    }

    .glt-slide-links-wrapper.open {
        max-height: 500px;
    }

    #glt-slide-nav-links-container {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        padding: 15px 0;
        gap: 0;
    }

    .glt-slide-nav-item {
        padding: 10px 0;
        width: 100%;
        color: var(--glt-text-hover);
        /* Màu chữ đen trên nền trắng mobile */
        font-weight: 500;
        background-color: transparent !important;
        border-radius: 0;
        justify-content: flex-start;
        margin: 0;
        min-width: auto;
    }

    .glt-slide-nav-item i {
        /* Icon trên mobile về màu xanh lá cây đậm ban đầu */
        color: var(--glt-secondary-color) !important;
    }

    .glt-slide-nav-item.active,
    .glt-slide-nav-item:hover {
        /* Áp dụng style hover/active mobile */
        color: var(--glt-primary-color);
        background-color: transparent !important;
        font-weight: 600;
    }

    .glt-slide-nav-item.active i,
    .glt-slide-nav-item:hover i {
        /* Icon màu cam khi active/hover trên mobile */
        color: var(--glt-primary-color) !important;
    }

    .glt-slide-shop-button {
        margin: 15px 0 20px 0;
        width: 100%;
        justify-content: center;
        /* Chuyển lại màu cam/gradient cho nút Cửa hàng trên mobile */
        background: linear-gradient(180deg, #ff9500, var(--glt-primary-color));
        color: var(--glt-bg-light);
    }
}



/* --- 7. Charity CTA --- */
.charity-cta-section {
    padding: 50px 0;
    background-color: #f0fff0;
    /* Nền xanh nhạt cho phần thiện nguyện */
}

.charity-cta-content {
    display: flex;
    gap: 40px;
}

.charity-cta-text {
    flex: 2;
}

.charity-cta-text h2 {
    font-size: 2.5em;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.charity-cta-text .main-title {
    color: var(--primary-color);
}

.charity-cta-text .sub-title {
    color: var(--accent-color);
}

.charity-cta-text p {
    font-size: 0.95em;
}

.charity-images {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.charity-images img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.charity-features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 0.9em;
}

.feature-item i {
    font-size: 1.8em;
    color: var(--primary-color);
    min-width: 30px;
    text-align: center;
}

.feature-item h4 {
    margin-top: 0;
    margin-bottom: 5px;
    font-weight: bold;
    color: var(--text-dark);
}

/* --- 8. Footer --- */
.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 30px 0;
    text-align: center;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .tour-detail-layout {
        flex-direction: column;
    }

    .tour-sidebar {
        position: static;
        width: 100%;
    }

    .itinerary-grid {
        grid-template-columns: 1fr;
    }

    .accordion-grid {
        flex-direction: column;
    }

    .tour-grid-featured,
    .tour-grid-other {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid-laothan {
        grid-template-columns: repeat(2, 1fr);
    }

    .charity-cta-content {
        flex-direction: column;
    }

    .charity-features-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .menu-icon {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.5em;
    }

    .tour-grid-featured,
    .tour-grid-other {
        grid-template-columns: 1fr;
    }
}

/* ... Các biến và style chung không đổi ... */

/* --- 6. Featured Tours (Cập nhật cho Scroller) --- */
.featured-tours-section {
    padding: 50px 0;
    background-color: var(--background-light);
    text-align: center;
}

.featured-title {
    font-size: 1.8em;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 30px;
    /* Tăng khoảng cách dưới tiêu đề */
}

/* CONTAINER CHẠY NGANG */
.tour-scroller-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    /* Dùng Flexbox để căn chỉnh nút và nội dung */
    align-items: center;
}

.tour-scroller-content {
    display: flex;
    /* Quan trọng: Để các tour-card nằm ngang */
    overflow-x: auto;
    /* Cho phép cuộn ngang */
    scroll-snap-type: x mandatory;
    /* Giúp cuộn đến từng mục */
    gap: 20px;
    padding: 10px 0;
    /* Padding để tránh card bị dính vào viền */
    -ms-overflow-style: none;
    /* Hide scrollbar IE and Edge */
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
}

/* Ẩn thanh cuộn ngang (Scrollbar) cho Chrome, Safari */
.tour-scroller-content::-webkit-scrollbar {
    display: none;
}

.tour-card {
    /* Quan trọng: Card có độ rộng cố định và bắt buộc cuộn */
    flex: 0 0 250px;
    /* Chiều rộng cố định cho mỗi card */
    scroll-snap-align: start;
    /* Bắt buộc cuộn đến đầu card */

    border-radius: 8px;
    overflow: hidden;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    border: 2px solid transparent;
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

/* Nút điều hướng (Arrows) */
.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: background-color 0.2s;
    color: var(--primary-color);
}

.scroll-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

.scroll-btn.prev {
    left: -20px;
    /* Đặt ra ngoài 1 chút so với container */
}

.scroll-btn.next {
    right: -20px;
}

/* Đảm bảo nội dung card vẫn đúng */
.tour-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.tour-price {
    font-size: 1.2em;
    font-weight: bold;
    color: var(--red-accent);
}

/* Media Query cho Responsive */
@media (max-width: 1024px) {

    /* Ẩn nút điều hướng trên thiết bị nhỏ để dùng tính năng cuộn bằng tay */
    .scroll-btn {
        display: none;
    }

    .tour-scroller-wrapper {
        padding: 0 10px;
    }

    /* Cho phép cuộn ngang trên mobile */
    .tour-scroller-content {
        overflow-x: scroll;
        scroll-snap-align: start;
        margin: 0 -10px;
        /* Kéo ra ngoài để cuộn full màn hình */
        padding: 0 10px;
    }

    .tour-card {
        flex: 0 0 280px;
        /* Chiều rộng card lớn hơn trên mobile */
    }
}

/* Các biến màu sắc cần có trong :root hoặc định nghĩa lại */
:root {
    --primary-color: #f79646;
    /* Màu cam chính */
    --secondary-color: #38761d;
    /* Màu xanh lá cho tiêu đề và icon */
    --red-accent: #e06666;
    /* Màu đỏ cho giá và tag */
    --background-charity: #f0fff0;
    /* Màu nền phần thiện nguyện (xanh lá rất nhạt) */
    --text-color: #333;
}

/* Định nghĩa container cơ bản nếu chưa có */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* --- Section chính --- */
.charity-cta-section {
    padding: 60px 0;
    background-color: var(--background-charity);
    /* Nền xanh lá nhạt */
}

/* CĂN CHỈNH: Khối chữ và khối ảnh trên cùng một hàng (50% - 50%) */
.charity-cta-content {
    display: flex;
    gap: 40px;
    align-items: center;
    /* Căn giữa theo chiều dọc */
}

/* --- Khu vực Chữ (Bên trái): Chiếm 50% --- */
.charity-cta-text {
    flex: 1;
    /* Chiếm 1 phần (khoảng 50%) */
    padding-right: 20px;
}

.charity-title {
    font-family: 'Poppins', sans-serif;
    /* Sử dụng font nổi bật */
    font-size: 2.2em;
    font-weight: 700;
    line-height: 1.1;
    text-align: left;
    /* Căn lề trái cho khối chữ */
    margin-bottom: 30px;
    color: var(--secondary-color);
    /* KẾT HỢP màu xanh lá */
}

.charity-title span {
    color: var(--primary-color);
    /* TREKKING & THIỆN NGUYỆN màu cam */
    font-size: 0.8em;
    display: block;
    margin-top: 5px;
}

.charity-cta-text p {
    font-size: 1em;
    margin-bottom: 15px;
    color: var(--text-color);
    line-height: 1.6;
}

/* Các định dạng chữ nổi bật */
.highlight-text-orange {
    color: var(--primary-color);
    font-weight: 600;
}

.highlight-price {
    color: var(--red-accent);
    /* Màu đỏ nổi bật cho tiền */
    font-weight: 700;
}

.highlight-bold {
    font-weight: 700;
}

.small-note {
    font-size: 0.85em;
    color: var(--secondary-color);
    margin-top: 20px;
}

/* --- Khu vực Hình ảnh (Bên phải): Chiếm 50% --- */
.charity-images-grid {
    flex: 1;
    /* Chiếm 1 phần (khoảng 50%) */
    display: flex;
    /* Đặt hai ảnh cạnh nhau */
    gap: 15px;
    /* Điều chỉnh margin-left để cân bằng với padding-right của khối chữ */
    padding-left: 20px;
}

.charity-images-grid img {
    flex: 1;
    /* Mỗi ảnh chiếm đều 50% khối ảnh */
    width: 60%;
    height: auto;
    aspect-ratio: 4 / 3;
    /* Giữ tỷ lệ khung hình */
    object-fit: cover;
    border-radius: 8px;
    /* Bo góc nhẹ */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* --- Responsive cho di động --- */
@media (max-width: 992px) {

    /* Chuyển sang 1 cột trên màn hình nhỏ/tablet */
    .charity-cta-content {
        flex-direction: column;
        gap: 30px;
    }

    .charity-cta-text {
        padding-right: 0;
        /* Chỉnh lại tiêu đề căn giữa trên mobile cho đẹp hơn */
        text-align: center;
    }

    .charity-title {
        text-align: center;
    }

    .charity-images-grid {
        max-width: 100%;
        width: 100%;
        padding-left: 0;
        /* Giữ 2 cột ảnh cạnh nhau trên di động */
        display: flex;
        /* Đảm bảo vẫn là flex */
    }

    .charity-images-grid img {
        flex: 1;
        width: 100%;
    }
}

/* HEADER */
/* * CSS cho Header có hiệu ứng thanh trượt (Active Indicator)
 * Đã sử dụng tiền tố glt-slide- để tránh xung đột
 */

/* === Định nghĩa Font (Giả định đã có) === */
/* Import Font Awesome (để có icon giỏ hàng) */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');

/* Giả định sử dụng font Poppins hoặc tương tự */
:root {
    --glt-primary-color: #f7a04f;
    /* Màu cam nổi bật */
    --glt-secondary-color: #333;
    /* Màu chữ */
    --glt-bg-light: #fff;
    /* Nền Header */
    --glt-text-hover: #1a1a1a;
    --glt-transition-speed: 0.3s;
}


:root {
    --glt-text-dark: #222;
    --glt-text-light: #fff;
    --glt-footer-bg-bottom: #042e43;
    /* Màu xanh đen cho thanh bản quyền */
}

/* 1. KEYFRAMES cho hiệu ứng di chuyển nhẹ nhàng của hình ảnh (Blob) */
@keyframes softMove {

    0%,
    100% {
        transform: translate(0, 0);
    }

    33% {
        transform: translate(5px, 3px) scale(1.005);
    }

    66% {
        transform: translate(-5px, -3px) scale(0.995);
    }
}

/* 2. Style tổng thể của Footer */
.glt-footer {
    position: relative;
    width: 100%;
    overflow: hidden;
    /* Cần thiết để chứa phần SVG tràn ra */
    font-family: 'Poppins', sans-serif;
}

/* 3. Vùng chứa SVG và nội dung chính */
.glt-footer-bg {
    position: relative;
    padding: 100px 0;
    min-height: 450px;
    /* Đảm bảo đủ không gian cho hình blob */
}

.glt-bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* Nằm dưới nội dung */
    animation: softMove 20s ease-in-out infinite alternate;
    /* Áp dụng hiệu ứng di chuyển */
}

.glt-footer-container {
    position: relative;
    z-index: 2;
    /* Nằm trên SVG */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    color: var(--glt-text-dark);
    /* Chữ màu tối trên nền sáng */
}

/* 4. Nội dung bên trái (Giới thiệu) */
.glt-footer-content-left {
    max-width: 600px;
    padding-right: 40px;
}

.glt-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--glt-text-dark);
    margin-bottom: 20px;
}

.glt-intro-text {
    font-size: 0.95rem;
    line-height: 1.8;
}

.glt-intro-text strong {
    font-weight: 600;
    color: var(--glt-footer-bg-bottom);
    /* Màu xanh đen nổi bật */
}

/* 5. Liên hệ bên phải */
.glt-footer-contact-right {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 5px;
    /* Căn chỉnh với text bên trái */
}

.glt-contact-item {
    font-size: 1rem;
    color: var(--glt-text-dark);
    display: flex;
    align-items: center;
}

.glt-contact-item i {
    margin-right: 10px;
    font-size: 1.1rem;
}

/* 6. Icon Mạng xã hội */
.glt-social-icons {
    display: flex;
    gap: 15px;
    margin-top: 5px;
}

.glt-social-icons a {
    color: var(--glt-text-dark);
    font-size: 1.5rem;
    transition: color 0.3s;
}

.glt-social-icons a:hover {
    color: var(--glt-link-color);
    /* Thay đổi màu khi hover */
}


/* 7. Vùng Bản quyền (Bottom) */
.glt-footer-bottom {
    background-color: var(--glt-footer-bg-bottom);
    color: var(--glt-text-light);
    padding: 15px 0;
    font-size: 0.8rem;
}

/* Container mới, đảm bảo không trùng lặp */
.glt-footer-inner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.glt-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.glt-footer-bottom .fa-heart {
    color: #e74c3c;
    /* Màu đỏ cho trái tim */
}

/* 8. MEDIA QUERIES (Responsive) */
@media (max-width: 900px) {
    .glt-footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .glt-footer-content-left {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 30px;
    }

    .glt-footer-contact-right {
        align-items: center;
    }
}

@media (max-width: 600px) {
    .glt-bottom-content {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
}

:root {
    --bg-gradient: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    --card-bg: rgba(255, 255, 255, 0.9);
    --primary-orange: #e67e22;
}

.info-container {
    max-width: 900px;
    margin: 50px auto;
    padding: 40px;
    background: var(--card-bg);
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.main-title {
    color: var(--primary-orange);
    font-size: 1.8rem;
    margin-bottom: 40px;
    letter-spacing: 1px;
    border-bottom: 2px solid #eee;
    display: inline-block;
    padding-bottom: 10px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1-fr);
    /* Chia 2 cột */
    gap: 20px;
}

.info-card {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-orange);
}

.info-card.highlight {
    grid-column: span 2;
    /* Mục đầu tiên trải dài 2 cột cho hiện đại */
    background: #fdfaf7;
}

.icon-box {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 1.2rem;
    color: white;
}

/* Đổ màu icon theo từng loại */
.green {
    background: #4caf50;
}

.yellow {
    background: #ffb100;
}

.teal {
    background: #008080;
}

.orange {
    background: #ff6b6b;
}

.blue {
    background: #3498db;
}

.navy {
    background: #2c3e50;
}

.info-text {
    text-align: left;
}

.info-text h3 {
    margin: 0;
    font-size: 1rem;
    color: #333;
}

.info-text p {
    margin: 5px 0 0;
    font-size: 0.85rem;
    color: #888;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .info-grid {
        grid-template-columns: 1fr;
    }

    .info-card.highlight {
        grid-column: span 1;
    }
}

:root {
    --primary-orange: #e67e22;
    --text-main: #333;
    --text-sub: #777;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.info-section {
    padding: 60px 20px;
    background-color: #fcfcfc;
    font-family: 'Inter', sans-serif;
}

.info-container {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 40px;
    box-shadow: var(--shadow);
}

.main-title {
    text-align: center;
    color: var(--primary-orange);
    font-size: 24px;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.info-card {
    display: flex;
    align-items: center;
    padding: 25px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.info-card.highlight {
    grid-column: span 2;
    background: #f9fff9;
}

.info-card.border-orange {
    border: 1px solid var(--primary-orange);
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 22px;
    color: white;
    flex-shrink: 0;
}

/* Colors */
.green {
    background: #5dbb63;
}

.yellow {
    background: #f39c12;
}

.teal {
    background: #008080;
}

.red {
    background: #ff6b6b;
}

.blue {
    background: #3498db;
}

.navy {
    background: #34495e;
}

.info-text h3 {
    margin: 0;
    font-size: 17px;
    color: var(--text-main);
}

.info-text p {
    margin: 5px 0 0;
    font-size: 14px;
    color: var(--text-sub);
}

/* Modal CSS */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 30px;
    width: 90%;
    max-width: 550px;
    position: relative;
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-btn {
    position: absolute;
    right: 25px;
    top: 20px;
    font-size: 30px;
    cursor: pointer;
    color: #ccc;
}

.close-btn:hover {
    color: var(--primary-orange);
}

@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
    }

    .info-card.highlight {
        grid-column: span 1;
    }
}

:root {
    --green-charity: #4CAF50;
    --orange-charity: #FF7043;
    --radius-large: 25px;
    /* Bo góc lớn đúng ý bạn */
    --shadow-card: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.charity-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 50px auto;
    align-items: center;
    padding: 20px;
}

/* Khối nội dung bên trái */
.charity-info-card {
    background: #fff;
    padding: 40px;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-card);
}

.charity-title {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.green-text {
    color: var(--green-charity);
}

.orange-text {
    color: var(--orange-charity);
}

.donation-box {
    margin-top: 20px;
    padding: 15px;
    border: 2px dashed var(--orange-charity);
    border-radius: 15px;
    background: #fff9f7;
    font-weight: bold;
}

/* Lưới 4 ảnh bên phải */
.charity-grid-4 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.charity-img-item {
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-card);
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Hiệu ứng so le (Ảnh 2 và 3 lùi vào một chút) */
.charity-img-item:nth-child(even) {
    transform: translateY(20px);
}

.charity-img-item:nth-child(odd) {
    transform: translateY(-20px);
}

.charity-img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.charity-img-item:hover {
    transform: scale(1.05) translateY(0);
    z-index: 10;
}

.charity-img-item:hover img {
    transform: scale(1.1);
}

/* Popup Ảnh (Lightbox) */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.modal-content {

    border-radius: 15px;
}

.close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
}

/* --- RESPONSIVE CHO MOBILE --- */
@media (max-width: 992px) {

    /* Hiển thị nút Toggle */
    #glt-slide-menu-toggle {
        display: block !important;
        background: none;
        border: none;
        color: var(--glt-orange, #FF7043);
        font-size: 24px;
        cursor: pointer;
        z-index: 1001;
    }

    /* Biến menu thành một lớp phủ (Overlay) hoặc Menu dọc */
    .glt-slide-links-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        /* Giấu menu sang bên phải */
        width: 70%;
        height: 100vh;
        background: #fff;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: 0.4s ease-in-out;
        z-index: 1000;
        display: flex;
        flex-direction: column;
        padding: 80px 20px;
    }

    /* Khi menu mở */
    .glt-slide-links-wrapper.active {
        right: 0;
    }

    .glt-slide-links-container {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .glt-slide-nav-item {
        width: 100%;
        padding: 15px;
        border-bottom: 1px solid #f0f0f0;
        font-size: 16px;
    }

    /* Thanh trượt màu cam trên Mobile sẽ nằm dọc bên trái */
    .glt-active-indicator {
        left: 0 !important;
        width: 4px !important;
        height: 0;
        transition: 0.3s;
    }
}

/* Giao diện Desktop mặc định */
.charity-container {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    padding: 50px 5%;
}

.charity-info-card {
    width: 40%;
}

.charity-grid-4 {
    width: 60%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Desktop chia 2x2 */
    gap: 15px;
}

.charity-img-item img {
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
    cursor: pointer;
}

/* --- RESPONSIVE CHO MOBILE & TABLET --- */
@media (max-width: 768px) {
    .charity-container {
        flex-direction: column;
        /* Đẩy Text lên trên, Ảnh xuống dưới */
    }

    .charity-info-card {
        width: 100%;
        text-align: center;
        /* Căn giữa chữ cho cân đối */
        margin-bottom: 20px;
    }

    .charity-grid-4 {
        width: 100%;
        /* ÉP 4 ẢNH TRÊN 1 HÀNG NGANG */
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
        /* Giảm khoảng cách để đủ chỗ cho 4 ảnh */
    }

    .charity-img-item img {
        /* Thu nhỏ chiều cao ảnh để không chiếm chỗ */
        border-radius: 8px;
    }

    .donation-box {
        font-size: 14px;
        padding: 10px;
    }
}

/* Modal căn giữa */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.modal-content {

    border-radius: 10px;
}