/* ============================================================
   AUTOSHOP — home.css
   Hero slider (home page only)
   Load: chi trang chu (front-page) — xem functions.php
   ============================================================ */

/* ============================================================
   HERO SLIDER — au-hero
   ============================================================ */

.au-hero {
  position: relative;
  width: 100%;
  height: calc(100vh - var(--au-chrome-height, 108px));
  min-height: 480px;
  overflow: hidden;
  background: #111;
}

/* ── Slides track ─────────────────────────────────────────── */
.au-hero__track {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ── Single slide ─────────────────────────────────────────── */
.au-hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(100%);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
  will-change: opacity, transform;
  z-index: 0;
}

.au-hero__slide.is-active {
  opacity: 1;
  transform: translateX(0);
  z-index: 2;
}

.au-hero__slide.is-prev {
  opacity: 0;
  transform: translateX(-100%);
  z-index: 1;
}

/* Prev navigation: waiting slides enter from left, outgoing exits right */
.au-hero[data-dir="prev"] .au-hero__slide:not(.is-active):not(.is-prev) {
  transform: translateX(-100%);
}

.au-hero[data-dir="prev"] .au-hero__slide.is-prev {
  transform: translateX(100%);
}

/* Snap helper — disables transition for one frame to reposition incoming slide */
.au-hero__slide.no-transition {
  transition: none !important;
}

/* ── Background image (replaces inline background-image CSS) ─ */
.au-hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ── Overlay gradient ─────────────────────────────────────── */
.au-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.3) 50%,
      rgba(0, 0, 0, 0.05) 100%
    ),
    linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 60%);
  z-index: 1;
}

/* ── Content wrapper — can giua ngang, sat bottom */
.au-hero__content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 64px;
}

/* Box — mac dinh trong suot (chi CTA), hover mo ra frosted glass */
.au-hero__content-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 680px;
  padding: 10px 20px;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-radius: 10px;
  /* Slide-up on slide change */
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.55s cubic-bezier(0.22, 0.84, 0.44, 1),
    transform 0.55s cubic-bezier(0.22, 0.84, 0.44, 1),
    background 0.38s ease,
    padding 0.38s ease;
}

.au-hero__slide.is-active .au-hero__content-box {
  opacity: 1;
  transform: translateY(0);
}

/* Hover: hien thi frosted glass box */
.au-hero__content-box:hover,
.au-hero__content-box:focus-within {
  background: rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 20px 40px 24px;
}

/* Title — 1 dong, an mac dinh, hien khi hover */
.au-hero__title {
  font-family: var(--font-heading, sans-serif);
  font-size: clamp(18px, 2.4vw, 28px);
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  max-height: 0;
  opacity: 0;
  margin: 0;
  transition:
    max-height 0.38s ease,
    opacity 0.32s ease,
    margin 0.38s ease;
}

