/* =====================================================
   VARIABLES
===================================================== */
:root {
  --font-base: 'Google Sans Flex', system-ui, sans-serif;

  --color-brand: #F4B400;
  --color-brand-dark: #C98F00;
  --color-blue: #0068FF;
  --color-green: #34d058;

  --color-dark: #0f0f0f;
  --color-dark-alt: #1a1a1a;
  --color-dark-border: #2a2a2a;
  --color-footer: #080808;

  --color-text: #111111;
  --color-text-muted: #666666;
  --color-border: #ececec;
  --color-border-warm: #efe9dd;
  --color-bg-warm: #FAF8F3;
  --color-bg-warm-alt: #fcfaf4;
  --color-badge-bg: #FFF6DC;
}

/* =====================================================
   RESET
===================================================== */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
h1, h2, h3, p, ul { margin: 0; padding: 0; }
ul { list-style: none; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

body {
  font-family: var(--font-base);
  color: var(--color-text);
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* =====================================================
   LAYOUT / SECTION HELPERS
===================================================== */
.container { max-width: 1280px; margin: 0 auto; }
.container-wide { max-width: 1440px; margin: 0 auto; }
.container-narrow { max-width: 760px; margin: 0 auto; }

.section { padding: clamp(48px, 8vw, 84px) 20px; }
.section-trust { background: var(--color-bg-warm); }
.section-services { background: #ffffff; }
.section-vehicles { background: var(--color-dark); color: #ffffff; }
.section-prices { background: var(--color-bg-warm); }
.section-reviews { background: #ffffff; }
.section-gallery { background: var(--color-bg-warm); }
.section-faq { background: #ffffff; }

.section-header { text-align: center; }
.section-header--boxed { max-width: 640px; margin: 0 auto; }

.eyebrow {
  color: var(--color-brand-dark);
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: 13px;
}
.eyebrow--on-dark { color: var(--color-brand); }

.section-title {
  font-size: clamp(26px, 5.4vw, 42px);
  line-height: 1.1;
  margin-top: 8px;
}

.section-desc {
  color: var(--color-text-muted);
  font-size: 16px;
  margin-top: 12px;
}
.section-desc--on-dark { color: #bdbdbd; }

.text-accent { color: var(--color-brand); }
.icon-lg { font-size: 1.15em; }

/* =====================================================
   BUTTONS
===================================================== */
.btn {  
  transition: transform .2s ease, filter .2s ease;
}
.btn--lg { font-size: 18px; padding: 17px 32px; }
.btn--full { flex: 1 1 200px; }

.btn--yellow {
  background: var(--color-brand);
  color: #111111;
  font-weight: 600;
  box-shadow: 0 10px 28px rgba(244, 180, 0, .4);
}
.btn--yellow:hover { filter: brightness(1.06); transform: translateY(-2px); }

.btn--blue {
  background: var(--color-blue);
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(0, 104, 255, .34);
}
.btn--blue:hover { filter: brightness(1.08); transform: translateY(-2px); }

.btn--ghost {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  padding: 9px 13px;
  border-radius: 999px;
  white-space: nowrap;
}
.btn--ghost:hover { background: rgba(244, 180, 0, .18); border-color: var(--color-brand); }

.btn--dark {
  background: #111111;
  color: var(--color-brand);
  font-weight: 800;
  font-size: 14px;
  padding: 11px 18px;
  border-radius: 11px;
  margin-top: auto;
  align-self: flex-start;
}
.btn--dark:hover { background: var(--color-brand); color: #111111; }

.btn--veh {
  background: var(--color-brand);
  color: #111111;
  font-weight: 800;
  font-size: 15px;
  padding: 13px 18px;
  border-radius: 12px;
  margin-top: auto;
}
.btn--veh:hover { filter: brightness(1.06); }

/* =====================================================
   HEADER / HERO
===================================================== */
.hero {
  position: relative;
  background: var(--color-dark);
  color: #ffffff;
  overflow: hidden;
}

.hero__glow {
  border-color: transparent;
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
}
.hero__glow--top {
  top: -180px;
  right: -120px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(244, 180, 0, .28), transparent 65%);
}
.hero__glow--bottom {
  bottom: -220px;
  left: -160px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(244, 180, 0, .14), transparent 65%);
}

.hero__topbar {
  position: relative;
  padding: 18px 20px 0;
}
.hero__topbar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.hero__logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  font-size: clamp(15px, 3.6vw, 19px);
}
.hero__logo-icon { font-size: 1.3em; }

.hero__main {
  position: relative;
  padding: clamp(28px, 6vw, 56px) 20px clamp(40px, 7vw, 72px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(28px, 5vw, 52px);
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(244, 180, 0, .14);
  border: 1px solid rgba(244, 180, 0, .35);
  color: var(--color-brand);
  font-weight: 600;
  font-size: 13px;
  padding: 7px 14px;
  border-radius: 999px;
  letter-spacing: .02em;
}
.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-green);
  box-shadow: 0 0 0 4px rgba(52, 208, 88, .25);
}

.hero__title {
  font-size: clamp(34px, 7.5vw, 60px);
  line-height: 1.04;
  font-weight: 600;
  margin: 18px 0 0;
  letter-spacing: -.02em;
}

.hero__subtitle {
  font-size: clamp(16px, 3.8vw, 20px);
  line-height: 1.5;
  color: #d7d7d7;
  margin: 16px 0 0;
  font-weight: 500;

}

.hero__benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 11px 18px;
  margin: 26px 0 0;
  
}
.hero__benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #f2f2f2;
}
.hero__benefit::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-brand);
  color: #111111;
  font-size: 12px;
  font-weight: 600;
  flex: none;
}

.hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 0;
}

.hero__hotline {
  margin: 22px 0 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__hotline-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  color: #9a9a9a;
}
.hero__hotline-number {
  font-size: clamp(22px, 5vw, 30px);
  font-weight: 600;
  color: var(--color-brand);
  letter-spacing: .01em;
}

.hero__media { position: relative; }
.hero__image {
  width: 100%;
  height: clamp(280px, 46vw, 440px);
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .45);
}
.hero__rating {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  color: #111111;
  padding: 11px 15px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .25);
}
.hero__rating-score {
  font-size: 26px;
  font-weight: 600;
  color: #111111;
  line-height: 1;
}
.hero__rating-meta { line-height: 1.15; }
.hero__rating-stars {
  display: block;
  color: var(--color-brand);
  font-size: 14px;
  letter-spacing: 1px;
}
.hero__rating-count {
  display: block;
  font-size: 12px;
  color: var(--color-text-muted);
  font-weight: 600;
}
.hero__eta-badge {
  position: absolute;
  right: 14px;
  top: 14px;
  background: var(--color-brand);
  color: #111111;
  font-weight: 800;
  font-size: 13px;
  padding: 8px 13px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .3);
}

/* =====================================================
   TRUST
===================================================== */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
  margin: 38px 0 0;
}
.trust-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  background: #ffffff;
  border: 1px solid var(--color-border-warm);
  border-radius: 18px;
  padding: 24px 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .04);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .08);
  border-color: var(--color-brand);
}
.trust-card__icon { font-size: 34px; }
.trust-card__label { font-weight: 800; font-size: 15px; line-height: 1.25; }

/* =====================================================
   SERVICES
===================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 16px;
  margin: 38px 0 0;
}
.service-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .04);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .08);
  border-color: var(--color-brand);
}
.service-card__head { display: flex; align-items: center; gap: 12px; }
.service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--color-badge-bg);
  font-size: 26px;
  flex: none;
}
.service-card__title { font-size: 19px; font-weight: 800; line-height: 1.15; }
.service-card__list { display: flex; flex-direction: column; gap: 8px; }
.service-card__item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14.5px;
  color: #444444;
  font-weight: 500;
}
.service-card__item::before { content: "›"; color: var(--color-brand); font-weight: 600; }

/* =====================================================
   VEHICLES
===================================================== */
.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 16px;
  margin: 38px 0 0;
}
.vehicle-card {
  display: flex;
  flex-direction: column;
  background: var(--color-dark-alt);
  border: 1px solid var(--color-dark-border);
  border-radius: 20px;
  overflow: hidden;
  transition: border-color .2s ease, transform .2s ease;
}
.vehicle-card:hover { border-color: var(--color-brand); transform: translateY(-4px); }
.vehicle-card__image { width: 100%; height: 190px; object-fit: cover; }
.vehicle-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.vehicle-card__head { display: flex; align-items: center; gap: 10px; }
.vehicle-card__icon { font-size: 26px; }
.vehicle-card__name { font-size: 20px; font-weight: 800; }
.vehicle-card__specs { display: flex; flex-wrap: wrap; gap: 8px; }
.vehicle-card__spec {
  background: rgba(244, 180, 0, .12);
  border: 1px solid rgba(244, 180, 0, .3);
  color: var(--color-brand);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 11px;
  border-radius: 999px;
}

