/* ============================================
   Honda Ô tô Thái Nguyên - Stylesheet
   Màu chủ đạo: Đỏ Honda (#CC0000)
   Website: hondathainguyen.vn
   ============================================ */

/* CSS Variables */
:root {
    --honda-red: #CC0000;
    --honda-red-dark: #A60000;
    --honda-red-light: #E81010;
    --honda-red-glow: rgba(204, 0, 0, 0.15);
    --honda-gray: #1a1a1a;
    --honda-gray-light: #f5f5f5;
    --honda-gray-medium: #888;
    --dark: #111;
    --white: #fff;
    --text-dark: #2b2b2b;
    --text-light: #666;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
    --shadow-red: 0 4px 20px rgba(204,0,0,0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 8px;
    --radius-lg: 16px;
    --max-width: 1280px;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

ul, ol {
    list-style: none;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border: none;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--honda-red);
    color: var(--white);
    box-shadow: var(--shadow-red);
}

.btn-primary:hover {
    background: var(--honda-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(204,0,0,0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--honda-red);
    border: 2px solid var(--honda-red);
}

.btn-secondary:hover {
    background: var(--honda-red);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--dark);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--honda-gray);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: var(--dark);
    color: var(--white);
    font-size: 13px;
    padding: 8px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-info {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.top-bar-info span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-info i {
    color: var(--honda-red);
}

.top-bar-contact a {
    color: var(--white);
    font-weight: 600;
}

.top-bar-contact a:hover {
    color: var(--honda-red);
}

.top-bar-contact .hotline {
    color: var(--honda-red);
    font-size: 15px;
    font-weight: 700;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    padding-bottom: 14px;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-img {
    width: 160px;
    height: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text strong {
    font-size: 18px;
    color: var(--honda-red);
    font-weight: 800;
}

.logo-text small {
    font-size: 11px;
    color: var(--text-light);
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav a {
    padding: 10px 16px;
    font-weight: 600;
    font-size: 15px;
    color: var(--text-dark);
    border-radius: var(--radius);
    position: relative;
}

.nav a:hover,
.nav a.active {
    color: var(--honda-red);
}

.nav a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 16px;
    right: 16px;
    height: 3px;
    background: var(--honda-red);
    border-radius: 3px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--honda-red);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: var(--shadow-red);
}

.header-phone:hover {
    background: var(--honda-red-dark);
    transform: scale(1.05);
}

.header-phone i {
    font-size: 18px;
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: var(--transition);
}

.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(6px, -6px);
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: var(--dark);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 0 40px;
}

.hero-slide-tag {
    display: inline-block;
    background: var(--honda-red);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.hero-slide-title {
    color: var(--white);
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 12px;
}

.hero-slide-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    margin-bottom: 24px;
    font-weight: 400;
}

.hero-slide-price {
    color: var(--honda-red);
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 28px;
}

.hero-slide-price small {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    font-weight: 400;
    display: block;
}

.hero-slide-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Slider controls */
.hero-prev,
.hero-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.4);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

.hero-prev:hover,
.hero-next:hover {
    background: var(--honda-red);
    border-color: var(--honda-red);
}

.hero-prev {
    left: 20px;
}

.hero-next {
    right: 20px;
}

.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.hero-dot.active {
    background: var(--honda-red);
    width: 36px;
    border-radius: 6px;
}

/* ============================================
   QUICK ACTION BAR
   ============================================ */
.quick-bar {
    background: var(--white);
    padding: 0;
    margin-top: -50px;
    position: relative;
    z-index: 20;
}

.quick-bar .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-lg);
    padding: 24px;
    border-top: 4px solid var(--honda-red);
}

.quick-item {
    text-align: center;
    padding: 16px;
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: pointer;
}

.quick-item:hover {
    background: var(--honda-gray-light);
    transform: translateY(-4px);
}

.quick-item i {
    font-size: 36px;
    color: var(--honda-red);
    margin-bottom: 12px;
}

.quick-item h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.quick-item p {
    font-size: 13px;
    color: var(--text-light);
}

/* ============================================
   SECTION GENERAL
   ============================================ */
.section {
    padding: 70px 0;
}

.section-gray {
    background: var(--honda-gray-light);
}

.section-dark {
    background: var(--dark);
    color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.section-dark .section-header h2 {
    color: var(--white);
}

.section-header h2 span {
    color: var(--honda-red);
}

.section-header p {
    font-size: 16px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-dark .section-header p {
    color: rgba(255,255,255,0.7);
}

.section-title-line {
    width: 60px;
    height: 4px;
    background: var(--honda-red);
    margin: 16px auto 0;
    border-radius: 2px;
}

/* ============================================
   CAR MODELS GRID
   ============================================ */
.cars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.car-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid #eee;
    position: relative;
}

.car-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.car-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--honda-red);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    z-index: 5;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.car-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: var(--honda-gray-light);
    transition: var(--transition);
}

.car-card:hover .car-card-img {
    transform: scale(1.05);
}

.car-card-img-wrap {
    overflow: hidden;
    position: relative;
}

.car-card-body {
    padding: 24px;
}