/* Subtitle — toi da 2 dong, an mac dinh, hien khi hover */
.au-hero__subtitle {
  font-family: var(--font-sub, sans-serif);
  font-size: clamp(13px, 1.4vw, 16px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  margin: 0;
  transition:
    max-height 0.38s ease 0.05s,
    opacity 0.32s ease 0.05s,
    margin 0.38s ease 0.05s;
}

/* CTA — xuat hien sau slide-in */
.au-hero__cta {
  opacity: 0;
  text-decoration: none;
  transition:
    opacity 0.4s ease 0.4s,
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    color 0.3s ease;
}

.au-hero__cta:hover {
  text-decoration: none;
}

/* Mac dinh (standalone): nen do solid, match brand site */
.au-hero__slide.is-active .au-hero__cta {
  opacity: 1;
  background: var(--color-red, #eb0a1e);
  border-color: var(--color-red, #eb0a1e);
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(235, 10, 30, 0.5);
  padding: 10px 10px;
  border-radius: 4px;
}

.au-hero__slide.is-active .au-hero__cta:hover {
  background: var(--color-red-dark, #c50819);
  border-color: var(--color-red-dark, #c50819);
  color: #ffffff;
  box-shadow: 0 6px 22px rgba(235, 10, 30, 0.65);
}

/* Khi box hover: reset ve white outline binh thuong */
.au-hero__content-box:hover .au-hero__cta,
.au-hero__content-box:focus-within .au-hero__cta {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.75);
  box-shadow: none;
}

.au-hero__content-box:hover .au-hero__cta:hover,
.au-hero__content-box:focus-within .au-hero__cta:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: var(--au-red, #cc0000);
}

/* Hover: mo rong title + subtitle (grow upward nho flex-end) */
.au-hero__content-box:hover .au-hero__title,
.au-hero__content-box:focus-within .au-hero__title {
  max-height: 50px;
  opacity: 1;
  margin-bottom: 10px;
}

.au-hero__content-box:hover .au-hero__subtitle,
.au-hero__content-box:focus-within .au-hero__subtitle {
  max-height: 80px;
  opacity: 1;
  margin-bottom: 16px;
}

/* ── Prev / Next Arrows ───────────────────────────────────── */
.au-hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.au-hero__arrow--prev {
  left: 28px;
}

.au-hero__arrow--next {
  right: 28px;
}

.au-hero__arrow:hover {
  background: var(--au-red, #cc0000);
  border-color: var(--au-red, #cc0000);
  transform: translateY(-50%) scale(1.08);
}

.au-hero__arrow:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

/* ── Dots ─────────────────────────────────────────────────── */
.au-hero__dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 10px;
}

.au-hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  cursor: pointer;
  padding: 0;
  transition:
    background 0.3s ease,
    transform 0.3s ease,
    width 0.3s ease;
}

.au-hero__dot.is-active {
  background: #ffffff;
  width: 28px;
  border-radius: 4px;
}

.au-hero__dot:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

/* ── Scroll hint (vertical line + animated dot) ───────────── */
.au-hero__scroll-hint {
  position: absolute;
  bottom: 28px;
  right: 36px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.au-hero__scroll-line {
  display: block;
  width: 1.5px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
  position: relative;
  overflow: hidden;
}

.au-hero__scroll-line::after {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  border-radius: 2px;
  background: #ffffff;
  animation: au-scroll-drop 1.8s ease infinite;
}

@keyframes au-scroll-drop {
  0% {
    top: -8px;
    opacity: 1;
  }
  80% {
    top: 48px;
    opacity: 0;
  }
  100% {
    top: -8px;
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .au-hero__scroll-line::after {
    animation: none;
  }

  .au-hero__slide {
    transform: none !important;
    transition: opacity 0.15s ease;
  }

  .au-hero__content-box {
    transform: none !important;
    transition: opacity 0.15s ease;
  }

  .au-hero__title,
  .au-hero__subtitle {
    transition: none !important;
    opacity: 1 !important;
    max-height: 200px !important;
    margin-bottom: 10px !important;
  }

  .au-hero__cta {
    transition: none !important;
    opacity: 1 !important;
    animation: none !important;
  }

  .au-hero__content-box {
    background: rgba(0, 0, 0, 0.52) !important;
    padding: 20px 40px 24px !important;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
  .au-hero {
    height: 60vh;
    min-height: 340px;
  }

  .au-hero__content {
    padding-bottom: 56px;
  }

  .au-hero__content-box {
    max-width: 560px;
  }

  .au-hero__content-box:hover,
  .au-hero__content-box:focus-within {
    padding: 16px 32px 20px;
  }

  .au-hero__arrow {
    width: 44px;
    height: 44px;
    font-size: 14px;
  }
  .au-hero__arrow--prev {
    left: 16px;
  }
  .au-hero__arrow--next {
    right: 16px;
  }

  .au-hero__scroll-hint {
    display: none;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .au-hero {
    height: 55vh;
    min-height: 280px;
  }

  .au-hero__content {
    padding-bottom: 52px;
  }

  .au-hero__content-box {
    max-width: 92%;
  }

  .au-hero__content-box:hover,
  .au-hero__content-box:focus-within {
    padding: 14px 20px 18px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .au-hero__arrow {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }
  .au-hero__arrow--prev {
    left: 8px;
  }
  .au-hero__arrow--next {
    right: 8px;
  }

  .au-hero__dots {
    bottom: 14px;
  }
}

/* Rat nho */
@media (max-width: 480px) {
  .au-hero__content-box {
    max-width: 96%;
  }

  .au-hero__content-box:hover,
  .au-hero__content-box:focus-within {
    padding: 12px 16px 16px;
  }
}

/* ============================================================
   SECTION 2 — POLICY BAR
   Clone toyota-saigon.com.vn: nen do #E32A2A + wave mountains + 3 btn trang
   ============================================================ */

/* ── Section ─────────────────────────────────────────────────── */
.au-policy-bar {
  position: relative;
  background: #e32a2a;
  padding: 30px 0 70px;
  overflow: hidden;
}

/* ── Wave bottom — khop voi Elementor shape-divider-bottom mountains ─
   rotateX(180deg): flip SVG de fill phan DUOI thay vi phan TREN viewBox
   → nen do (section) trên, song trang o duoi → khop section ke tiep (trang)
   ────────────────────────────────────────────────────────────────────── */
.au-policy-bar__wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 49px;
  overflow: hidden;
  pointer-events: none;
}

.au-policy-bar__wave svg {
  display: block;
  width: calc(100% + 1.3px);
  height: 49px;
  position: relative;
  left: 50%;
  transform: translateX(-50%) rotateX(180deg);
}

.au-policy-bar__wave-fill {
  fill: #ffffff;
}

/* ── 3-column flex grid ──────────────────────────────────────── */
.au-policy-bar__grid {
  display: flex;
  gap: 20px;
  align-items: stretch;
  box-sizing: border-box;
}

.au-policy-bar__col {
  flex: 1;
  min-width: 0;
  display: flex;
  justify-content: center;
}

/* ── Button — clone elementor-button elementor-size-lg ─────────
   font-size:18px  padding:20px 40px  border-radius:5px
   bg:#fff  color:#E32A2A  font-weight:600  uppercase  Roboto
   hover: bg:#FFEEEE
   ───────────────────────────────────────────────────────────── */
.au-policy-bar__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 59px;
  padding: 20px 40px;
  background: #ffffff;
  color: #e32a2a;
  font-family: var(--font-sub, sans-serif);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-decoration: none;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  box-sizing: border-box;
  transition:
    background 0.3s ease,
    color 0.3s ease;
}

.au-policy-bar__btn:hover,
.au-policy-bar__btn:focus-visible {
  background: #ffeeee;
  color: #e32a2a;
  text-decoration: none;
}

.au-policy-bar__btn-icon {
  font-size: 20px;
  flex-shrink: 0;
  line-height: 1;
}

.au-policy-bar__btn-text {
  line-height: 1.2;
}

/* ── Tablet ≤1024px: giu 3 cot, scale nho ───────────────────── */
@media (max-width: 1024px) {
  .au-policy-bar__grid {
    gap: 12px;
  }

  .au-policy-bar__btn {
    font-size: 13px;
    padding: 14px 16px;
    min-height: 50px;
    gap: 8px;
  }

  .au-policy-bar__btn-icon {
    font-size: 15px;
  }
}

/* ── Mobile ≤768px: stack 3 hang, can giua, btn tu co vua text ── */
@media (max-width: 768px) {
  .au-policy-bar {
    padding: 24px 0 60px;
  }

  .au-policy-bar__grid {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .au-policy-bar__col {
    flex: none;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .au-policy-bar__btn {
    width: auto;
    min-width: 240px;
    font-size: 15px;
    padding: 16px 36px;
    min-height: 52px;
    text-align: center;
  }
}

/* ============================================================
   SECTION 3 — XE NOI BAT
   Clone elementor-element-53ca36d / jet-listing-grid 9212
   4 cols desktop + tablet ; 2 cols mobile (≤768px)
   Col gap 42px / row gap 18px (desktop) matching Elementor padding technique
   Col gap 12px / row gap 30px (mobile)
   ============================================================ */
.au-hot-products {
  background: #fff;
  padding: 30px 0;
}

/* ── Section heading ────────────────────────────────────────── */
.au-hot-products__head {
  text-align: center;
  margin-bottom: 24px;
}

.au-hot-products__label {
  display: block;
  font-family: var(--font-sub, sans-serif);
  font-size: 20px;
  font-weight: 600;
  color: #424242;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 6px;
}

.au-hot-products__label i {
  margin-right: 6px;
  font-size: 18px;
  color: #424242;
}

.au-hot-products__title {
  font-family: var(--font-heading, sans-serif);
  font-size: 32px;
  font-weight: 600;
  color: #e32a2a;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.2;
  margin: 0;
}

.au-hot-products__divider {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  margin: 0 0 24px;
}

/* ── Product grid — 4 cols, CSS grid với gap khớp reference ── */
.au-hot-products__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 42px;
  row-gap: 18px;
}

/* ── Card ───────────────────────────────────────────────────── */
.au-hot-car-card {
  display: flex;
  flex-direction: column;
  background: #f7fafc;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  min-width: 0;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.au-hot-car-card:hover {
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
  text-decoration: none;
}

/* ── Image — 400×230 aspect ratio ──────────────────────────── */
.au-hot-car-card__img-wrap {
  width: 100%;
  aspect-ratio: 400 / 230;
  overflow: hidden;
  background: #fff;
  flex-shrink: 0;
}

.au-hot-car-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.au-hot-car-card:hover .au-hot-car-card__img {
  transform: scale(1.05);
}

.au-hot-car-card__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ddd;
  font-size: 36px;
}

/* ── Car name — #e63312, 14px, uppercase, center ───────────── */
.au-hot-car-card__name {
  font-family: var(--font-sub, sans-serif);
  font-size: 14px;
  font-weight: 600;
  color: #e63312;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.3;
  padding: 8px 10px 4px;
  margin: 0;
}

/* ── Price — pill badge #fed7d7, căn giữa ───────────────────── */
.au-hot-car-card__price-row {
  display: flex;
  justify-content: center;
  padding: 4px 10px;
  overflow: hidden;
}

.au-hot-car-card__price-badge {
  display: inline-block;
  background-color: #fed7d7;
  border-radius: 100px;
  padding: 1px 10px;
  font-family: var(--font-sub, sans-serif);
  font-size: 14px;
  font-weight: 600;
  color: #2d2d2d;
  line-height: 1.6;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.au-hot-car-card__price-badge .woocommerce-Price-amount,
.au-hot-car-card__price-badge .amount,
.au-hot-car-card__price-badge .au-price-fallback {
  color: #2d2d2d;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
}

/* ── Promo row — gift icon + "Khuyến mãi", căn giữa ─────────── */
.au-hot-car-card__promo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 2px 10px 0;
}

.au-hot-car-card__promo-icon {
  font-size: 17px;
  color: #e32a2a;
  flex-shrink: 0;
}

.au-hot-car-card__promo-label {
  font-family: var(--font-sub, sans-serif);
  font-size: 13px;
  font-weight: 500;
  color: #e32a2a;
  text-transform: uppercase;
  margin: 0 4px;
}

/* ── Divider ─────────────────────────────────────────────────── */
.au-hot-car-card__sep {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  margin: 2px 10px 0;
}

/* ── Trả góp footer — #e2e8f0, rounded bottom 8px, căn giữa ── */
.au-hot-car-card__tragop {
  font-family: var(--font-body, sans-serif);
  font-size: 14px;
  color: #333;
  text-align: center;
  background-color: #e2e8f0;
  border-radius: 0 0 8px 8px;
  padding: 3px 10px;
  margin-top: auto;
}

/* ── View all ────────────────────────────────────────────────── */
.au-hot-products .au-view-more {
  margin-top: 32px;
  text-align: center;
}

/* ── Tablet ≤1024px: giữ 4 cột, thu hẹp gap + font ─────────── */
@media (max-width: 1024px) {
  .au-hot-products__grid {
    column-gap: 20px;
    row-gap: 14px;
  }

  .au-hot-car-card__name {
    font-size: 12px;
  }

  .au-hot-car-card__price-badge {
    font-size: 12px;
  }

  .au-hot-car-card__promo-icon {
    font-size: 15px;
  }

  .au-hot-car-card__promo-label {
    font-size: 11px;
  }

  .au-hot-car-card__tragop {
    font-size: 12px;
  }
}

/* ── Mobile ≤768px: 2 cột ────────────────────────────────────── */
@media (max-width: 768px) {
  .au-hot-products {
    padding: 24px 0;
  }

  .au-hot-products__label {
    font-size: 16px;
  }

  .au-hot-products__title {
    font-size: 25px;
  }

  .au-hot-products__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 10px;
    row-gap: 16px;
  }

  .au-hot-car-card__name {
    font-size: 12px;
  }

  .au-hot-car-card__price-badge {
    font-size: 12px;
  }

  .au-hot-car-card__promo-icon {
    font-size: 15px;
  }

  .au-hot-car-card__promo-label {
    font-size: 12px;
  }

  .au-hot-car-card__tragop {
    font-size: 10px;
  }
}

/* ============================================================
   SECTION 4 — BAI VIET + FORM BAO GIA
   ============================================================ */
.au-article-section {
  background: #fff;
  padding: var(--space-2xl, 80px) 0;
}

.au-article-outer {
  border: 2px solid var(--color-red, #eb0a1e);
  border-radius: var(--radius-sm, 4px);
  overflow: hidden;
}

.au-article-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 480px;
}

.au-article-left {
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(235, 10, 30, 0.2);
  min-width: 0;
}

.au-article-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  background: #fff;
  border-bottom: 1px solid rgba(235, 10, 30, 0.15);
  text-decoration: none;
  overflow: hidden;
  transition: background var(--transition-fast, 0.15s);
}

.au-article-call:hover {
  background: #fff8f8;
}

.au-article-call-img {
  max-height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}

.au-article-call-text {
  font-family: var(--font-sub, sans-serif);
  font-size: 14px;
  font-weight: 600;
  color: #222;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  min-width: 0;
}

.au-call-bold {
  font-size: 20px;
  font-weight: 900;
  color: var(--color-red, #eb0a1e);
  font-family: var(--font-heading, sans-serif);
}

.au-call-icon {
  width: 36px;
  height: 36px;
  border: 2px solid var(--color-red, #eb0a1e);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-red, #eb0a1e);
  font-size: 14px;
  flex-shrink: 0;
}

.au-article-left__content {
  padding: 24px 28px 28px;
  flex: 1;
}

.au-article-h1 {
  font-family: var(--font-sub, sans-serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--color-red, #eb0a1e);
  text-align: center;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.55;
  margin-bottom: 18px;
}

.au-article-benefits {
  list-style: decimal;
  padding-left: 22px;
  margin-bottom: 22px;
}

.au-article-benefits li {
  font-family: var(--font-body, sans-serif);
  font-size: 14px;
  color: #333;
  line-height: 1.65;
  margin-bottom: 5px;
  padding-left: 4px;
}

.au-article-h2 {
  font-family: var(--font-sub, sans-serif);
  font-size: 15px;
  font-weight: 500;
  color: #333;
  text-align: center;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.5;
  margin: 18px 0 8px;
}

.au-article-h2 strong {
  color: var(--color-red, #eb0a1e);
  font-weight: 700;
}

.au-article-contact-line {
  font-family: var(--font-body, sans-serif);
  font-size: 14px;
  color: #444;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 5px;
}

.au-article-contact-line a {
  color: var(--color-red, #eb0a1e);
  font-weight: 600;
  text-decoration: none;
}

.au-article-contact-line a:hover {
  text-decoration: underline;
}

.au-article-h2-bottom {
  font-family: var(--font-heading, sans-serif);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 800;
  color: var(--color-dark, #1a1a1a);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-top: 22px;
}

.au-article-right {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.au-quote-form-box {
  background: #1b3a6b;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.au-quote-form-box__title {
  color: #fff;
  font-family: var(--font-sub, sans-serif);
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  text-align: center;
  padding: 18px 20px 6px;
}

.au-quote-form-box__sub {
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-sub, sans-serif);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 0 20px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  line-height: 1.5;
}

.au-quote-form-inner {
  padding: 20px;
  flex: 1;
}

.au-quote-form-inner .au-quote-input {
  background: rgba(255, 255, 255, 0.96);
  border: 1.5px solid transparent;
  color: #1a1a1a;
  margin-bottom: 12px;
  display: block;
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body, sans-serif);
  font-size: 14px;
  border-radius: var(--radius-sm, 4px);
  outline: none;
  transition: border-color var(--transition-fast, 0.15s);
  box-sizing: border-box;
}

.au-quote-form-inner .au-quote-input::placeholder {
  color: #999;
}

.au-quote-form-inner .au-quote-input:focus {
  border-color: #ffc107;
  box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.2);
}

.au-quote-form-inner .au-quote-textarea {
  background: rgba(255, 255, 255, 0.96);
  border: 1.5px solid transparent;
  color: #1a1a1a;
  margin-bottom: 12px;
  display: block;
  width: 100%;
  min-height: 120px;
  padding: 12px 16px;
  font-family: var(--font-body, sans-serif);
  font-size: 14px;
  line-height: 1.6;
  border-radius: var(--radius-sm, 4px);
  outline: none;
  resize: vertical;
  transition: border-color var(--transition-fast, 0.15s);
  box-sizing: border-box;
}

.au-quote-form-inner .au-quote-textarea::placeholder {
  color: #999;
}

.au-quote-form-inner .au-quote-textarea:focus {
  border-color: #ffc107;
  box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.2);
}

.au-quote-select {
  display: block;
  width: 100%;
  padding: 12px 40px 12px 16px;
  background: rgba(255, 255, 255, 0.96);
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm, 4px);
  font-family: var(--font-body, sans-serif);
  font-size: 14px;
  color: #1a1a1a;
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236e6e6e' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  margin-bottom: 14px;
  box-sizing: border-box;
  transition: border-color var(--transition-fast, 0.15s);
}

.au-quote-select:focus {
  border-color: #ffc107;
  box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.2);
}

.au-quote-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  background: #ffc107;
  color: #1a1a1a;
  font-family: var(--font-sub, sans-serif);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: none;
  border-radius: var(--radius-sm, 4px);
  cursor: pointer;
  position: relative;
  transition:
    background var(--transition-fast, 0.15s),
    transform var(--transition-fast, 0.15s);
}

.au-quote-submit:hover:not(:disabled) {
  background: #e6ac00;
  transform: translateY(-1px);
}

.au-quote-submit:active:not(:disabled) {
  transform: translateY(0);
}

.au-quote-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.au-quote-submit__loading {
  display: none;
}

.au-quote-submit.is-loading .au-quote-submit__text {
  display: none;
}

.au-quote-submit.is-loading .au-quote-submit__loading {
  display: flex;
}

.au-quote-message {
  margin-top: 12px;
  padding: 14px 16px;
  border-radius: 10px;
  font-family: var(--font-body, sans-serif);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  display: none;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
}

.au-quote-message.is-success {
  display: block;
  background: linear-gradient(
    135deg,
    rgba(230, 255, 240, 0.98),
    rgba(211, 248, 226, 0.98)
  );
  color: #14532d;
  border: 1px solid rgba(34, 197, 94, 0.28);
}

.au-quote-message.is-error {
  display: block;
  background: linear-gradient(
    135deg,
    rgba(255, 241, 242, 0.98),
    rgba(255, 228, 230, 0.98)
  );
  color: #9f1239;
  border: 1px solid rgba(244, 63, 94, 0.22);
}

.au-quote-message__title {
  font-family: var(--font-sub, sans-serif);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.au-quote-message__text,
.au-quote-message__meta {
  margin: 0;
}

.au-quote-message__meta {
  margin-top: 8px;
  font-size: 12px;
  opacity: 0.9;
}

.au-article-showroom-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.au-article-showroom-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  font-size: 52px;
}

@media (max-width: 1024px) {
  .au-article-section {
    padding: var(--space-xl, 60px) 0;
  }
  .au-article-grid {
    min-height: 0;
  }
  .au-article-left__content {
    padding: 16px 20px;
  }
  .au-article-h1 {
    font-size: 15px;
  }
  .au-article-call-text {
    font-size: 13px;
    gap: 6px;
  }
  .au-call-bold {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .au-article-section {
    padding: var(--space-lg, 40px) 0;
  }
  .au-article-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .au-article-left {
    border-right: none;
    border-bottom: 1px solid rgba(235, 10, 30, 0.2);
  }
  .au-article-left__content {
    padding: 16px;
  }
  .au-article-h1 {
    font-size: 14px;
  }
  .au-article-h2-bottom {
    font-size: 18px;
  }
  .au-article-showroom-img,
  .au-article-showroom-placeholder {
    aspect-ratio: 16 / 7;
  }
}

@media (max-width: 480px) {
  .au-call-bold {
    font-size: 15px;
  }
  .au-article-call-text {
    font-size: 12px;
  }
  .au-article-left__content {
    padding: 12px;
  }
}

/* ============================================================
   SECTION 5 — CTA BAR TRA GOP (nen do)
   ============================================================ */
.au-cta-bar {
  background: var(--color-red, #eb0a1e);
}

.au-cta-bar__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  min-height: 88px;
}

.au-cta-bar__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.au-cta-bar__title {
  font-family: var(--font-heading, sans-serif);
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.au-cta-bar__sub {
  font-family: var(--font-sub, sans-serif);
  font-size: clamp(11px, 1vw, 14px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.82);
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.au-cta-bar__btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 22px;
  background: #1a1a1a;
  color: #fff;
  font-family: var(--font-sub, sans-serif);
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius-sm, 4px);
  text-decoration: none;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  transition:
    background var(--transition-fast, 0.15s),
    transform var(--transition-fast, 0.15s);
}

.au-cta-bar__btn:hover {
  background: #2d2d2d;
  color: #fff;
  transform: translateY(-1px);
}

.au-cta-bar__btn i {
  font-size: 13px;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .au-cta-bar__inner {
    gap: 12px;
  }
  .au-cta-bar__btn {
    padding: 10px 14px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .au-cta-bar__inner {
    grid-template-columns: minmax(0, 1fr);
    text-align: center;
    padding: 20px 0;
    gap: 12px;
  }
  .au-cta-bar__text {
    align-items: center;
  }
  .au-cta-bar__btn {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
  }
}

/* ============================================================
   SECTION 6 — TIN TUC GRID
   ============================================================ */
.au-news-section {
  background: #fff;
  padding: var(--space-2xl, 80px) 0 var(--space-xl, 60px);
}

.au-news-section__head {
  text-align: center;
  margin-bottom: 20px;
}

.au-news-section__title {
  font-family: var(--font-heading, sans-serif);
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 900;
  color: var(--color-red, #eb0a1e);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.au-news-section__divider {
  border: none;
  border-top: 1px solid var(--color-border, #e4e4e4);
  margin: 0 0 28px;
}

.au-news-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.au-news-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border: 1px solid var(--color-border, #e4e4e4);
  border-radius: var(--radius-sm, 4px);
  overflow: hidden;
  background: #fff;
  min-width: 0;
  transition:
    box-shadow var(--transition-base, 0.25s ease),
    transform var(--transition-base, 0.25s ease),
    border-color var(--transition-base, 0.25s ease);
}

.au-news-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
  border-color: #ccc;
}

.au-news-card__img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-off-white, #f8f8f8);
  flex-shrink: 0;
}

.au-news-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.au-news-card:hover .au-news-card__img {
  transform: scale(1.06);
}

.au-news-card__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ddd;
  font-size: 36px;
}

.au-news-card__body {
  padding: 12px 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.au-news-card__title {
  font-family: var(--font-sub, sans-serif);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-red, #eb0a1e);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.au-news-card__desc {
  font-family: var(--font-body, sans-serif);
  font-size: 12px;
  color: #555;
  line-height: 1.6;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.au-news-card__more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-sub, sans-serif);
  font-size: 11px;
  font-weight: 600;
  color: var(--color-red, #eb0a1e);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: auto;
  padding-top: 6px;
  transition: gap 0.15s;
}

.au-news-card:hover .au-news-card__more {
  gap: 8px;
}

.au-news-card__more i {
  font-size: 10px;
}

.au-news-section .au-view-more {
  margin-top: var(--space-lg, 40px);
}

@media (max-width: 1200px) {
  .au-news-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .au-news-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }
  .au-news-section {
    padding: var(--space-xl, 60px) 0 var(--space-lg, 40px);
  }
}

@media (max-width: 768px) {
  .au-news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .au-news-section {
    padding: var(--space-lg, 40px) 0 var(--space-md, 24px);
  }
  .au-news-section__title {
    font-size: 22px;
  }
  .au-news-card__title {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .au-news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .au-news-card__body {
    padding: 8px 8px 10px;
  }
  .au-news-card__desc {
    display: none;
  }
  .au-news-card__more {
    font-size: 10px;
  }
}