/* =====================================================
   PRICES
===================================================== */
.price-card {
  background: #ffffff;
  border: 1px solid var(--color-border-warm);
  border-radius: 20px;
  overflow: hidden;
  margin: 34px 0 0;
  box-shadow: 0 8px 26px rgba(0, 0, 0, .05);
}
.price-table { width: 100%; border-collapse: collapse; }
.price-table tr { border-bottom: 1px solid #f2ede2; }
.price-table td { padding: 18px 22px; }
.price-table td:last-child { text-align: right; }
.price-table__route {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 600;
  font-size: 15.5px;
}
.price-table__icon { font-size: 18px; }
.price-table__amount {
  font-weight: 600;
  font-size: 16px;
  color: #111111;
  white-space: nowrap;
  text-align: right;
}
.price-card__note {
  padding: 16px 22px;
  font-size: 13px;
  color: #8a8270;
  background: var(--color-bg-warm-alt);
}
.price-cta-wrap { text-align: center; margin: 26px 0 0; }

/* =====================================================
   REVIEWS
===================================================== */
.reviews-rating {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0 0;
  background: var(--color-badge-bg);
  border: 1px solid var(--color-brand);
  border-radius: 999px;
  padding: 10px 20px;
}
.reviews-rating__score { font-size: 30px; font-weight: 600; line-height: 1; }
.reviews-rating__stars { color: var(--color-brand); font-size: 18px; letter-spacing: 2px; }
.reviews-rating__count { font-size: 14px; color: #7a6a30; font-weight: 600; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin: 38px 0 0;
}
.review-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .04);
}
.review-card__stars { color: var(--color-brand); font-size: 15px; letter-spacing: 1px; }
.review-card__text { font-size: 15px; line-height: 1.55; color: #333333; font-weight: 500; }
.review-card__footer {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: auto;
  padding-top: 6px;
}
.review-card__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #ffffff;
  font-weight: 800;
  font-size: 17px;
  flex: none;
}
.review-card__avatar--gold { background: #E0A500; }
.review-card__avatar--blue { background: #0068FF; }
.review-card__avatar--green { background: #34A853; }
.review-card__avatar--red { background: #D14343; }
.review-card__avatar--purple { background: #7C3AED; }
.review-card__avatar--amber { background: #C98F00; }

.review-card__meta { line-height: 1.25; }
.review-card__name { display: block; font-weight: 800; font-size: 14.5px; }
.review-card__tag { display: block; font-size: 12.5px; color: #888888; font-weight: 600; }

/* =====================================================
   GALLERY
===================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
  margin: 34px 0 0;
}
.gallery-grid__item {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
}

/* =====================================================
   FAQ
===================================================== */
.faq-list { display: flex; flex-direction: column; gap: 12px; margin: 34px 0 0; }
.faq-item {
  border: 1px solid var(--color-border);
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
}
.faq-item__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  list-style: none;
  cursor: pointer;
}
.faq-item__summary::-webkit-details-marker { display: none; }
.faq-item__summary::marker { content: ""; }
.faq-item__question { font-weight: 800; font-size: 16px; color: #111111; }
.faq-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--color-badge-bg);
  color: var(--color-brand-dark);
  font-size: 20px;
  font-weight: 600;
  flex: none;
}
.faq-item__icon::before { content: "+"; }
.faq-item[open] .faq-item__icon::before { content: "–"; }
.faq-item__answer {
  padding: 0 20px 20px;
  font-size: 15px;
  line-height: 1.6;
  color: #555555;
  font-weight: 500;
}

/* =====================================================
   FINAL CTA
===================================================== */
.final-cta {
  position: relative;
  background: var(--color-dark);
  color: #ffffff;
  padding: clamp(54px, 9vw, 96px) 20px;
  overflow: hidden;
  text-align: center;
}
.final-cta__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 680px;
  height: 680px;
  background: radial-gradient(circle, rgba(244, 180, 0, .2), transparent 60%);
  pointer-events: none;
}
.final-cta__inner { position: relative; }
.final-cta__title {
  font-size: clamp(30px, 7vw, 52px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -.02em;
}
.final-cta__desc {
  font-size: clamp(16px, 4vw, 20px);
  color: #d7d7d7;
  margin: 16px 0 0;
  font-weight: 500;
}
.final-cta__phone {
  display: block;
  font-size: clamp(30px, 8vw, 50px);
  font-weight: 600;
  color: var(--color-brand);
  margin: 22px 0 0;
  letter-spacing: .01em;
}
.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 26px 0 0;
}
.final-cta__note {
  margin: 20px 0 0;
  color: #8f8f8f;
  font-size: 14px;
  font-weight: 600;
}

/* =====================================================
   FOOTER
===================================================== */
.site-footer {
  background: var(--color-footer);
  color: #bdbdbd;
  padding: 42px 20px 30px;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 26px;
}
.site-footer__brand-name {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  font-size: 18px;
  color: #ffffff;
}
.site-footer__desc { margin: 12px 0 0; font-size: 14px; line-height: 1.6; max-width: 300px; }
.site-footer__heading { color: #ffffff; font-weight: 800; font-size: 14px; margin-bottom: 12px; }
.site-footer__list { display: flex; flex-direction: column; gap: 7px; font-size: 14px; }
.site-footer__contact { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.site-footer__contact-link--phone { color: var(--color-brand); font-weight: 800; font-size: 18px; }
.site-footer__contact-link--zalo { color: #bdbdbd; }
.site-footer__bottom {
  margin: 28px auto 0;
  padding-top: 18px;
  border-top: 1px solid #1c1c1c;
  font-size: 13px;
  color: #6a6a6a;
}

/* =====================================================
   STICKY MOBILE BAR
===================================================== */
.spacer-sticky { height: 78px; }
.sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: flex;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(15, 15, 15, .92);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 -6px 24px rgba(0, 0, 0, .25);
}
.sticky-bar__btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  padding: 14px;
  border-radius: 12px;
}
.sticky-bar__btn--yellow { background: var(--color-brand); color: #111111; font-weight: 600; }
.sticky-bar__btn--blue { background: var(--color-blue); color: #ffffff; font-weight: 800; }
