:root {
    --primary-color: #1fbdbe;
    --primary-color-light: #e8f5e9;
    --secondary-color: #f7b801;
    --dark-color: #2d3a3a;
    --light-color: #ffffff;
    --gray-color: #f4f4f4;
    --border-color: #dddddd;
    --font-family: "Nunito", sans-serif;
    --header-height: 70px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}
body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--dark-color);
}
.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}
section {
    padding: 60px 0;
}
section h2.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 800;
    color: var(--primary-color);
}
.btn {
    display: inline-block;
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--dark-color);
    background-color: var(--secondary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    text-align: center;
}
.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.btn i {
    margin-right: 8px;
}
header {
    background: var(--light-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--header-height);
}
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}
header .logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
}
header .logo i {
    margin-right: 5px;
}
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}
.main-nav a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 700;
    position: relative;
    padding: 5px 0;
}
.main-nav a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}
.main-nav a:hover::after {
    width: 100%;
}
.hamburger {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--dark-color);
}
/* === HERO SECTION (STYLE MỚI - HIỆU ỨNG 3D) === */
.hero {
    position: relative;
    height: 90vh;
    min-height: 700px;
    background-image: url('../images/setting/main-background.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.7) 40%, rgba(0,0,0,0.2) 100%);
    z-index: 1; /* Lớp phủ nằm dưới chữ và xe */
}
/* LỚP MÀU NỀN CÓ CLIP-PATH (PHÉP THUẬT MỚI) */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%; /* Tăng chiều rộng mảng màu lên một chút */
    height: 100%;
    background-color: var(--primary-color);
    clip-path: polygon(25% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 2; /* Nằm trên lớp phủ tối */
}
.hero .container.hero-container {
    position: relative;
    z-index: 4; /* Nâng chữ lên lớp cao nhất */
}
.hero-content {
    max-width: 50%; /* Giảm chiều rộng cột chữ lại một chút */
    text-align: left;
}
@media (max-width: 992px) {
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
}
.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--light-color);
}
.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}
.cta-buttons { display: flex; gap: 15px; flex-wrap: wrap; }
@media (max-width: 992px) { .cta-buttons { justify-content: center; } }
.cta-buttons .btn { padding: 15px 30px; font-size: 1.1rem; border-radius: 50px; border: 2px solid transparent; }
.cta-buttons .btn-primary { background-color: var(--secondary-color); color: var(--dark-color); }
.cta-buttons .btn-primary:hover { background-color: transparent; border-color: var(--secondary-color); color: var(--secondary-color); }
.cta-buttons .btn-secondary { background-color: transparent; color: var(--light-color); border-color: var(--light-color); }
.cta-buttons .btn-secondary:hover { background-color: var(--light-color); color: var(--dark-color); }
/* VÙNG CHỨA ẢNH XE (ĐÃ BỎ CLIP-PATH) */
.hero-image-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 65%; /* Cho vùng chứa xe rộng hơn mảng màu một chút để xe tràn ra ngoài */
    height: 100%;
    z-index: 3; /* Nằm trên mảng màu xanh, dưới lớp chữ */
}
.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center; /* Căn xe ra giữa vùng chứa */
    /* Thêm hiệu ứng đổ bóng nhẹ cho xe thêm nổi bật */
    filter: drop-shadow(10px 10px 20px rgba(0,0,0,0.5)); 
}
@media (max-width: 992px) {
    .hero-image-container {
        display: none;
    }
    .hero {
        text-align: center;
    }
    .hero::after {
        display: none; /* Ẩn cả mảng màu trên mobile */
    }
}
.why-us {
    background-color: var(--gray-color);
}
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.why-us-item {
    background: var(--light-color);
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}
.why-us-item:hover {
    transform: translateY(-10px);
}
.why-us-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}
.why-us-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}
.commitment {
    background-color: var(--primary-color);
    color: var(--light-color);
}
.commitment h2.section-title {
    color: var(--light-color);
}
.commitment-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
@media (min-width: 768px) {
    .commitment-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}
.commitment-item {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    background-color: rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}
.commitment-item:hover {
    background-color: rgba(0, 0, 0, 0.2);
}
.commitment-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}
.commitment-text h3 {
    font-size: 1.2rem;
    margin: 0 0 5px 0;
    color: var(--light-color);
}
.commitment-text p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}
.comparison {
    background-color: var(--gray-color);
}
.comparison-table-wrapper {
    overflow-x: auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}
