/* Hero Section */
.hero-section {
    position: relative;
    height: 600px;
    background: url('/FantaTour/assets/img/vietnam-hero.png') no-repeat center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-overlay {
    background-color: rgba(0, 0, 0, 0.3); /* Giảm opacity để blur nổi bật hơn */
    backdrop-filter: blur(8px); /* Thêm hiệu ứng blur */
    padding: 40px;
    border-radius: 15px;
    
}

.hero-section h1 {
    font-size: 48px;
    font-weight: 800; /* Đậm hơn */
    margin: 0 0 20px;
    letter-spacing: 1px; /* Thêm khoảng cách chữ */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); /* Thêm bóng chữ */
    font-family: 'Ro';
}

.hero-section p {
    font-size: 20px;
    color: #FFFFFF; /* Trắng sáng hơn */
    line-height: 1.8;
    margin: 0 0 30px;
    max-width: 600px;
    letter-spacing: 1px; /* Thêm khoảng cách chữ */
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4); /* Bóng chữ nhẹ */
}

.cta-btn {
    background-color: #00C4B4;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 20px; /* Tăng từ 18px */
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 1px; /* Thêm khoảng cách chữ */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3); /* Thêm bóng nhẹ */
    transition: background-color 0.3s, transform 0.3s;
}

.cta-btn:hover {
    background-color: #00A69A;
    transform: scale(1.1); /* Phóng to hơn khi hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4); /* Bóng đậm hơn */
}

/* Highlights Section */
.highlights-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 20px;
}

.highlights-section h2 {
    color: #1A3C6D;
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.highlight-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
}

.highlight-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.highlight-card h3 {
    color: #1A3C6D;
    font-size: 24px;
    margin: 15px 0 10px;
}

.highlight-card p {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    padding: 0 15px 20px;
}

/* Pricing Section */
.pricing-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.pricing-section h2 {
    color: #1A3C6D;
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.pricing-card {
    background-color: #F0F4F8;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.pricing-card h3 {
    color: #1A3C6D;
    font-size: 24px;
    margin: 0 0 15px;
}

.pricing-card .price {
    color: #00C4B4;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.pricing-card li {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
}

/* Itinerary Section */
.itinerary-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 20px;
    background: url(/FantaTour/assets/img/itinerary-bg.jpg) no-repeat center/cover;
    font-family: 'Ro';
    border-radius: 12px;
    scroll-behavior: smooth;
}

.itinerary-section h2 {
    color: #123850;
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 0 5px 10px rgba(0, 0, 0, 0.6);
}

.itinerary-list {
    background: rgba(255, 255, 255, 0.75);
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
}

.itinerary-card {
    display: flex;
    align-items: flex-start;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(230, 240, 245, 0.9));
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid #DDE4EE;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
    padding: 15px;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    position: relative;
}

.itinerary-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2), 0 0 8px rgba(0, 196, 180, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(0, 196, 180, 0.2));
}

.itinerary-card:last-child {
    margin-bottom: 0;
}

.itinerary-day {
    flex: 0 0 160px; /* Tăng chiều rộng để rộng rãi hơn */
    background: #006B5F;
    padding: 12px 20px; /* Tăng padding để dễ nhìn */
    border-radius: 14px; /* Bo góc lớn hơn */
    text-align: right;
    position: relative;
    margin-right: 20px;
    transition: transform 0.3s;
    color: #FFF; /* Chữ trắng */
    font-size: 18px; /* Tăng kích thước chữ */
    font-weight: 700;
    line-height: 1.2;
}

.itinerary-day:hover {
    transform: scale(1.05);
}

.itinerary-day::before {
    content: '\1F4C5'; /* Icon lịch */
    position: absolute;
    left: 20px; /* Tăng khoảng cách từ mép trái */
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px; /* Tăng kích thước icon */
    color: #4A8C82;
}

.itinerary-day .day-label {
    display: block;
    color: #FFF;
    font-size: 18px; /* Chữ "Ngày" nhỏ hơn */
    font-weight: 600;
    line-height: 1;
}

.itinerary-day .day-number {
    display: block;
    color: #FFF;
    font-size: 28px; /* Số lớn hơn */
    font-weight: 800;
    line-height: 1;
}

.itinerary-details {
    flex: 1;
    border-left: 3px dashed #4A8C82; /* Viền nét đứt, màu xanh nhạt */
    padding-left: 20px;
    transition: border-color 0.3s;
}

.itinerary-card:hover .itinerary-details {
    border-color: #006B5F; /* Chuyển màu viền khi hover */
}

