/* Style Sheet for Honda VietThaiQuan Redesign - Light & Contrast Gray Theme */
/* Color Palette & Custom Variables */
:root {
    --honda-red: #cc0000;
    --honda-red-hover: #990000;
    --bg-white: #ffffff;
    --bg-gray-light: #f5f6f8; /* Light gray */
    --bg-gray-darker: #eaecef; /* Slightly darker gray for rich section contrast */
    --text-dark: #1a1a1a;      /* Dark charcoal for main text */
    --text-muted: #555555;     /* Slate gray for paragraphs */
    --border-color: #dcdcdc;   /* Accent border */
    --gold: #cc8500;           /* Clean gold for price emphasis */
    --gold-bg: rgba(204, 133, 0, 0.1);
    
    /* Social Colors */
    --fb-color: #3b5998;
    --zalo-color: #0084ff;
    --phone-color: #e74c3c;
    
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --font-primary: 'Inter', sans-serif;
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-card: 0 8px 30px rgba(0, 0, 0, 0.08);
}
/* Resets & Base Configuration */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    font-family: var(--font-primary);
    background-color: var(--bg-white);
    color: var(--text-dark);
}
body {
    overflow-x: hidden;
    line-height: 1.6;
    background-color: var(--bg-white);
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
/* Global Section Header (VietThaiQuan Style) */
.vtq-section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 50px auto 40px;
    max-width: 800px;
    text-align: center;
}
.vtq-section-header .line {
    flex: 1;
    height: 1px;
    background-color: var(--border-color);
}
.vtq-section-header h2 {
    color: var(--honda-red);
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 1.5px;
    white-space: nowrap;
    position: relative;
    padding: 8px 0;
}
.vtq-section-header h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 10%;
    width: 80%;
    height: 2px;
    background-color: var(--honda-red);
}
/* Header Section styling (VTQ Dealer) */
.header {
    position: sticky;
    top: 0;
    background-color: var(--bg-white);
    border-bottom: 3px solid var(--honda-red);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    height: 90px;
    display: flex;
    align-items: center;
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
/* Logo styling */
.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.logo-badge {
    background-color: var(--honda-red);
    color: var(--bg-white);
    font-size: 24px;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}
.logo-text {
    display: flex;
    flex-direction: column;
}
.logo-title {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.1;
}
.logo-tagline {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1px;
}
/* Nav Menu */
.nav-menu {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
    overflow: hidden;
}
.nav-link {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 0.3px;
    transition: var(--transition-smooth);
    padding: 6px 8px;
    position: relative;
    white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
    color: var(--honda-red);
}
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--honda-red);
}
/* Header Right Area */
.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.map-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}
.map-link:hover {
    color: var(--honda-red);
}
.map-icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
}
.btn-hotline {
    background-color: var(--honda-red);
    color: var(--bg-white);
    padding: 10px 18px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(204, 0, 0, 0.2);
    transition: var(--transition-smooth);
}
.btn-hotline:hover {
    background-color: var(--honda-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(204, 0, 0, 0.3);
}
.phone-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
}
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}
.menu-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition-smooth);
}
/* Hero Slider/Banner */
.hero-slider {
    position: relative;
    height: 520px;
    background-color: #1a1a1a;
    overflow: hidden;
}
.slide {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
}
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}
.slide-content-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    width: 100%;
}
.slide-text-box {
    background-color: rgba(255, 255, 255, 0.98);
    border-left: 6px solid var(--honda-red);
    padding: 40px 48px;
    border-radius: 0 8px 8px 0;
    width: 60%;
    flex-shrink: 0;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}