.car-card-segment {
    font-size: 12px;
    color: var(--honda-red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.car-card-name {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.car-card-tagline {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 16px;
    min-height: 40px;
}

.car-card-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
    padding: 16px;
    background: var(--honda-gray-light);
    border-radius: var(--radius);
}

.car-card-spec {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-dark);
}

.car-card-spec i {
    color: var(--honda-red);
    font-size: 14px;
    width: 16px;
}

.car-card-price {
    margin-bottom: 20px;
}

.car-card-price-label {
    font-size: 13px;
    color: var(--text-light);
}

.car-card-price-value {
    font-size: 22px;
    font-weight: 800;
    color: var(--honda-red);
}

.car-card-price-range {
    font-size: 12px;
    color: var(--text-light);
}

.car-card-btns {
    display: flex;
    gap: 10px;
}

.car-card-btns .btn {
    flex: 1;
    padding: 10px 16px;
    font-size: 14px;
}

/* ============================================
   PROMOTION / OFFER BANNER
   ============================================ */
.offer-banner {
    background: linear-gradient(135deg, var(--honda-red) 0%, var(--honda-red-dark) 100%);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    overflow: hidden;
}

.offer-banner::before {
    content: '';
    position: absolute;
    right: -50px;
    top: -50px;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
}

.offer-banner::after {
    content: '';
    position: absolute;
    left: -80px;
    bottom: -80px;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
}

.offer-content {
    position: relative;
    z-index: 2;
    flex: 1;
}

.offer-tag {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.offer-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.2;
}

.offer-desc {
    font-size: 16px;
    opacity: 0.95;
    margin-bottom: 24px;
    max-width: 500px;
}

.offer-btn {
    background: var(--white);
    color: var(--honda-red);
    padding: 14px 36px;
    font-weight: 700;
}

.offer-btn:hover {
    background: var(--dark);
    color: var(--white);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-top: 4px solid transparent;
}

.service-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
    border-top-color: var(--honda-red);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--honda-red-glow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--honda-red);
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 16px;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-item {
    text-align: center;
    padding: 24px;
}

.why-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    background: rgba(204,0,0,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--honda-red);
}

.why-item h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}

.why-item p {
    font-size: 14px;
    color: var(--text-light);
}

/* ============================================
   DEALER / CONSULTANT INFO
   ============================================ */
.dealer-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2b2b2b 100%);
    color: var(--white);
}

.dealer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.dealer-img {
    border-radius: var(--radius-lg);
    width: 100%;
    height: 400px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

.dealer-content h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
}

.dealer-content h2 span {
    color: var(--honda-red);
}

.dealer-content > p {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 24px;
}

.dealer-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 30px;
}

.dealer-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.dealer-feature i {
    color: var(--honda-red);
    font-size: 20px;
    margin-top: 2px;
}

.dealer-feature h5 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 2px;
}

.dealer-feature p {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

/* Consultant card */
.consultant-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    color: var(--text-dark);
    box-shadow: var(--shadow-lg);
    margin-top: 30px;
}

.consultant-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--honda-red);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: 800;
    margin: 0 auto 16px;
}

.consultant-card h4 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 4px;
}

.consultant-card .role {
    color: var(--honda-red);
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 14px;
}

.consultant-card .phone {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark);
}

.consultant-card .phone i {
    color: var(--honda-red);
}

/* ============================================
   FORM SECTION
   ============================================ */
.form-section {
    padding: 70px 0;
    background: var(--honda-gray-light);
}

.form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    max-width: 700px;
    margin: 0 auto;
}

.form-wrapper h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
    text-align: center;
}

.form-wrapper .form-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 28px;
    font-size: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-dark);
}

.form-group label .required {
    color: var(--honda-red);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius);
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
    color: var(--text-dark);
}

.form-control:focus {
    outline: none;
    border-color: var(--honda-red);
    box-shadow: 0 0 0 3px var(--honda-red-glow);
}

textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23CC0000' viewBox='0 0 16 16'%3e%3cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 12 0 0 1 .753 1.658l-4.796 5.48a1 12 0 0 1-1.506 0z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-message {
    padding: 16px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    display: none;
    font-weight: 600;
    font-size: 14px;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

.form-note {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 16px;
    text-align: center;
}

.form-note i {
    color: var(--honda-red);
}

/* ============================================
   INSTALLMENT CALCULATOR
   ============================================ */
.calculator-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.calc-inputs {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-md);
}

.calc-results {
    background: linear-gradient(135deg, var(--honda-red) 0%, var(--honda-red-dark) 100%);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-lg);
}

.calc-results h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}

.calc-result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.calc-result-item:last-child {
    border-bottom: none;
}

.calc-result-label {
    font-size: 14px;
    opacity: 0.9;
}

.calc-result-value {
    font-size: 18px;
    font-weight: 700;
}

.calc-result-item.highlight .calc-result-value {
    font-size: 28px;
    color: #ffeb3b;
}

.calc-slider-group {
    margin-bottom: 24px;
}

.calc-slider-group label {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 14px;
}

.calc-slider-group label span {
    color: var(--honda-red);
    font-weight: 800;
}

input[type="range"] {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: #e0e0e0;
    -webkit-appearance: none;
    appearance: none;
    outline: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--honda-red);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(204,0,0,0.4);
}

input[type="range"]::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--honda-red);
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 6px rgba(204,0,0,0.4);
}

/* ============================================
   CAR DETAIL PAGE
   ============================================ */
.car-detail-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: var(--white);
    padding: 50px 0;
}

/* Hero container: hero layout handled via .hero-2col-grid child */
.car-detail-hero .container {
    display: block;
}

/* Make gallery fill visually on PC */
#car-gallery {
    width: 100%;
}

.car-detail-img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.car-detail-info h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 8px;
}

.car-detail-info .segment {
    color: var(--honda-red);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.car-detail-info .tagline {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 24px;
}

.car-detail-price-box {
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 28px;
    border: 2px solid var(--honda-red);
}

.car-detail-price-box .label {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 4px;
}

.car-detail-price-box .price {
    font-size: 36px;
    font-weight: 800;
    color: var(--honda-red);
}

.car-detail-price-box .range {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

.car-detail-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Quick specs grid */
.car-detail-specs,
#quick-specs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 30px;
}

/* On PC override inline margin-top */
@media (min-width: 1024px) {
    #quick-specs {
        grid-template-columns: repeat(6, 1fr);
        gap: 14px;
        margin-top: 40px;
    }
}

.spec-box {
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 16px;
    text-align: center;
}