.itinerary-details h4 {
    color: #123850;
    font-size: 26px;
    font-weight: 600;
    text-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
    position: relative;
    padding-left: 30px;
    margin: 0 0 8px;
}

.itinerary-details h4::before {
    content: '\25CF'; /* Chấm tròn */
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #FF69B4; /* Màu hồng */
}

.itinerary-details p {
    color: #1C2526;
    font-size: 20px;
    line-height: 1.7;
    margin: 0 0 8px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.itinerary-details .tip, .itinerary-details .gear {
    font-style: italic;
    color: #555;
    font-size: 18px;
    margin-top: 5px;
    padding-top: 5px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.itinerary-details .gear::before {
    content: '\1F9F3'; /* Icon vali */
    margin-right: 5px;
    color: #4A8C82; /* Xanh nhạt */
}

.itinerary-buttons {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    gap: 8px;
}

.itinerary-buttons .map-btn, .itinerary-buttons .add-btn {
    background: #006B5F; /* Đồng bộ với màu của ngày */
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: background 0.3s, transform 0.2s;
}

.itinerary-buttons .map-btn:hover, .itinerary-buttons .add-btn:hover {
    background: #4A8C82; /* Xanh nhạt hơn khi hover */
    transform: scale(1.05);
}

/* Gallery Section */
.gallery-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 30px;
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(230, 240, 245, 0.9));
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-section h2 {
    color: #123850;
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(90deg, #006B5F, #4A8C82);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.gallery-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gallery-item {
    display: flex;
    align-items: center;
    background: #FFF;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 300px;
    height: 180px;
    object-fit: cover;
    border-radius: 12px 0 0 12px;
}

.gallery-info {
    flex: 1;
    padding: 20px;
}

.gallery-info h4 {
    color: #123850;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.rating .stars {
    color: #FFD700; /* Màu vàng cho sao */
    font-size: 16px;
}

.rating .rating-text {
    color: #555;
    font-size: 14px;
}

.gallery-info p {
    color: #555;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.details {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

.details .seats, .details .delivery {
    background: #E6F0FA;
    color: #006B5F;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 500;
}

.price {
    color: #123850;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.actions {
    display: flex;
    gap: 10px;
}

.rent-now-btn {
    background: linear-gradient(135deg, #006B5F, #4A8C82);
    color: #FFF;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.3s;
}

.rent-now-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.view-car-btn, .info-btn {
    background: #FFF;
    color: #006B5F;
    border: 1px solid #006B5F;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}

.view-car-btn:hover, .info-btn:hover {
    background: #006B5F;
    color: #FFF;
}

.gallery-footer {
    text-align: center;
    margin-top: 20px;
}

.view-more-btn {
    background: linear-gradient(135deg, #006B5F, #4A8C82);
    color: #FFF;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.view-more-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.video-container {
    margin-top: 50px;
    text-align: center;
}

.video-container h3 {
    color: #123850;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
    background: linear-gradient(90deg, #006B5F, #4A8C82);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

.video-container video {
    width: 85%;
    max-width: 900px;
    border-radius: 12px;
    border: 2px solid #4A8C82;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.video-container video:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Contact Section */
.contact-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contact-section h2 {
    color: #1A3C6D;
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-section p {
    color: #555;
    font-size: 18px;
    line-height: 1.8;
    margin: 0 0 20px;
}

.contact-info {
    margin: 20px 0;
}

.contact-info p {
    font-size: 18px;
    margin: 10px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        height: 400px;
    }

    .hero-section h1 {
        font-size: 32px;
    }

    .hero-section p {
        font-size: 16px;
    }

    .cta-btn {
        font-size: 16px;
        padding: 12px 24px;
    }

    .highlights-section h2,
    .pricing-section h2,
    .itinerary-section h2,
    .gallery-section h2,
    .contact-section h2 {
        font-size: 28px;
    }

    .highlight-card img,
    .gallery-grid img {
        height: 150px;
    }

    .pricing-card .price {
        font-size: 24px;
    }

    .itinerary-section h2 {
        font-size: 34px;
    }

    .itinerary-card {
        flex-direction: column;
        padding: 15px;
    }

    .itinerary-day {
        flex: none;
        margin-bottom: 10px;
        margin-right: 0;
        font-size: 24px;
        padding: 5px 8px;
    }

    .itinerary-details {
        border-left: none;
        padding-left: 0;
        border-top: 2px dashed rgba(0, 196, 180, 0.3);
        padding-top: 10px;
    }

    .itinerary-details h4 {
        font-size: 22px;
    }

    .itinerary-buttons {
        position: static;
        margin-top: 10px;
        justify-content: center;
    }
}