.hero-image-box {
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.hero-bike-img {
    width: 100%;
    max-width: 440px;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    filter: brightness(1.05) contrast(1.05);
}
.slide-badge {
    display: inline-block;
    background-color: var(--honda-red);
    color: var(--bg-white);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 2px;
    margin-bottom: 18px;
}
.slide-title {
    font-size: 32px;
    font-weight: 850;
    line-height: 1.25;
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}
.slide-desc {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 28px;
    line-height: 1.6;
}
.slide-buttons {
    display: flex;
    gap: 12px;
}
.btn-red {
    background-color: var(--honda-red);
    color: var(--bg-white);
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition-smooth);
    display: inline-block;
}
.btn-red:hover {
    background-color: var(--honda-red-hover);
    transform: translateY(-2px);
}
.btn-white-trans {
    background-color: transparent;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition-smooth);
    display: inline-block;
}
.btn-white-trans:hover {
    background-color: var(--bg-gray-light);
    transform: translateY(-2px);
}
/* Slider Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    color: white;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
}
.slider-arrow:hover {
    background: var(--honda-red);
}
.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}
.slider-dots .dot {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    cursor: pointer;
}
.slider-dots .dot.active {
    background: var(--honda-red);
    transform: scale(1.2);
}
/* Section: SẢN PHẨM NỔI BẬT (Horizontal Carousel) */
.section-products {
    padding: 60px 0;
    background-color: var(--bg-white);
}
.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}
.products-carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc(25% - 18px); /* 4 items layout */
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 12px 4px;
    width: 100%;
}
/* Hide default scrollbars */
.products-carousel::-webkit-scrollbar {
    display: none;
}
.products-carousel {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
/* Product Card design */
.prod-card {
    background-color: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
    scroll-snap-align: start;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
}
.prod-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
    border-color: rgba(204, 0, 0, 0.15);
}
.prod-img-box {
    background-color: var(--bg-gray-light);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    overflow: hidden;
}
.prod-img {
    max-height: 100%;
    object-fit: contain;
    transition: var(--transition-smooth);
}
.prod-card:hover .prod-img {
    transform: scale(1.08);
}
.prod-meta {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: center;
}
.prod-type {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.8px;
    margin-bottom: 6px;
}
.prod-name {
    font-size: 18px;
    font-weight: 750;
    color: var(--honda-red);
    margin-bottom: 8px;
}
.prod-price {
    font-size: 13px;
    color: var(--text-dark);
    margin-bottom: 18px;
}
.prod-price strong {
    font-size: 16px;
    color: var(--text-dark);
    margin-left: 4px;
}
.prod-cta {
    background-color: var(--bg-white);
    color: var(--honda-red);
    border: 1.5px solid var(--honda-red);
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    transition: var(--transition-smooth);
    margin-top: auto;
    display: block;
}
.prod-card:hover .prod-cta {
    background-color: var(--honda-red);
    color: var(--bg-white);
    box-shadow: 0 4px 10px var(--honda-red-glow);
}
/* Carousel Nav Buttons */
.carousel-nav {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    position: absolute;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}
.carousel-nav:hover {
    background-color: var(--honda-red);
    color: var(--bg-white);
    border-color: var(--honda-red);
}
.carousel-nav.prev { left: -16px; }
.carousel-nav.next { right: -16px; }
.carousel-dots-indicator {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}
.carousel-dots-indicator .dot {
    width: 8px;
    height: 8px;
    background: #d0d0d0;
    border-radius: 50%;
    cursor: pointer;
}
.carousel-dots-indicator .dot.active {
    background: var(--honda-red);
    width: 24px;
    border-radius: 4px;
}
/* Section: DÒNG XE (Lifestyle Images Grid) */
.section-lifestyle {
    padding: 60px 0;
    background-color: var(--bg-gray-light);
    border-top: 1px solid rgba(0,0,0,0.04);
}
.lifestyle-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr; /* Custom wide left layout */
    gap: 24px;
}
.lifestyle-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 380px;
    box-shadow: var(--shadow-soft);
}
.lifestyle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}
.lifestyle-card:hover .lifestyle-img {
    transform: scale(1.04);
}
.electric-scooter-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2b3a42 0%, #4a5c68 100%);
    position: relative;
    display: flex;
    align-items: center;
    padding: 40px;
}
.icon-e-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background-color: #2ecc71;
    color: white;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 14px;
}
.lifestyle-overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 70%, rgba(0,0,0,0) 100%);
    padding: 40px;
    color: var(--bg-white);
    z-index: 2;
}
.electric-scooter-bg .lifestyle-overlay-content {
    position: static;
    background: none;
    padding: 0;
}
.lifestyle-overlay-content h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 6px;
}
.lifestyle-overlay-content p {
    font-size: 15px;
    margin-bottom: 20px;
    opacity: 0.9;
}
.lifestyle-overlay-content p strong {
    color: var(--gold);
    font-size: 18px;
}
.lifestyle-link {
    display: inline-block;
    background-color: var(--honda-red);
    color: var(--bg-white);
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 13px;
    transition: var(--transition-smooth);
}
.lifestyle-link:hover {
    background-color: var(--honda-red-hover);
    transform: translateY(-2px);
}
/* Section: Nỗi lo của khách hàng (Pain Points) - Rich Section Contrast */
.section-pain-points {
    padding: 70px 0;
    background-color: var(--bg-gray-darker); /* Rich Gray Section background */
}
.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}
.pain-box {
    background-color: var(--bg-white);
    border: 1px solid rgba(0,0,0,0.05);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}