.spec-box i {
    color: var(--honda-red);
    font-size: 22px;
    margin-bottom: 8px;
}

.spec-box .spec-label {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 4px;
}

.spec-box .spec-value {
    font-size: 15px;
    font-weight: 700;
}

/* ============================================
   TAB INNER — replaces inline max-width: 900px
   ============================================ */
.tab-inner {
    max-width: 960px;
    margin: 0 auto;
}

/* Specs and variants can use more width */
.tab-inner--specs,
.tab-inner--variants {
    max-width: 860px;
}

/* Tab description text */
.tab-description {
    font-size: 17px;
    line-height: 1.85;
    color: var(--text-dark);
    margin-bottom: 28px;
}

/* Color swatches heading */
.color-swatches-title {
    width: 100%;
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 16px;
}

/* On PC: allow tabs wider content */
@media (min-width: 1024px) {
    .tab-inner {
        max-width: 1100px;
    }

    .tab-inner--specs,
    .tab-inner--variants {
        max-width: 900px;
    }
}

/* Tabs */
.car-tabs {
    padding: 60px 0;
    background: var(--white);
}

.tab-nav {
    display: flex;
    gap: 4px;
    margin-bottom: 36px;
    border-bottom: 2px solid #e0e0e0;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 14px 28px;
    background: none;
    border: none;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-light);
    cursor: pointer;
    position: relative;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

.tab-btn:hover {
    color: var(--honda-red);
}

.tab-btn.active {
    color: var(--honda-red);
    border-bottom-color: var(--honda-red);
}

.tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Spec table */
.spec-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.spec-table th,
.spec-table td {
    padding: 14px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.spec-table th {
    background: var(--honda-gray-light);
    font-weight: 700;
    width: 40%;
    color: var(--text-dark);
}

.spec-table td {
    color: var(--text-light);
}

.spec-table tr:last-child th,
.spec-table tr:last-child td {
    border-bottom: none;
}

/* Features list */
.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.feature-item i {
    color: var(--honda-red);
    font-size: 20px;
    margin-top: 2px;
}

.feature-item span {
    font-size: 14px;
    font-weight: 500;
}

/* Variants table */
.variants-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.variants-table th,
.variants-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.variants-table th {
    background: var(--honda-red);
    color: var(--white);
    font-weight: 700;
}

.variants-table td {
    color: var(--text-dark);
}

.variants-table .price-cell {
    font-weight: 800;
    color: var(--honda-red);
    font-size: 16px;
}

/* Color swatches */
.color-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 20px;
}

.color-swatch {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.color-dot {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: var(--transition);
}

.color-swatch:hover .color-dot {
    transform: scale(1.1);
    border-color: var(--honda-red);
}

.color-swatch .color-name {
    font-size: 12px;
    color: var(--text-light);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--honda-red) 0%, var(--honda-red-dark) 100%);
    color: var(--white);
    text-align: center;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '\f1b9';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: -20px;
    bottom: -30px;
    font-size: 300px;
    opacity: 0.05;
}

.cta-section h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 28px;
    opacity: 0.95;
    position: relative;
    z-index: 2;
}

.cta-section .btn {
    position: relative;
    z-index: 2;
}

/* ============================================
   NEWS / PROMOTIONS
   ============================================ */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.news-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

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

.news-card-body {
    padding: 24px;
}

.news-card-date {
    font-size: 13px;
    color: var(--honda-red);
    font-weight: 600;
    margin-bottom: 8px;
}

.news-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-card p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.news-card a {
    color: var(--honda-red);
    font-weight: 600;
    font-size: 14px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #0d0d0d;
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo {
    margin-bottom: 20px;
    color: var(--honda-red);
    font-size: 24px;
    font-weight: 800;
}

.footer-about p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
}

.footer-contact-item i {
    color: var(--honda-red);
    margin-top: 4px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.footer-links a:hover {
    color: var(--honda-red);
    padding-left: 6px;
}

.footer-hotline {
    background: var(--honda-red);
    color: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius);
    text-align: center;
    margin-top: 16px;
}

.footer-hotline .label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-hotline .number {
    font-size: 24px;
    font-weight: 800;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--honda-red);
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 13px;
}

.footer-bottom a {
    color: rgba(255,255,255,0.7);
}

.footer-bottom a:hover {
    color: var(--honda-red);
}

/* ============================================
   FLOATING CONTACT BUTTONS
   ============================================ */
.floating-contacts {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.float-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border: none;
}

.float-btn:hover {
    transform: scale(1.1);
}

.float-phone {
    background: var(--honda-red);
    animation: pulse 2s infinite;
}

.float-zalo {
    background: #0068ff;
}

.float-top {
    background: var(--dark);
    opacity: 0;
    pointer-events: none;
}

.float-top.visible {
    opacity: 1;
    pointer-events: auto;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(204,0,0,0.5); }
    70% { box-shadow: 0 0 0 15px rgba(204,0,0,0); }
    100% { box-shadow: 0 0 0 0 rgba(204,0,0,0); }
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
    background: var(--honda-gray-light);
    padding: 16px 0;
    font-size: 14px;
}

.breadcrumb ul {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumb li::after {
    content: '/';
    margin-left: 8px;
    color: var(--text-light);
}

.breadcrumb li:last-child::after {
    content: '';
}

.breadcrumb a {
    color: var(--text-light);
}

.breadcrumb a:hover {
    color: var(--honda-red);
}

.breadcrumb li:last-child {
    color: var(--honda-red);
    font-weight: 600;
}

/* ============================================
   PRODUCT GALLERY SLIDER (cho trang xe riêng)
   ============================================ */
.car-gallery {
    position: relative;
    background: #111;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Gallery wrapper: ID-based since JS renders it */
#car-gallery {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.gallery-main {
    position: relative;
    width: 100%;
    padding-top: 60%;   /* slightly taller than 16:9 for better PC view */
    overflow: hidden;
    background: #1a1a1a;
}

/* On PC: gallery uses natural 16:9 for cinematic feel */
@media (min-width: 1024px) {
    .gallery-main {
        padding-top: 56.25%;
    }
}

.gallery-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.gallery-slide.active { opacity: 1; }

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    padding: 8px;
    background: #0d0d0d;
}

