* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f8f8f8 0%, #f8f8f8 100%);
    min-height: 100vh;
    margin: 0; /* Loại bỏ margin mặc định của body */
    padding: 0; /* Loại bỏ padding mặc định của body */
}

/* CSS cho Banner */
.banner-container {
    width: 100%; /* Kéo dài hết chiều ngang */
    overflow: hidden; /* Đảm bảo không có phần thừa */
    margin: 0; /* Loại bỏ margin */
    padding: 0; /* Loại bỏ padding */
    z-index: 1000; /* Đảm bảo nó nằm trên các phần tử khác */
    margin-top: -50px;
}

.banner {
    width: 100%; /* Banner kéo dài hết chiều ngang */
    height: auto; /* Giữ tỷ lệ ảnh */
    display: block; /* Đảm bảo không có khoảng trống bên dưới ảnh */
}

.vehicle-rental-content {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.vehicle-card {
    display: flex;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 20px;
    min-height: 250px;
}

.vehicle-image {
    flex: 0 0 40%;
}

.vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vehicle-details {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.vehicle-details h3 {
    color: #1A3C6D;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 10px;
}

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

.rating .stars {
    color: #FFD740;
    font-size: 16px;
}

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

.vehicle-details .description {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    margin: 0 0 15px;
}

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

.amenity-chip {
    background-color: #F0F4F8;
    color: #1A3C6D;
    padding: 5px 12px;
    border-radius: 16px;
    font-size: 14px;
    border: 1px solid #DDE4EE;
}

.vehicle-details .price {
    color: #1A3C6D;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.buttons {
    display: flex;
    gap: 10px;
    align-self: flex-end;
}

.rent-btn, .preview-btn, .info-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.3s;
}

.rent-btn {
    background-color: #00C4B4;
    color: white;
}

.rent-btn:hover {
    background-color: #00A69A;
    transform: scale(1.05);
}

.preview-btn {
    background-color: #F0F4F8;
    color: #1A3C6D;
}

.preview-btn:hover {
    background-color: #DDE4EE;
    transform: scale(1.05);
}

.info-btn {
    background-color: #F0F4F8;
    color: #1A3C6D;
}

.info-btn:hover {
    background-color: #DDE4EE;
    transform: scale(1.05);
}

/* Popup styles (giữ nguyên từ thiết kế gốc của bạn) */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
  align-items: center;   /* THÊM DÒNG NÀY */
  justify-content: center;
}

.modal-content {
    background-color: #fff;
    margin: 6% auto;
    padding: 25px;
    border-radius: 12px;
    width: 80%;
    max-width: 800px;
    position: relative;
    font-size: 18px; /* Tăng kích thước chữ cơ bản */
}

.modal-content h2 {
    font-size: 32px; /* Tăng kích thước tiêu đề chính */
    color: #1A3C6D;
    margin-bottom: 20px;
}

.modal-content h3 {
    font-size: 26px; /* Tăng kích thước tiêu đề phụ */
    color: #1A3C6D;
    margin: 15px 0 10px;
}

.modal-content h4 {
    font-size: 22px; /* Tăng kích thước tiêu đề nhỏ */
    color: #1A3C6D;
    margin-bottom: 8px;
}

.modal-content p {
    font-size: 18px; /* Tăng kích thước đoạn văn */
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.modal-content ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.modal-content li {
    font-size: 18px; /* Tăng kích thước chữ trong danh sách */
    color: #555;
    line-height: 1.8;
    margin-bottom: 8px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 32px; /* Tăng kích thước nút đóng */
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #000;
}

.gallery {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

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

.gallery-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

.video-section video {
    width: 100%;
    border-radius: 8px;
}

/* Phần Giới Thiệu */
.intro-section {
    display: flex;
    gap: 30px;
    align-items: center;
    margin: 40px 0;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.intro-section .text {
    flex: 1;
}
.intro-section h2 {
    color: #0066CC;
    font-size: 2.8em;
    font-weight: 700;
    margin-bottom: 20px;
}
.intro-section p {
    color: #444;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
}
.intro-section .image {
    flex: 1;
}
.intro-section .image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

/* Phần Thống Kê */
.stats-section {
    background: #E6F0FA;
    padding: 40px 20px;
    border-radius: 12px;
    margin: 40px 0;
    text-align: center;
}
.stats-section h2 {
    color: #0066CC;
    font-size: 2.8em;
    font-weight: 700;
    margin-bottom: 10px;
}
.stats-section p {
    color: #444;
    font-size: 18px;
    margin-bottom: 40px;
}
.stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}
.stat-item {
    flex: 1;
    min-width: 200px;
}
.stat-item h3 {
    color: #0066CC;
    font-size: 2.8em;
    font-weight: 700;
    margin: 0;
}
.stat-item p {
    color: #555;
    font-size: 18px;
    margin: 5px 0 40px 0;
}

/* Phần Giá Trị Công Ty */
.values-section {
    margin: 40px 0;
}
.values-section h2 {
    color: #0066CC;
    font-size: 2.8em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}
.values {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}
.value-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.value-item img {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}
.value-item h3 {
    color: #0066CC;
    font-size: 1.8em;
    font-weight: 600;
    margin-bottom: 10px;
}
.value-item p {
    color: #555;
    font-size: 18px;
    margin-bottom: 40px;
}

/* Phần Dịch Vụ */
.services-section {
    margin: 40px 0;
    background: #E6F0FA;
    padding: 40px 20px;
    border-radius: 12px;
}
.services-section h2 {
    color: #0066CC;
    font-size: 2.8em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}
.services {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}
.service-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05 curta);
}
.service-item img {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}
.service-item h3 {
    color: #0066CC;
    font-size: 1.8em;
    font-weight: 600;
    margin-bottom: 10px;
}
.service-item p {
    color: #555;
    font-size: 18px;
    margin-bottom: 40px;
}