.pain-num {
    font-size: 40px;
    font-weight: 800;
    color: rgba(204, 0, 0, 0.15);
    position: absolute;
    top: 20px;
    right: 30px;
    line-height: 1;
}
.pain-box h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-dark);
}
.pain-box p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}
/* Section: Giải pháp (Solutions) */
.section-solutions {
    padding: 80px 0;
    background-color: var(--bg-white);
}
.solutions-container-box {
    display: flex;
    gap: 48px;
    align-items: center;
}
.sol-left {
    flex: 1.2;
}
.sol-left h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 18px;
}
.sol-left p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 30px;
}
.sol-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.sol-checklist li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.check-svg {
    width: 22px;
    height: 22px;
    fill: #2ecc71;
    flex-shrink: 0;
    margin-top: 2px;
}
.sol-checklist li span {
    font-size: 14px;
    color: var(--text-muted);
}
.sol-checklist li strong {
    color: var(--text-dark);
    font-size: 15px;
}
.sol-right {
    flex: 0.8;
}
.stats-box {
    background-color: var(--bg-gray-darker);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-shadow: var(--shadow-soft);
}
.stat-card {
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding-bottom: 18px;
}
.stat-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 850;
    color: var(--honda-red);
    line-height: 1.1;
    margin-bottom: 4px;
}
.stat-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
}
/* Call to Action Section (Form & Timer) */
.section-cta {
    padding: 80px 0;
    background-color: var(--bg-gray-darker);
    border-top: 1px solid rgba(0,0,0,0.06);
}
.cta-flex-container {
    display: flex;
    gap: 48px;
    align-items: center;
}
.cta-left {
    flex: 1.1;
}
.voucher-box {
    margin-bottom: 36px;
}
.voucher-tag {
    display: inline-block;
    background-color: var(--gold-bg);
    color: var(--gold);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 6px 12px;
    border-radius: 4px;
    margin-bottom: 16px;
}
.voucher-box h2 {
    font-size: 30px;
    font-weight: 850;
    line-height: 1.3;
    margin-bottom: 16px;
    color: var(--text-dark);
}
.text-red {
    color: var(--honda-red);
}
.voucher-sub {
    color: var(--text-muted);
    font-size: 15px;
}
.countdown-container p {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 10px;
    text-transform: uppercase;
}
.timer-box {
    display: flex;
    align-items: center;
    gap: 12px;
}
.timer-unit {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    min-width: 64px;
    height: 64px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
}
.timer-unit span {
    font-size: 24px;
    font-weight: 800;
    color: var(--honda-red);
    line-height: 1;
}
.timer-unit small {
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 2px;
}
.t-colon {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-muted);
}
.cta-right {
    flex: 0.9;
    width: 100%;
}
.lead-form {
    background-color: var(--bg-white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow-card);
}
.lead-form h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--text-dark);
}
.lead-form p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 24px;
}
.input-group {
    margin-bottom: 18px;
}
.input-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}
.input-group label .required {
    color: var(--honda-red);
}
.input-group input, .input-group select {
    width: 100%;
    padding: 12px 14px;
    font-size: 14px;
    border: 1.5px solid var(--border-color);
    border-radius: 6px;
    outline: none;
    font-family: var(--font-primary);
    transition: var(--transition-smooth);
}
.input-group input:focus, .input-group select:focus {
    border-color: var(--honda-red);
    box-shadow: 0 0 0 3px rgba(204, 0, 0, 0.08);
}
.validation-msg {
    color: var(--honda-red);
    font-size: 11px;
    margin-top: 4px;
    display: none;
}
.btn-submit-red {
    background-color: var(--honda-red);
    color: var(--bg-white);
    border: none;
    width: 100%;
    padding: 14px;
    font-size: 14px;
    font-weight: 800;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(204,0,0,0.2);
    transition: var(--transition-smooth);
    margin-top: 10px;
}
.btn-submit-red:hover {
    background-color: var(--honda-red-hover);
    box-shadow: 0 6px 15px rgba(204,0,0,0.3);
}
.arrow-svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    transition: var(--transition-smooth);
}
.btn-submit-red:hover .arrow-svg {
    transform: translateX(4px);
}
.form-disclaimer {
    display: block;
    text-align: center;
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 14px;
}
/* Floating Sidebar Widgets */
.floating-sidebar {
    position: fixed;
    right: 20px;
    bottom: 80px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.float-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    outline: none;
    text-decoration: none;
}
.float-btn:hover {
    transform: scale(1.1) translateY(-2px);
}
.float-fb {
    background-color: var(--fb-color);
}
.float-fb svg {
    width: 22px;
    height: 22px;
    fill: white;
}
.float-zalo {
    background-color: var(--zalo-color);
    color: white;
}
.zalo-text {
    font-size: 12px;
    font-weight: 850;
    letter-spacing: -0.5px;
}
.float-phone {
    background-color: var(--phone-color);
    animation: phonePulse 2s infinite;
}
.float-phone svg {
    width: 20px;
    height: 20px;
    fill: white;
}
.float-top {
    background-color: var(--bg-white);
    border: 1px solid rgba(0,0,0,0.08);
}
.float-top svg {
    width: 24px;
    height: 24px;
    fill: var(--text-dark);
}
/* Footer styling */
.footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
}
.footer-about h3 {
    color: var(--bg-white);
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 18px;
}
.footer-about p {
    color: #a0a0a0;
    font-size: 14px;
    margin-bottom: 18px;
}
.hotline-text {
    font-size: 18px !important;
    font-weight: 800;
    color: var(--gold) !important;
}
.footer-links h4 {
    color: var(--bg-white);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 18px;
}
.footer-links a {
    display: block;
    color: #a0a0a0;
    font-size: 14px;
    text-decoration: none;
    margin-bottom: 12px;
    transition: var(--transition-smooth);
}
.footer-links a:hover {
    color: var(--honda-red);
    padding-left: 4px;
}
.footer-bar {
    border-top: 1px solid #2e2e2e;
    padding: 24px 0;
    text-align: center;
}
.footer-bar p {
    color: #777777;
    font-size: 12px;
}
/* Success Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.modal-content {
    background-color: var(--bg-white);
    width: 90%;
    max-width: 480px;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.modal-overlay.active .modal-content {
    transform: translateY(0);
}
.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 24px;
    cursor: pointer;
}
.modal-close:hover {
    color: var(--text-dark);
}
.modal-success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: rgba(46, 204, 113, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.modal-success-icon svg {
    width: 32px;
    height: 32px;
    fill: #2ecc71;
}
.modal-content h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}
.modal-content p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 6px;
}
.modal-content p strong {
    color: var(--text-dark);
}
.modal-subtext {
    font-size: 13px !important;
    color: #7f8c8d !important;
    margin-top: 14px;
    margin-bottom: 24px !important;
}
.btn-modal-confirm {
    background-color: var(--honda-red);
    color: var(--bg-white);
    border: none;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    width: 100%;
    transition: var(--transition-smooth);
}
.btn-modal-confirm:hover {
    background-color: var(--honda-red-hover);
}
/* Animations */
@keyframes phonePulse {
    0% { box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(231, 76, 60, 0); }
    100% { box-shadow: 0 0 0 0 rgba(231, 76, 60, 0); }
}
/* Responsive Styles */
@media (max-width: 1024px) {
    .products-carousel {
        grid-auto-columns: calc(33.333% - 16px);
    }
}
@media (max-width: 991px) {
    .header {
        height: 80px;
    }
    .hero-slider {
        height: 440px;
    }
    .slide-text-box {
        max-width: 480px;
        width: 55%;
        padding: 30px;
    }
    .hero-image-box {
        width: 45%;
    }
    .hero-bike-img {
        height: 240px;
    }
    .slide-title {
        font-size: 26px;
    }
    .lifestyle-grid {
        grid-template-columns: 1fr;
    }
    .lifestyle-card {
        height: 300px;
    }
    .solutions-container-box {
        flex-direction: column;
    }
    .sol-right {
        width: 100%;
    }
    .cta-flex-container {
        flex-direction: column;
        gap: 32px;
    }
    .cta-left, .cta-right {
        width: 100%;
    }
    .countdown-container {
        display: flex;
        align-items: center;
        gap: 16px;
    }
    .countdown-container p {
        margin-bottom: 0;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}
@media (max-width: 768px) {
    .products-carousel {
        grid-auto-columns: calc(50% - 12px);
        gap: 24px;
    }
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 40px;
        gap: 20px;
        border-top: 1px solid var(--border-color);
        transition: var(--transition-smooth);
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
    }
    .nav-menu.active {
        left: 0;
    }
    .menu-toggle {
        display: flex;
    }
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
    .header-right .map-link {
        display: none; /* Hide on small screen to save space */
    }
    .vtq-section-header h2 {
        font-size: 20px;
    }
    .hero-image-box {
        display: none;
    }
    .slide-text-box {
        max-width: 100%;
        width: 100%;
        border-radius: 0;
        box-shadow: none;
        background-color: rgba(255, 255, 255, 0.95);
        padding: 24px;
    }
    .products-carousel {
        grid-auto-columns: 100%;
        padding: 4px;
    }
    .carousel-nav {
        display: none; /* Hide navigation arrows, allow swipe */
    }
}
/* =============================================
   Section: CÁC DÒNG XE NỔI BẬT
   ============================================= */