.gallery-thumb {
    position: relative;
    padding-top: 66%;
    cursor: pointer;
    overflow: hidden;
    border-radius: 4px;
    border: 3px solid transparent;
    transition: var(--transition);
}

.gallery-thumb img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-thumb:hover img { transform: scale(1.08); }
.gallery-thumb.active { border-color: var(--honda-red); }

.gallery-prev,
.gallery-next {
    position: absolute;
    top: 44%;
    transform: translateY(-50%);
    z-index: 20;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(204,0,0,0.85);
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.gallery-prev { left: 14px; }
.gallery-next { right: 14px; }
.gallery-prev:hover,
.gallery-next:hover { background: var(--honda-red-dark); transform: translateY(-50%) scale(1.1); }

.gallery-counter {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(0,0,0,0.65);
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(4px);
    z-index: 10;
}

.gallery-fullscreen-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(0,0,0,0.55);
    border: none;
    color: white;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    z-index: 10;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}
.gallery-fullscreen-btn:hover { background: var(--honda-red); }

/* Lightbox */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.96);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}
.lightbox-modal.open { display: flex; }

.lightbox-inner {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    text-align: center;
}

.lightbox-inner img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 36px;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
}
.lightbox-close:hover { color: var(--honda-red); }

.lightbox-prev,
.lightbox-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(204,0,0,0.85);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition);
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover,
.lightbox-next:hover { background: var(--honda-red); transform: translateY(-50%) scale(1.1); }

.lightbox-caption {
    text-align: center;
    color: rgba(255,255,255,0.8);
    margin-top: 14px;
    font-size: 14px;
}

/* ============================================
   ADMIN IMAGE MANAGER
   ============================================ */
.admin-page { min-height: 100vh; background: #f4f6f9; }

.admin-header {
    background: linear-gradient(135deg, var(--dark) 0%, #2b2b2b 100%);
    color: white;
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-lg);
}

.admin-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.admin-title {
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 12px;
}
.admin-title span { color: var(--honda-red); }

.admin-main { padding: 36px 0; }

.admin-car-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    margin-bottom: 28px;
    transition: var(--transition);
}
.admin-car-card:hover { box-shadow: var(--shadow-md); }

.admin-car-header {
    background: linear-gradient(135deg, var(--honda-red), var(--honda-red-dark));
    color: white;
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.admin-car-header h3 { font-size: 18px; font-weight: 700; }

.admin-car-body { padding: 24px; }

.admin-img-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 14px;
    margin-bottom: 18px;
}

.admin-img-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px dashed #ddd;
    aspect-ratio: 16/9;
    background: #f8f9fa;
    transition: var(--transition);
}
.admin-img-item:hover { border-color: var(--honda-red); box-shadow: var(--shadow-sm); }

.admin-img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.admin-img-actions {
    position: absolute;
    top: 8px;
    right: 8px;
    display: flex;
    gap: 6px;
    opacity: 0;
    transition: var(--transition);
}
.admin-img-item:hover .admin-img-actions { opacity: 1; }

.admin-img-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: var(--transition);
    color: white;
    box-shadow: var(--shadow-sm);
}
.admin-img-btn.edit-btn { background: #0066cc; }
.admin-img-btn.delete-btn { background: var(--honda-red); }
.admin-img-btn:hover { transform: scale(1.12); }

.admin-img-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.75));
    color: white;
    padding: 20px 10px 8px;
    font-size: 12px;
    font-weight: 600;
}

.upload-zone {
    border: 2px dashed #d0d0d0;
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    background: #fafafa;
}
.upload-zone:hover, .upload-zone.dragover {
    border-color: var(--honda-red);
    background: var(--honda-red-glow);
}
.upload-zone i { font-size: 42px; color: #bbb; margin-bottom: 12px; display: block; transition: var(--transition); }
.upload-zone:hover i { color: var(--honda-red); }
.upload-zone p { color: var(--text-light); font-size: 14px; }
.upload-zone p strong { color: var(--honda-red); }

.admin-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 28px;
}

.admin-stat-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 18px 22px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--honda-red);
    display: flex;
    align-items: center;
    gap: 14px;
}

.admin-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--honda-red-glow);
    color: var(--honda-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.admin-stat-info h4 { font-size: 24px; font-weight: 800; color: var(--text-dark); }
.admin-stat-info p { font-size: 13px; color: var(--text-light); }

/* Modal edit image */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 9000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(4px);
}
.modal-overlay.open { display: flex; }

.modal-box {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px;
    max-width: 520px;
    width: 90%;
    box-shadow: var(--shadow-lg);
    animation: fadeIn 0.3s ease;
}
.modal-box h3 { font-size: 20px; font-weight: 700; margin-bottom: 20px; }

.modal-preview {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 16px;
    background: var(--honda-gray-light);
    border: 1px solid #eee;
}
.modal-actions { display: flex; gap: 12px; margin-top: 20px; }