/* Phần Chất Lượng */
.quality-section {
    background: #fff;
    padding: 40px 20px;
    border-radius: 12px;
    margin: 40px 0;
}
.quality-section h2 {
    color: #0066CC;
    font-size: 2.8em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
}
.quality-section p {
    color: #444;
    font-size: 18px;
    text-align: center;
    margin-bottom: 40px;
}
.quality-testimonial {
    background: #E6F0FA;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    max-width: 600px;
    font-weight: bold;

    margin: 0 auto;
    color: #333;
    text-align: center;
}
.quality-testimonial p {
    margin: 0 0 10px;
    font-size: 18px;
}

.quality-testimonial .author {
    font-weight: bold;
    color: #0066CC;
    font-size: 18px;
}

.quality-testimonial .role {
    font-weight: bold;
    color: #4291e0;
    font-size: 10px;
}

@media (max-width: 768px) {
    .vehicle-card {
        flex-direction: column;
        min-height: auto;
    }

    .vehicle-image {
        flex: none;
        height: 200px;
    }

    .vehicle-details {
        padding: 15px;
    }

    .vehicle-details h3 {
        font-size: 20px;
    }

    .vehicle-details .price {
        font-size: 20px;
    }

    .buttons {
        flex-direction: column;
        align-self: stretch;
    }

    .rent-btn, .preview-btn, .info-btn {
        font-size: 14px;
        padding: 10px 20px;
        width: 100%;
    }

    .modal-content {
        padding: 20px;
        font-size: 16px; /* Giảm nhẹ trên mobile để cân đối */
    }

    .modal-content h2 {
        font-size: 28px;
    }

    .modal-content h3 {
        font-size: 22px;
    }

    .modal-content h4 {
        font-size: 20px;
    }

    .modal-content p {
        font-size: 16px;
    }

    .modal-content li {
        font-size: 16px;
    }

    .close {
        font-size: 28px;
    }

    .intro-section {
        flex-direction: column;
        padding: 20px;
    }
    .intro-section .image img {
        height: 200px;
    }
    .intro-section h2, .stats-section h2, .values-section h2, .services-section h2, .quality-section h2 {
        font-size: 1.8em;
    }
    .stats {
        flex-direction: column;
        gap: 20px;
    }
    .values, .services {
        flex-direction: column;
    }
}
.progress-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 800px;
    margin: 40px auto;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
    text-align: center;
}

.circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #ccc;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step.completed .circle {
    background-color: #4CAF50;
    color: white;
    border-color: #4CAF50;
}

.step.current .circle {
    border: 2px solid #FF5722;
    background-color: #fff;
    position: relative;
}
.step.current .circle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background-color: #FF5722;
}
.step p {
    margin-top: 8px;
    font-size: 14px;
    color: #1A3C6D;
    font-weight: 600;
}

.progress-line {
    height: 4px;
    background-color: #4CAF50;
    flex: 1;
    margin: 0 8px;
    margin-top: -45px;
    border-radius: 2px;
}
.contact-form {
    margin-top: -30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0 24px;
}

.contact-form label {
    font-weight: 600;
    color: #1A3C6D;
    font-size: 1.6rem;
}

.contact-form input {
    padding: 10px 14px;
    font-size: 1.4rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    outline: none;
    transition: border-color 0.3s;
}

.contact-form input:focus {
    border-color: #0066CC;
}

.pay-btn {
    margin-top: 20px;
    padding: 12px 24px;
    font-size: 1.6rem;
    font-weight: 600;
    background-color: #00C4B4;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.pay-btn:hover {
    background-color: #009e95;
}