.section-xe-noibat {
    padding: 70px 0;
    background-color: var(--bg-gray-light);
    border-top: 1px solid rgba(0,0,0,0.04);
}
.xe-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.xe-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.05);
}
.xe-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.13);
    border-color: rgba(204,0,0,0.12);
}
.xe-card-img-wrap {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: var(--bg-gray-darker);
}
.xe-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
    display: block;
}
.xe-card:hover .xe-card-img {
    transform: scale(1.06);
}
.xe-card-body {
    padding: 22px 24px 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.xe-card-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--honda-red);
    background-color: rgba(204,0,0,0.07);
    padding: 3px 8px;
    border-radius: 3px;
    display: inline-block;
    margin-bottom: 10px;
    width: fit-content;
}
.xe-card-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.2;
}
.xe-card-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 20px;
}
.xe-card-btn {
    display: block;
    text-align: center;
    background-color: var(--bg-white);
    color: var(--honda-red);
    border: 1.5px solid var(--honda-red);
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    transition: var(--transition-smooth);
    margin-top: auto;
}
.xe-card:hover .xe-card-btn {
    background-color: var(--honda-red);
    color: var(--bg-white);
}
/* Responsive: xe-grid */
@media (max-width: 1024px) {
    .xe-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .xe-grid {
        grid-template-columns: 1fr;
    }
}