.comparison table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}
.comparison th,
.comparison td {
    padding: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
    vertical-align: middle;
}
.comparison thead th {
    background-color: var(--dark-color);
    color: var(--light-color);
    font-size: 1.1rem;
}
.comparison tbody tr:nth-child(even) {
    background-color: var(--light-color);
}
.comparison td:first-child {
    text-align: left;
    font-weight: bold;
}
.comparison th i,
.comparison td i {
    margin-right: 8px;
}
.comparison .highlight {
    background-color: var(--primary-color);
}
.comparison .check-icon {
    color: #1fbdbe;
    font-weight: bold;
}
.comparison .cross-icon {
    color: #dc3545;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: center;
}
.pricing-card {
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.pricing-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
}
.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 15px 0;
}
.pricing-card .price-note {
    font-style: italic;
    color: #777;
}
.pricing-card .btn {
    margin-top: 20px;
}
.detailed-pricing {
    background-color: var(--gray-color);
}
.pricing-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}
.pricing-intro .slogan {
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}
.pricing-intro .commit-list {
    list-style: none;
    display: inline-block;
    text-align: left;
    margin-top: 20px;
}
.pricing-intro .commit-list li {
    margin-bottom: 8px;
}
.pricing-intro .commit-list i {
    color: var(--primary-color);
    margin-right: 10px;
}
.pricing-tables-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.price-table-card {
    background: var(--light-color);
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.price-table-header {
    background: var(--primary-color);
    color: var(--light-color);
    padding: 20px;
    text-align: center;
}
.price-table-header h3 {
    margin: 0;
    font-size: 1.5rem;
}
.price-table-body {
    padding: 25px;
    flex-grow: 1;
}
.price-table-body h4 {
    font-size: 1.2rem;
    margin-top: 15px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color-light);
    color: var(--dark-color);
}
.price-table-body h4:first-child {
    margin-top: 0;
}
.price-table-body ul {
    list-style: none;
}
.price-table-body li {
    padding: 10px 0;
    border-bottom: 1px dashed var(--border-color);
}
.price-table-body li:last-child {
    border-bottom: none;
}
.pricing-footer {
    margin-top: 50px;
    text-align: center;
    background: var(--primary-color-light);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid var(--primary-color);
}
.pricing-footer .final-slogan {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-color);
}
.process {
    background-color: var(--light-color);
}
.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    text-align: center;
}
.step-item {
    flex: 1;
    padding: 0 20px;
}
.step-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--primary-color-light);
    color: var(--primary-color);
    font-size: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    position: relative;
    border: 3px solid var(--primary-color);
}
.step-icon span {
    position: absolute;
    top: -15px;
    left: -15px;
    background: var(--secondary-color);
    color: var(--dark-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 700;
    border: 3px solid var(--light-color);
}
.step-connector {
    flex: 0.5;
    height: 2px;
    background: var(--border-color);
    margin-top: 50px;
}
.fleet {
    background-color: var(--gray-color);
}
.fleet-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.fleet-gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.fleet-gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.testimonial-card {
    background: var(--gray-color);
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid var(--primary-color);
}
.testimonial-card p.quote {
    font-style: italic;
    margin-bottom: 20px;
}
.testimonial-card .author {
    display: flex;
    align-items: center;
}
.testimonial-card .author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}
.testimonial-card .author span {
    font-weight: 700;
}
.fanpage {
    background-color: var(--gray-color);
}
.fanpage-embed-wrapper {
    max-width: 500px;
    margin: 0 auto;
    background-color: var(--light-color);
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    line-height: 0;
}
.fanpage-embed-wrapper iframe {
    width: 100% !important;
    border-radius: 8px;
}
.faq {
    background-color: var(--light-color);
}
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid var(--border-color);
}
.faq-question {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 20px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--dark-color);
}
.faq-question i {
    transition: transform 0.3s ease;
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: var(--gray-color);
}
.faq-answer p {
    padding: 20px;
}
.booking {
    background-color: var(--primary-color);
    color: var(--light-color);
    text-align: center;
}
.booking h2.section-title {
    color: var(--light-color);
}
.booking p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}
footer {
    background-color: var(--dark-color);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 20px 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}
.footer-column h3,
.footer-column h4 {
    color: var(--light-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}
.footer-column .footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}
.footer-column p {
    margin-bottom: 20px;
    line-height: 1.8;
}
.footer-column ul {
    list-style: none;
    padding: 0;
}
.footer-column ul li {
    margin-bottom: 12px;
}
.footer-column ul a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
}
.footer-column ul a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}
.footer-column .social-links a {
    color: var(--light-color);
    font-size: 1.5rem;
    margin-right: 15px;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-column .social-links a:hover {
    color: var(--secondary-color);
}
.footer-column ul li i {
    margin-right: 10px;
    color: var(--secondary-color);
    width: 20px;
    text-align: center;
}
.keyword-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.keyword-badges span {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}
.keyword-badges span:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}
.social-links a {
    color: var(--light-color);
    font-size: 1.5rem;
    margin: 0 10px;
    text-decoration: none;
}
.floating-call-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary-color);
    color: var(--light-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: pulse 1.5s infinite;
    z-index: 99;
}
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}
@media (max-width: 992px) {
    .main-nav {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background-color: var(--light-color);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    .main-nav.active {
        display: block;
    }
    .main-nav ul {
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        gap: 0;
    }
    .main-nav li {
        width: 100%;
        text-align: center;
    }
    .main-nav a {
        display: block;
        padding: 15px 0;
        width: 100%;
    }
    .main-nav a:hover {
        background-color: var(--gray-color);
    }
    .main-nav a::after {
        display: none;
    }
    .hamburger {
        display: block;
    }
    .header-cta {
        display: none;
    }
}
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero p {
        font-size: 1.1rem;
    }
    .hero .cta-buttons {
        flex-direction: column;
        width: 80%;
    }
    section h2.section-title {
        font-size: 2rem;
    }
    .pricing-tables-grid {
        grid-template-columns: 1fr;
    }
    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .step-connector {
        display: none;
    }
}
/* ===================================
   SECTION TIN TỨC (NEWS)
====================================== */
.news {
    padding: 80px 0;
    background-color: #f9f9f9; /* Một màu nền nhẹ để tách biệt section */
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.news-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.news-image-link img {
    width: 100%;
    height: 200px;
    object-fit: cover; /* Đảm bảo ảnh luôn đẹp */
    display: block;
}

.news-content {
    padding: 25px;
}

.news-meta {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 10px;
}

.news-meta span {
    margin-right: 15px;
}

.news-meta i {
    margin-right: 5px;
    color: var(--primary-color); /* Sử dụng màu chính của trang */
}

.news-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-title a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}

.news-title a:hover {
    color: var(--primary-color);
}

.news-excerpt {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: bold;
    transition: color 0.3s ease;
}

.read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}