/* Responsive admin */
@media (max-width: 768px) {
    .admin-stats { grid-template-columns: repeat(2, 1fr); }
    .admin-img-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-thumbs { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 480px) {
    .admin-stats { grid-template-columns: 1fr 1fr; }
    .gallery-thumbs { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .cars-grid,
    .services-grid,
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dealer-grid,
    .car-detail-hero .container,
    .calculator-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .nav.open {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 16px;
        box-shadow: var(--shadow-md);
        gap: 0;
    }

    .nav.open a {
        padding: 14px 16px;
        border-bottom: 1px solid #eee;
    }
}

@media (max-width: 768px) {
    .top-bar-info {
        gap: 12px;
        font-size: 12px;
    }

    .top-bar .container {
        justify-content: center;
    }

    .top-bar-info span:nth-child(3) {
        display: none;
    }

    .logo-img {
        width: 130px;
    }

    .logo-text {
        display: none;
    }

    .header-phone {
        padding: 8px 14px;
        font-size: 14px;
    }

    .hero-slider {
        height: 450px;
    }

    .hero-slide-content {
        padding: 0 24px;
    }

    .hero-slide-title {
        font-size: 32px;
    }

    .hero-slide-price {
        font-size: 24px;
    }

    .quick-bar .container {
        grid-template-columns: repeat(2, 1fr);
        margin-top: -40px;
    }

    .section {
        padding: 50px 0;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .cars-grid,
    .services-grid,
    .news-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .offer-banner {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }

    .offer-title {
        font-size: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .car-detail-specs {
        grid-template-columns: repeat(2, 1fr);
    }

    .car-detail-info h1 {
        font-size: 30px;
    }

    .features-list {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .floating-contacts {
        bottom: 20px;
        right: 20px;
    }

    .float-btn {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .dealer-features {
        grid-template-columns: 1fr;
    }

    .calculator-wrapper {
        grid-template-columns: 1fr;
    }

    .calc-results {
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    .hero-slide-title {
        font-size: 26px;
    }

    .hero-slide-subtitle {
        font-size: 15px;
    }

    .hero-slide-btns {
        flex-direction: column;
    }

    .hero-slide-btns .btn {
        width: 100%;
    }

    .quick-bar .container {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .car-detail-cta {
        flex-direction: column;
    }

    .car-detail-cta .btn {
        width: 100%;
    }

    .variants-table {
        font-size: 13px;
    }

    .variants-table th,
    .variants-table td {
        padding: 12px 10px;
    }
}

/* ============================================
   LAYOUT CLASSES (thay inline styles)
   ============================================ */

/* CTA buttons group */
.cta-btns-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

/* Hero 2-col: gallery 55% / info 45% for better PC balance */
.hero-2col-grid {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 50px;
    align-items: center;
}

.forms-2col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

/* ============================================
   PC / DESKTOP OPTIMIZATIONS — TRANG XE RIÊNG
   Tối ưu cho màn hình >= 1024px
   ============================================ */
@media (min-width: 1024px) {
    /* ——— HERO SECTION ——— */
    .car-detail-hero {
        padding: 60px 0 54px !important;
    }

    /* ——— QUICK SPECS: 6 items → 6 cột 1 hàng ——— */
    .car-detail-specs {
        grid-template-columns: repeat(6, 1fr) !important;
        gap: 14px;
        margin-top: 36px !important;
    }

    .spec-box {
        padding: 22px 14px;
        background: rgba(255,255,255,0.1);
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 12px;
        transition: var(--transition);
    }

    .spec-box:hover {
        background: rgba(255,255,255,0.16);
        transform: translateY(-3px);
    }

    .spec-box i {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .spec-box .spec-label {
        font-size: 11px;
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }

    .spec-box .spec-value {
        font-size: 14px;
        font-weight: 700;
    }

    /* ——— HERO INFO PANEL ——— */
    .car-detail-info {
        padding-left: 8px;
    }

    .car-detail-info h1,
    .car-detail-info [style*="font-size:42px"],
    .car-detail-info [style*="font-size: 42px"] {
        font-size: 44px !important;
        line-height: 1.1 !important;
    }

    .car-detail-info [style*="font-size:17px"],
    .car-detail-info [style*="font-size: 17px"] {
        font-size: 18px !important;
        line-height: 1.6 !important;
    }

    /* ——— PRICE BOX ——— */
    .car-detail-price-box {
        padding: 28px 30px;
    }

    .car-detail-price-box .price,
    .car-price-display {
        font-size: 40px !important;
    }

    /* ——— CTA BUTTONS ——— */
    .car-detail-cta {
        flex-wrap: wrap;
        gap: 12px;
    }

    .car-detail-cta .btn {
        padding: 14px 22px;
        font-size: 15px;
    }

    /* ——— TAB SECTION ——— */
    .car-tabs {
        padding: 70px 0;
    }

    .tab-btn {
        padding: 16px 36px;
        font-size: 15px;
    }

    /* ——— FEATURES: 3 CỘT ——— */
    .features-list {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 16px;
    }

    /* ——— SPEC TABLE ——— */
    .spec-table th {
        width: 35%;
    }

    /* ——— VARIANTS TABLE ——— */
    .variants-table th,
    .variants-table td {
        padding: 18px 24px;
    }

    /* ——— FORMS GRID ——— */
    .forms-2col-grid {
        max-width: 100%;
        gap: 40px;
    }

    .form-wrapper {
        max-width: none;
    }
}

/* ——— Extra Large: 1440px+ ——— */
@media (min-width: 1440px) {
    .hero-2col-grid {
        grid-template-columns: 56% 44%;
        gap: 70px;
    }

    .car-detail-info h1,
    .car-detail-info [style*="font-size:42px"],
    .car-detail-info [style*="font-size: 42px"] {
        font-size: 50px !important;
    }

    .car-detail-price-box .price,
    .car-price-display {
        font-size: 44px !important;
    }

    .spec-box i {
        font-size: 30px;
    }

    .spec-box .spec-value {
        font-size: 15px;
    }

    .tab-inner {
        max-width: 1180px;
    }

    .features-list {
        gap: 20px;
    }
}

/* ============================================
   MOBILE OPTIMIZATIONS — TRANG XE RIÊNG
   Tối ưu hoàn toàn cho màn hình < 768px và < 480px
   ============================================ */

/* ---------- HERO: 2-col grid → 1-col stack ---------- */
@media (max-width: 900px) {
    /* Hero grid chuyển sang 1 cột */
    .hero-2col-grid {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
    }

    /* Spec grid 4 cột → 3 cột */
    .car-detail-specs {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 768px) {
    /* ——— HERO ——— */
    .car-detail-hero {
        padding: 30px 0 24px !important;
    }

    .hero-2col-grid {
        grid-template-columns: 1fr !important;
        gap: 22px !important;
    }

    /* Forms 2 cột → 1 cột */
    .forms-2col-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .car-detail-info h1,
    .car-detail-info [style*="font-size:42px"],
    .car-detail-info [style*="font-size: 42px"] {
        font-size: 26px !important;
        line-height: 1.25 !important;
        margin-bottom: 6px !important;
    }

    .car-detail-info [style*="font-size:17px"],
    .car-detail-info [style*="font-size: 17px"] {
        font-size: 14px !important;
        margin-bottom: 16px !important;
    }

    /* Price box compact */
    .car-detail-price-box {
        padding: 16px 18px !important;
        margin-bottom: 18px !important;
    }

    .car-detail-price-box .price,
    .car-price-display {
        font-size: 24px !important;
    }

    /* CTA buttons dọc */
    .car-detail-cta {
        flex-direction: column;
        gap: 10px !important;
    }

    .car-detail-cta .btn {
        width: 100%;
        justify-content: center;
    }

    /* ——— QUICK SPECS ——— */
    .car-detail-specs {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 10px !important;
        margin-top: 20px !important;
    }

    .spec-box {
        padding: 12px 8px !important;
    }

    .spec-box i {
        font-size: 18px !important;
        margin-bottom: 6px !important;
    }

    .spec-box .spec-value {
        font-size: 13px !important;
    }

    .spec-box .spec-label {
        font-size: 11px !important;
    }

    /* ——— GALLERY SLIDER ——— */
    .gallery-prev,
    .gallery-next {
        width: 34px !important;
        height: 34px !important;
        font-size: 14px !important;
    }

    .gallery-prev { left: 8px !important; }
    .gallery-next { right: 8px !important; }

    .gallery-counter {
        font-size: 11px !important;
        padding: 3px 8px !important;
        bottom: 8px !important;
        right: 8px !important;
    }

    .gallery-fullscreen-btn {
        width: 32px !important;
        height: 32px !important;
        font-size: 13px !important;
        top: 8px !important;
        right: 8px !important;
    }

    .gallery-thumbs {
        gap: 4px !important;
        padding: 6px !important;
    }

    /* ——— LIGHTBOX ——— */
    .lightbox-prev,
    .lightbox-next {
        width: 38px !important;
        height: 38px !important;
        font-size: 16px !important;
    }

    .lightbox-prev { left: 8px !important; }
    .lightbox-next { right: 8px !important; }

    .lightbox-inner {
        max-width: 96vw !important;
    }

    .lightbox-inner img {
        max-height: 70vh !important;
    }

    .lightbox-close {
        font-size: 28px !important;
        top: -42px !important;
    }

    /* ——— TABS ——— */
    .car-tabs {
        padding: 36px 0 !important;
    }

    .tab-nav {
        overflow-x: auto;
        flex-wrap: nowrap !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 2px;
        gap: 0 !important;
    }

    .tab-nav::-webkit-scrollbar { display: none; }

    .tab-btn {
        padding: 12px 16px !important;
        font-size: 13px !important;
        white-space: nowrap;
        flex-shrink: 0;
    }

    /* ——— SPEC TABLE ——— */
    .spec-table {
        font-size: 13px;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .spec-table th,
    .spec-table td {
        padding: 11px 14px !important;
    }

    .spec-table th {
        width: 45% !important;
        font-size: 13px !important;
    }

    /* ——— FEATURES LIST ——— */
    .features-list {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

    .feature-item {
        padding: 12px 14px !important;
    }

    /* ——— VARIANTS TABLE ——— */
    .variants-table {
        font-size: 13px;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
    }

    .variants-table th,
    .variants-table td {
        padding: 12px 14px !important;
    }

    .variants-table .price-cell {
        font-size: 14px !important;
    }

    /* ——— FORM WRAPPER ——— */
    .form-wrapper {
        padding: 22px 16px !important;
    }

    /* ——— CTA SECTION ——— */
    .cta-section {
        padding: 40px 0 !important;
    }

    .cta-section h2 {
        font-size: 22px !important;
    }

    .cta-section p {
        font-size: 14px !important;
    }

    .cta-btns-group {
        flex-direction: column !important;
        align-items: center !important;
        gap: 10px !important;
    }

    .cta-btns-group .btn {
        width: 100% !important;
        max-width: 320px !important;
    }

    /* ——— BREADCRUMB ——— */
    .breadcrumb {
        padding: 10px 0 !important;
        font-size: 12px !important;
    }

    /* ——— SECTION FORMS ——— */
    .section-header h2 {
        font-size: 24px !important;
    }

    .section-header p {
        font-size: 14px !important;
    }
}

/* ——— Extra small: < 480px ——— */
@media (max-width: 480px) {
    /* Spec grid 3 → 2 cột */
    .car-detail-specs {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* H1 nhỏ hơn trên điện thoại nhỏ */
    .car-detail-info h1,
    .car-detail-info [style*="font-size:42px"],
    .car-detail-info [style*="font-size: 42px"] {
        font-size: 22px !important;
    }

    /* Price nhỏ hơn */
    .car-detail-price-box .price,
    .car-price-display {
        font-size: 20px !important;
    }

    /* Gallery thumbs: 4 hình vừa vặn */
    .gallery-thumbs {
        grid-template-columns: repeat(4, 1fr) !important;
    }

    .gallery-thumb {
        padding-top: 60% !important;
    }

    /* Tab buttons nhỏ hơn */
    .tab-btn {
        padding: 10px 12px !important;
        font-size: 12px !important;
    }

    /* Form wrapper không padding */
    .form-wrapper {
        padding: 18px 12px !important;
    }

    /* Color swatches nhỏ hơn */
    .color-dot {
        width: 38px !important;
        height: 38px !important;
    }

    /* Variants table hide 3rd col */
    .variants-table th:last-child,
    .variants-table td:last-child {
        white-space: normal !important;
    }

    /* CTA buttons full width */
    .cta-btns-group .btn {
        max-width: 100% !important;
    }

    /* Top bar ẩn hết trừ contact */
    .top-bar-info {
        display: none !important;
    }

    .top-bar .container {
        justify-content: center !important;
    }
}

/* ============================================
   MOBILE OPTIMIZATIONS — TRANG CHỦ (index.html)
   Tối ưu toàn diện cho homepage trên mobile
   ============================================ */

/* ===== TABLET: max-width 1024px ===== */
@media (max-width: 1024px) {
    /* Hero slider nhỏ lại trên tablet */
    .hero-slider {
        height: 500px;
    }

    /* Quick-bar: reduce icon size */
    .quick-item i {
        font-size: 28px;
    }

    /* Car card image nhỏ lại */
    .car-card-img {
        height: 200px;
    }

    /* Dealer image nhỏ lại */
    .dealer-img {
        height: 320px;
    }

    /* Section padding giảm */
    .section {
        padding: 60px 0;
    }
}

/* ===== MOBILE: max-width 768px ===== */
@media (max-width: 768px) {

    /* ——— TOP BAR ——— */
    .top-bar {
        padding: 8px 0;
    }

    .top-bar-info {
        gap: 10px;
        flex-wrap: nowrap;
    }

    /* ——— HERO SLIDER ——— */
    .hero-slider {
        height: 400px;
    }

    .hero-slide-content {
        padding: 0 20px;
        max-width: 100%;
    }

    .hero-slide-tag {
        font-size: 11px;
        padding: 5px 12px;
        margin-bottom: 10px;
    }

    .hero-slide-title {
        font-size: 28px;
        margin-bottom: 8px;
    }

    .hero-slide-subtitle {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .hero-slide-price {
        font-size: 22px;
        margin-bottom: 18px;
    }

    .hero-slide-btns {
        gap: 10px;
    }

    .hero-slide-btns .btn {
        padding: 10px 18px;
        font-size: 14px;
    }

    /* Slider prev/next nhỏ lại */
    .hero-prev,
    .hero-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .hero-prev { left: 10px; }
    .hero-next { right: 10px; }

    .hero-dots {
        bottom: 16px;
    }

    /* ——— QUICK ACTION BAR ——— */
    .quick-bar {
        margin-top: -30px;
    }

    .quick-bar .container {
        gap: 8px;
        padding: 16px;
        margin-top: 0;
        border-radius: 12px;
    }

    .quick-item {
        padding: 12px 8px;
    }

    .quick-item i {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .quick-item h4 {
        font-size: 13px;
        margin-bottom: 2px;
    }

    .quick-item p {
        font-size: 11px;
    }

    /* ——— SECTIONS ——— */
    .section {
        padding: 44px 0;
    }

    .section-header {
        margin-bottom: 32px;
    }

    .section-header h2 {
        font-size: 26px;
    }

    .section-header p {
        font-size: 14px;
    }

    /* ——— CAR GRID ——— */
    .cars-grid {
        gap: 20px;
    }

    .car-card-img {
        height: 180px;
    }

    .car-card-body {
        padding: 16px;
    }

    .car-card-name {
        font-size: 18px;
    }

    .car-card-tagline {
        font-size: 13px;
        min-height: unset;
    }

    .car-card-specs {
        gap: 8px;
        padding: 12px;
        margin-bottom: 14px;
    }

    .car-card-spec {
        font-size: 12px;
    }

    .car-card-price-value {
        font-size: 18px;
    }

    .car-card-btns {
        flex-direction: column;
        gap: 8px;
    }

    .car-card-btns .btn {
        width: 100%;
        padding: 10px 14px;
        font-size: 13px;
        text-align: center;
        justify-content: center;
    }

    /* ——— OFFER BANNER ——— */
    .offer-banner {
        padding: 28px 20px;
    }

    .offer-tag {
        font-size: 11px;
        padding: 5px 12px;
        margin-bottom: 10px;
    }

    .offer-title {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .offer-desc {
        font-size: 14px;
        margin-bottom: 18px;
    }

    .offer-btn {
        padding: 12px 24px;
        font-size: 14px;
        display: inline-block;
        text-align: center;
    }

    /* ——— WHY CHOOSE US ——— */
    .why-grid {
        gap: 16px;
    }

    .why-item {
        padding: 16px;
        background: var(--white);
        border-radius: var(--radius);
        box-shadow: var(--shadow-sm);
    }

    .why-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 12px;
    }

    .why-item h4 {
        font-size: 15px;
    }

    .why-item p {
        font-size: 13px;
    }

    /* ——— SERVICES ——— */
    .services-grid {
        gap: 16px;
    }

    .service-card {
        padding: 24px 20px;
    }

    .service-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
        margin-bottom: 14px;
    }

    .service-card h3 {
        font-size: 17px;
    }

    .service-card p {
        font-size: 13px;
    }

    /* ——— CALCULATOR ——— */
    .calculator-wrapper {
        gap: 20px;
    }

    .calc-inputs {
        padding: 22px 18px;
    }

    .calc-results {
        padding: 22px 18px;
    }

    .calc-results h3 {
        font-size: 17px;
        margin-bottom: 16px;
    }

    .calc-result-item {
        padding: 10px 0;
    }

    .calc-result-label {
        font-size: 13px;
    }

    .calc-result-value {
        font-size: 15px;
    }

    .calc-result-item.highlight .calc-result-value {
        font-size: 22px;
    }

    .calc-slider-group {
        margin-bottom: 18px;
    }

    /* Inline form trả góp */
    [id="tra-gop"] > .container > div[style] {
        padding: 22px 16px !important;
        margin-top: 24px !important;
        border-radius: 12px !important;
    }

    /* ——— DEALER INFO ——— */
    .dealer-section {
        /* đã 1 cột ở 1024px */
    }

    .dealer-content h2 {
        font-size: 24px;
    }

    .dealer-content > p {
        font-size: 14px;
    }

    .dealer-img {
        height: 220px;
    }

    .dealer-feature h5 {
        font-size: 14px;
    }

    .dealer-feature p {
        font-size: 12px;
    }

    .consultant-card {
        padding: 20px;
        margin-top: 16px;
    }

    .consultant-avatar {
        width: 70px;
        height: 70px;
        font-size: 28px;
        margin-bottom: 10px;
    }

    .consultant-card h4 {
        font-size: 16px;
    }

    .consultant-card .phone {
        font-size: 18px;
    }

    /* ——— CTA SECTION (inline style) ——— */
    .cta-section {
        padding: 40px 0;
    }

    .cta-section h2 {
        font-size: 22px;
    }

    .cta-section p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    /* Inline div trong CTA section */
    .cta-section > .container > div[style] {
        flex-direction: column !important;
        align-items: center !important;
        gap: 10px !important;
    }

    .cta-section > .container > div[style] .btn {
        width: 100% !important;
        max-width: 320px !important;
        justify-content: center !important;
        text-align: center !important;
    }

    /* ——— FOOTER ——— */
    .footer {
        padding: 40px 0 0;
    }

    .footer-grid {
        gap: 24px;
        padding-bottom: 28px;
    }

    .footer-logo {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .footer-about p {
        font-size: 13px;
    }

    .footer-col h4 {
        font-size: 14px;
        margin-bottom: 14px;
    }

    .footer-links a,
    .footer-contact-item {
        font-size: 13px;
    }

    .footer-hotline .number {
        font-size: 20px;
    }

    .footer-bottom {
        font-size: 12px;
        padding: 16px 0;
    }

    /* ——— FORM WRAPPER ——— */
    .form-wrapper {
        padding: 22px 16px;
        border-radius: 12px;
    }

    .form-wrapper h3 {
        font-size: 20px;
    }

    .form-wrapper .form-subtitle {
        font-size: 13px;
        margin-bottom: 20px;
    }
}

/* ===== EXTRA SMALL: max-width 480px ===== */
@media (max-width: 480px) {

    /* ——— HERO SLIDER ——— */
    .hero-slider {
        height: 340px;
    }

    .hero-slide-title {
        font-size: 22px;
    }

    .hero-slide-subtitle {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .hero-slide-price {
        font-size: 18px;
        margin-bottom: 14px;
    }

    .hero-slide-btns {
        flex-direction: column;
        gap: 8px;
    }

    .hero-slide-btns .btn {
        width: 100%;
        padding: 10px 16px;
        font-size: 13px;
    }

    .hero-prev,
    .hero-next {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }

    /* ——— QUICK BAR ——— */
    .quick-bar {
        margin-top: -20px;
    }

    .quick-bar .container {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
        padding: 12px;
        margin-top: 0;
    }

    .quick-item {
        padding: 10px 6px;
    }

    .quick-item i {
        font-size: 20px;
        margin-bottom: 6px;
    }

    .quick-item h4 {
        font-size: 12px;
    }

    .quick-item p {
        font-size: 10px;
        display: none;
    }

    /* ——— SECTION ——— */
    .section {
        padding: 36px 0;
    }

    .section-header {
        margin-bottom: 24px;
    }

    .section-header h2 {
        font-size: 22px;
    }

    .section-header p {
        font-size: 13px;
    }

    /* ——— CAR GRID ——— */
    .car-card-img {
        height: 160px;
    }

    .car-card-name {
        font-size: 16px;
    }

    .car-card-price-value {
        font-size: 16px;
    }

    /* ——— OFFER BANNER ——— */
    .offer-title {
        font-size: 18px;
    }

    .offer-desc {
        font-size: 13px;
    }

    /* ——— WHY / SERVICE CARDS ——— */
    .service-card {
        padding: 20px 16px;
    }

    .service-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    /* ——— CALCULATOR ——— */
    .calc-inputs,
    .calc-results {
        padding: 18px 14px;
    }

    .calc-result-item.highlight .calc-result-value {
        font-size: 20px;
    }

    /* Inline form trả góp compact */
    [id="tra-gop"] > .container > div[style] {
        padding: 18px 14px !important;
    }

    /* ——— DEALER ——— */
    .dealer-img {
        height: 180px;
    }

    .dealer-content h2 {
        font-size: 20px;
    }

    .dealer-features {
        gap: 12px;
    }

    .dealer-feature i {
        font-size: 16px;
    }

    /* ——— CTA SECTION ——— */
    .cta-section h2 {
        font-size: 18px;
    }

    .cta-section > .container > div[style] .btn {
        max-width: 100% !important;
    }

    /* ——— FORM ——— */
    .form-wrapper {
        padding: 18px 12px;
    }

    .form-wrapper h3 {
        font-size: 17px;
    }

    .form-control {
        font-size: 14px;
        padding: 11px 14px;
    }

    /* ——— FOOTER ——— */
    .footer-hotline .number {
        font-size: 18px;
    }

    .footer-social a {
        width: 36px;
        height: 36px;
        font-size: 15px;
    }

    /* ——— FLOATING BTN ——— */
    .floating-contacts {
        bottom: 16px;
        right: 16px;
        gap: 8px;
    }

    .float-btn {
        width: 46px;
        height: 46px;
        font-size: 18px;
    }
}