/* ==============================================
   PATCH CSS — Chuyển đổi Landing Page → Website
   Thêm vào cuối style.css hiện tại
   ============================================== */

/* Hero: thêm btn-outline-dark cho CTA thứ 2 */
.btn-outline-dark {
    background-color: transparent;
    color: var(--bg-white);
    border: 2px solid rgba(255,255,255,0.8);
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition-smooth);
    display: inline-block;
}
.btn-outline-dark:hover {
    background-color: rgba(255,255,255,0.15);
    border-color: var(--bg-white);
    transform: translateY(-2px);
}

/* ---- SECTION GIỚI THIỆU ĐẠI LÝ ---- */
.section-about {
    padding: 80px 0;
    background-color: var(--bg-white);
    border-bottom: 1px solid rgba(0,0,0,0.04);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.about-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--honda-red);
    margin-bottom: 14px;
}
.about-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 20px;
}
.about-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 14px;
}
.about-stats {
    display: flex;
    gap: 0;
    margin-top: 32px;
    border-top: 1px solid var(--border-color);
    padding-top: 28px;
}
.abt-stat {
    flex: 1;
    text-align: center;
    border-right: 1px solid var(--border-color);
    padding: 0 16px;
}
.abt-stat:first-child { padding-left: 0; }
.abt-stat:last-child { border-right: none; padding-right: 0; }
.abt-num {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--honda-red);
    line-height: 1.1;
    margin-bottom: 4px;
}
.abt-lbl {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}
.about-certs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.cert-card {
    background: var(--bg-gray-light);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 12px;
    padding: 24px 20px;
    transition: var(--transition-smooth);
}
.cert-card:hover {
    background: var(--bg-white);
    box-shadow: var(--shadow-card);
    transform: translateY(-4px);
    border-color: rgba(204,0,0,0.1);
}
.cert-icon {
    width: 40px;
    height: 40px;
    background: rgba(204,0,0,0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}
.cert-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--honda-red);
}
.cert-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}
.cert-card p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ---- SECTION ƯU ĐÃI ---- */
.section-uudai {
    padding: 80px 0;
    background-color: var(--bg-white);
}
.uudai-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.uudai-card {
    background: var(--bg-gray-light);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 12px;
    padding: 28px 22px;
    transition: var(--transition-smooth);
}
.uudai-card:hover {
    background: var(--bg-white);
    box-shadow: var(--shadow-card);
    transform: translateY(-4px);
    border-color: rgba(204,0,0,0.12);
}
.uudai-icon {
    width: 48px;
    height: 48px;
    background: rgba(204,0,0,0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.uudai-icon svg {
    width: 26px;
    height: 26px;
    fill: var(--honda-red);
}
.uudai-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}
.uudai-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}
.uudai-note {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 32px;
    font-style: italic;
}

/* ---- SECTION ĐẶT LỊCH LÁI THỬ ---- */
.section-laithu {
    padding: 70px 0;
    background-color: var(--bg-gray-darker);
    border-top: 1px solid rgba(0,0,0,0.05);
}
.laithu-flex {
    display: flex;
    gap: 60px;
    align-items: center;
}
.laithu-text {
    flex: 1.2;
}
.laithu-badge {
    display: inline-block;
    background: rgba(204,0,0,0.08);
    color: var(--honda-red);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 5px 12px;
    border-radius: 4px;
    margin-bottom: 16px;
}
.laithu-text h2 {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 14px;
    line-height: 1.3;
}
.laithu-text p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}
.laithu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.laithu-list li {
    font-size: 14px;
    color: var(--text-muted);
    padding-left: 20px;
    position: relative;
}
.laithu-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--honda-red);
    font-weight: 700;
}
.laithu-map {
    flex: 0.8;
}
.map-placeholder {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow-soft);
}
.map-placeholder svg {
    width: 48px;
    height: 48px;
    fill: var(--honda-red);
    margin-bottom: 16px;
}
.map-placeholder p {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 20px;
}
.btn-map-link {
    display: inline-block;
    border: 1.5px solid var(--honda-red);
    color: var(--honda-red);
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    transition: var(--transition-smooth);
}
.btn-map-link:hover {
    background: var(--honda-red);
    color: var(--bg-white);
}

/* ---- SECTION LIÊN HỆ: thay countdown bằng contact info ---- */
.contact-info-block {
    margin-bottom: 36px;
}
.contact-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--honda-red);
    margin-bottom: 12px;
}
.contact-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.35;
    margin-bottom: 14px;
}
.contact-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.contact-row svg {
    width: 22px;
    height: 22px;
    fill: var(--honda-red);
    flex-shrink: 0;
    margin-top: 2px;
}
.cdt-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}
.cdt-value {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition-smooth);
}
a.cdt-value:hover { color: var(--honda-red); }

/* ---- RESPONSIVE PATCHES ---- */
@media (max-width: 991px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-certs { grid-template-columns: 1fr 1fr; }
    .uudai-grid { grid-template-columns: repeat(2, 1fr); }
    .laithu-flex { flex-direction: column; gap: 32px; }
    .laithu-text, .laithu-map { width: 100%; flex: unset; }
}
@media (max-width: 600px) {
    .about-certs { grid-template-columns: 1fr; }
    .uudai-grid { grid-template-columns: 1fr; }
    .about-stats { flex-direction: column; gap: 16px; }
    .abt-stat { border-right: none; border-bottom: 1px solid var(--border-color); padding-bottom: 14px; }
    .abt-stat:last-child { border-bottom: none; }
    .slide-buttons { flex-direction: column; gap: 8px; }
    .contact-title { font-size: 22px; }
}


/* ===== THÊM MỚI: pain-bullets ===== */
.pain-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.pain-bullets li {
    padding-left: 20px;
    position: relative;
    font-size: 0.92rem;
    color: #555;
    line-height: 1.5;
}
.pain-bullets li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #e2001a;
    font-weight: 700;
}

/* ===== THÊM MỚI: about-cta-row ===== */
.about-cta-row {
    display: flex;
    gap: 12px;
    margin-top: 28px;
    flex-wrap: wrap;
}
.btn-outline-red {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border: 2px solid #e2001a;
    color: #e2001a;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s ease;
}
.btn-outline-red:hover {
    background: #e2001a;
    color: #fff;
}
@media (max-width: 480px) {
    .about-cta-row {
        flex-direction: column;
    }
    .btn-outline-red {
        justify-content: center;
    }
}

/* ===== FOOTER 3 CỘT ===== */
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
    padding: 48px 0 32px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}
.footer-brand {
    display: block;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
}
.footer-tagline {
    display: block;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.55);
}
.footer-about p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
    margin-bottom: 16px;
}
.footer-social {
    display: flex;
    gap: 10px;
}
.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: rgba(255,255,255,0.1);
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    transition: background 0.2s;
}
.social-link:hover { background: #e2001a; }
.social-link svg { fill: #fff; }
.footer-contact h4,
.footer-links h4 {
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.45);
    margin-bottom: 14px;
}
.footer-contact p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 8px;
    line-height: 1.5;
}
.footer-contact a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
}
.footer-contact a:hover { color: #fff; }

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
    .footer-about {
        grid-column: 1 / -1;
    }
}
@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
