/*
Theme Name:  Cho Thuê Xe Máy Đà Lạt
Theme URI:   https://chothuexemaydalatgiare.com/
Description: Theme cho website cho thuê xe máy Đà Lạt — MR NGUYÊN. Bright, fresh "Đà Lạt ngàn hoa" palette.
Author:      MR NGUYÊN
Version:     1.0.0
Text Domain: chothuexemaydalat
*/

/* =========================================================
   Cho Thuê Xe Máy Đà Lạt — styles
   Bright, fresh "Đà Lạt ngàn hoa" theme.
   Type: Roboto from Google Fonts (with tabular-nums for prices)
   ========================================================= */

/* Google Fonts được load qua WordPress wp_enqueue_style + preconnect — xem functions.php */

:root {
  --font-display: "Roboto", system-ui, sans-serif;
  --font-body:    "Roboto", system-ui, sans-serif;
  --font-figures: "Roboto", system-ui, sans-serif;

  /* ===== LIGHT, FRESH "DA LAT NGAN HOA" PALETTE ===== */
  /* Background — soft mint/cream */
  --bg-0:    #F4FAF6;
  --bg-1:    #FFFFFF;
  --bg-2:    #EAF4ED;
  --bg-3:    #DCEAE0;
  --bg-4:    #C7E0CE;
  --bg-5:    #B3D6BB;

  /* Foreground — deep pine */
  --fg-1:    #0E2017;
  --fg-2:    #061410;
  --fg-3:    #3D5648;
  --fg-4:    #6A8273;
  --fg-5:    #9CB2A4;
  --fg-line: rgba(14,32,23,0.10);
  --fg-line-strong: rgba(14,32,23,0.22);

  /* Brand — fresh pine/mint green */
  --brand-100: #DCFCE8;
  --brand-200: #A8F0CC;
  --brand-300: #6DDEA6;
  --brand-400: #16C485;
  --brand-500: #00A86B;   /* PRIMARY brand */
  --brand-600: #008A57;
  --brand-700: #006B43;
  --brand-800: #044A30;

  /* Accents — Da Lat sky + floral */
  --crayola-persi:  #FF6FA5;   /* hoa anh đào pink */
  --crayola-banana: #FFB833;
  --crayola-lime:   #8CFF00;
  --crayola-liane:  #00C56B;
  --crayola-sea:    #36BFFA;   /* mountain sky blue */
  --crayola-deep:   #0085FF;
  --crayola-violet: #9747FF;

  --success: #00A86B;
  --warning: #F59E0B;
  --error:   #DC2828;
  --error-strong: #B91C1C;
  --info:    var(--crayola-sea);

  /* web-adapted radii */
  --r-sm:   8px;
  --r-md:  14px;
  --r-lg:  22px;
  --r-xl:  32px;
  --r-pill: 999px;

  --shadow-1: 0 4px 24px rgba(11,40,28,0.06);
  --shadow-2: 0 18px 60px rgba(11,40,28,0.12);
  --shadow-glow-brand: 0 10px 40px rgba(0,168,107,0.28);

  --ease-out: cubic-bezier(0.16, 1, 0.30, 1);
  --ease-in:  cubic-bezier(0.50, 0, 0.75, 0);
  --t-fast: 140ms;
  --t-base: 220ms;
  --t-slow: 360ms;

  /* layout */
  --max-w: 1240px;
  --gutter: clamp(20px, 4vw, 56px);
  --section-y: clamp(40px, 5.5vw, 80px);

  /* type scale, web */
  --t-hero:    clamp(40px, 7.2vw, 96px);
  --t-display: clamp(32px, 5vw, 64px);
  --t-h2:      clamp(28px, 3.8vw, 48px);
  --t-h3:      clamp(22px, 2.4vw, 30px);
  --t-lead:    clamp(18px, 1.6vw, 22px);
  --t-body:    18px;
  --t-small:   15px;
}

* { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--t-body);
  line-height: 1.55;
  background: var(--bg-0);
  color: var(--fg-1);
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(0,168,107,0.10), transparent 60%),
    radial-gradient(900px 500px at -10% 30%, rgba(54,191,250,0.08), transparent 60%),
    radial-gradient(800px 400px at 110% 80%, rgba(255,111,165,0.05), transparent 60%),
    var(--bg-0);
  overflow-x: hidden;
}
/* background-attachment: fixed gây jank trên mobile → chỉ bật trên desktop có chuột */
@media (min-width: 768px) and (hover: hover) {
  body { background-attachment: fixed; }
}

a { color: var(--brand-600); text-decoration: none; transition: color var(--t-fast) var(--ease-out); }
a:hover { color: var(--brand-700); }

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

button { font: inherit; cursor: pointer; }

::selection { background: var(--brand-500); color: #fff; }

/* ---- Skip link (accessibility + SEO signal) ---- */
.skip-link {
  position: fixed;
  top: -120%;
  left: 16px;
  z-index: 200;
  padding: 12px 24px;
  background: var(--brand-600);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--r-pill);
  text-decoration: none;
  box-shadow: var(--shadow-2);
  transition: top var(--t-fast) var(--ease-out);
}
.skip-link:focus { top: 16px; }

/* ---- Focus visible — keyboard navigation ---- */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--brand-500);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}
a:focus-visible { border-radius: 4px; }
button:focus-visible { border-radius: var(--r-md); }
.btn:focus-visible {
  outline: 3px solid var(--brand-500);
  outline-offset: 4px;
  box-shadow: 0 0 0 6px rgba(0,168,107,0.18);
}
.faq-item summary:focus-visible { outline-offset: -4px; border-radius: var(--r-md); }

.figures { font-family: var(--font-figures); font-feature-settings: "tnum"; }

/* ---- Layout primitives ---- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: var(--section-y);
}

.eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 600;
  color: var(--brand-600);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: var(--brand-500);
  display: inline-block;
}

h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; line-height: 1.05; letter-spacing: -0.01em; color: var(--fg-2); font-weight: 500; }
h1 { font-size: var(--t-hero); }
h2 { font-size: var(--t-display); }
h3 { font-size: var(--t-h2); }
h4 { font-size: var(--t-h3); }

p { margin: 0; }
.lead { font-size: var(--t-lead); color: var(--fg-3); line-height: 1.55; max-width: 60ch; }
.muted { color: var(--fg-4); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 26px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform var(--t-fast) var(--ease-out), background var(--t-base) var(--ease-out), border-color var(--t-base) var(--ease-out), color var(--t-base) var(--ease-out), box-shadow var(--t-base) var(--ease-out);
  white-space: nowrap;
  text-decoration: none;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--brand-500);
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(0,168,107,0.30), inset 0 1px 0 rgba(255,255,255,0.30);
}
.btn-primary:hover { background: var(--brand-600); color: #FFFFFF; box-shadow: 0 12px 32px rgba(0,168,107,0.40), inset 0 1px 0 rgba(255,255,255,0.30); }
.btn-ghost {
  background: rgba(0,168,107,0.06);
  color: var(--brand-700);
  border-color: rgba(0,168,107,0.25);
}
.btn-ghost:hover { background: rgba(0,168,107,0.12); color: var(--brand-700); border-color: rgba(0,168,107,0.45); }
.btn-lg { padding: 18px 32px; font-size: 16px; }

/* ---- Header ---- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: linear-gradient(to bottom, rgba(244,250,246,0.92), rgba(244,250,246,0.78));
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--fg-line);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.logo {
  display: flex; align-items: center; gap: 12px;
  color: var(--fg-2);
  font-weight: 600;
  text-decoration: none;
}
.logo__mark {
  width: 38px; height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand-400), var(--brand-700));
  display: grid; place-items: center;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 4px 20px rgba(0,168,107,0.35);
  font-family: var(--font-figures);
}
.logo__text { display: flex; flex-direction: column; line-height: 1.1; }
.logo__name { font-weight: 600; font-size: 15px; letter-spacing: 0.04em; }
.logo__sub  { font-weight: 400; font-size: 11px; color: var(--fg-4); text-transform: uppercase; letter-spacing: 0.18em; }

.nav {
  display: flex; align-items: center; gap: 36px;
}
.nav a {
  color: var(--fg-3); font-size: 14px; font-weight: 500;
  padding: 8px 0;
  position: relative;
}
.nav a:hover { color: var(--fg-2); }
.nav a.active { color: var(--fg-2); }
.nav a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; background: var(--brand-500); border-radius: 2px;
}

.header-cta {
  display: flex; align-items: center; gap: 16px;
}
.hotline {
  display: flex; flex-direction: column; line-height: 1.05; text-align: right;
  color: var(--fg-2);
  text-decoration: none;
}
.hotline__label { font-size: 11px; color: var(--fg-4); letter-spacing: 0.18em; text-transform: uppercase; }
.hotline__num   { font-family: var(--font-figures); font-weight: 600; font-size: 18px; color: var(--brand-600); margin-top: 2px; }

.menu-toggle { display: none; background: none; border: 0; color: var(--fg-1); width: 44px; height: 44px; border-radius: 12px; }
.menu-toggle:hover { background: rgba(14,32,23,0.06); }

@media (max-width: 960px) {
  .nav { display: none; }
  .header-cta .hotline { display: none; }
  .menu-toggle { display: inline-grid; place-items: center; }
}

/* ---- Mobile menu drawer ---- */
.mobile-drawer {
  position: fixed; inset: 0; z-index: 60;
  background: rgba(244,250,246,0.96);
  backdrop-filter: blur(24px);
  display: none;
  flex-direction: column;
  padding: 24px var(--gutter);
}
.mobile-drawer.open { display: flex; }
.mobile-drawer__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.mobile-drawer__nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-drawer__nav a {
  color: var(--fg-1);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  padding: 16px 0;
  border-bottom: 1px solid var(--fg-line);
}
.mobile-drawer__footer { margin-top: auto; padding-top: 24px; display: flex; flex-direction: column; gap: 16px; }

/* ---- Hero ---- */
.hero { position: relative; padding-top: clamp(40px, 6vw, 80px); padding-bottom: clamp(40px, 6vw, 96px); overflow: hidden; }
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 900px) { .hero__grid { grid-template-columns: 1fr; } }

.hero h1 {
  font-weight: 500;
  letter-spacing: -0.015em;
}
.hero h1 .accent { color: var(--brand-500); }
.hero__lead { margin-top: 24px; }
.hero__cta {
  margin-top: 36px;
  display: flex; flex-wrap: wrap; gap: 14px;
}
.hero__stats {
  margin-top: 40px;
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.hero__stat {
  position: relative;
  padding: 18px 18px;
  border-radius: var(--r-lg);
  background:
    radial-gradient(circle at 100% 0%, rgba(168,240,204,0.35), transparent 65%),
    rgba(255,255,255,0.75);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border: 1px solid rgba(0,168,107,0.22);
  box-shadow: 0 2px 12px rgba(11,40,28,0.06), inset 0 1px 0 rgba(255,255,255,0.8);
  transition: transform var(--t-base) var(--ease-out), border-color var(--t-base) var(--ease-out), box-shadow var(--t-base) var(--ease-out);
  display: flex; flex-direction: column; gap: 12px;
  min-width: 0;
}
.hero__stat:hover { transform: translateY(-2px); border-color: rgba(0,168,107,0.45); box-shadow: 0 12px 32px rgba(11,40,28,0.10); }
.hero__stat-icon {
  display: inline-grid; place-items: center;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand-400), var(--brand-600));
  color: #FFFFFF;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(0,168,107,0.25);
}
.hero__stat-body { min-width: 0; flex: 1; }
.hero__stat-num { font-family: var(--font-figures); font-feature-settings: "tnum"; font-weight: 700; font-size: clamp(20px, 2.2vw, 28px); color: var(--fg-2); line-height: 1.05; letter-spacing: -0.02em; white-space: nowrap; }
.hero__stat-num .unit { font-size: 0.5em; color: var(--fg-4); margin-left: 4px; font-weight: 500; }
.hero__stat-lbl { color: var(--fg-4); font-size: 12.5px; margin-top: 6px; }

/* On wider stat tiles (≥220px each), allow icon+body inline */
@media (min-width: 1080px) {
  .hero__stat { flex-direction: row; align-items: center; gap: 14px; padding: 18px 20px; }
  .hero__stat-num { font-size: clamp(22px, 2.4vw, 28px); }
}

@media (max-width: 600px) {
  .hero__stats { grid-template-columns: 1fr; gap: 10px; }
  .hero__stat { flex-direction: row; align-items: center; padding: 14px 16px; gap: 14px; }
}

/* Hero card — featured bike */
.bike-hero-card {
  position: relative;
  border-radius: var(--r-xl);
  background:
    radial-gradient(circle at 30% 20%, rgba(168,240,204,0.45), transparent 60%),
    linear-gradient(180deg, #FFFFFF 0%, #F0F8F3 100%);
  border: 1px solid rgba(0,168,107,0.18);
  padding: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-2), 0 0 0 1px rgba(0,168,107,0.06) inset;
}
.bike-hero-card::before {
  content: "";
  position: absolute;
  top: -40%; right: -30%;
  width: 80%; height: 80%;
  background: radial-gradient(circle, rgba(0,168,107,0.18), transparent 60%);
  pointer-events: none;
}
.bike-hero-card__row { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; position: relative; }
.bike-hero-card__tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,168,107,0.12); color: var(--brand-700);
  border: 1px solid rgba(0,168,107,0.3);
  font-size: 11px; font-weight: 600;
  padding: 6px 12px; border-radius: var(--r-pill);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.bike-hero-card__name {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 500;
  margin-top: 16px;
  color: var(--fg-2);
  letter-spacing: -0.01em;
}
.bike-hero-card__sub { color: var(--fg-4); font-size: 14px; margin-top: 4px; }

.bike-hero-card__svg {
  margin: 16px -16px;
  position: relative;
  aspect-ratio: 16 / 9;
  display: grid; place-items: center;
}

.bike-hero-card__price-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  border-top: 1px solid var(--fg-line);
  padding-top: 20px; margin-top: 12px;
  gap: 16px;
}
.bike-hero-card__price-row > div { min-width: 0; }
.bike-hero-card__price {
  font-family: var(--font-figures);
  font-weight: 600;
  font-size: clamp(34px, 4.5vw, 52px);
  color: var(--fg-2);
  line-height: 1;
  letter-spacing: -0.02em;
}
.bike-hero-card__price-unit { color: var(--fg-4); font-size: 14px; margin-top: 6px; }

/* ---- Generic section header ---- */
.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 56px;
  max-width: 800px;
}

/* ---- Fleet grid ---- */
.fleet {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 900px) { .fleet { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .fleet { grid-template-columns: 1fr; } }

.bike-card {
  position: relative;
  border-radius: var(--r-lg);
  background: var(--bg-1);
  border: 1px solid var(--fg-line);
  padding: 22px;
  transition: border-color var(--t-base) var(--ease-out), transform var(--t-base) var(--ease-out), box-shadow var(--t-base) var(--ease-out);
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 1px 2px rgba(11,40,28,0.04);
}
.bike-card:hover {
  border-color: rgba(0,168,107,0.35);
  transform: translateY(-3px);
  box-shadow: 0 18px 50px rgba(11,40,28,0.10), 0 0 0 1px rgba(0,168,107,0.10) inset;
}
.bike-card__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.bike-card__badge {
  font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.16em;
  padding: 5px 10px; border-radius: var(--r-pill);
  background: var(--bg-2); color: var(--fg-3);
  border: 1px solid var(--fg-line);
}
.bike-card__badge.hot { background: rgba(220,40,40,0.10); border-color: rgba(220,40,40,0.30); color: #B91C1C; }
.bike-card__badge.new { background: rgba(0,168,107,0.12); border-color: rgba(0,168,107,0.35); color: var(--brand-700); }
.bike-card__badge.brand { background: rgba(54,191,250,0.14); border-color: rgba(54,191,250,0.35); color: #0285B5; }
.bike-card__cc { font-family: var(--font-figures); font-size: 12px; color: var(--fg-4); }

.bike-card__art {
  margin: 12px -10px 16px;
  aspect-ratio: 16 / 10;
  display: grid; place-items: center;
  position: relative;
  background: transparent;
  border-radius: var(--r-md);
  overflow: hidden;
}
.bike-card__art img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 8px 12px;
  transition: transform var(--t-slow) var(--ease-out);
}
.bike-card:hover .bike-card__art img { transform: scale(1.04); }
.bike-card__art svg { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.25; }

/* Accessories card art — Font Awesome glyph grid */
.accessories-art {
  background:
    radial-gradient(circle at 30% 30%, rgba(168,240,204,0.55), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(54,191,250,0.18), transparent 60%),
    #F4FAF6;
}
.accessories-display {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 14px;
}
.accessories-display__item {
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(0,168,107,0.20);
  border-radius: 12px;
  display: grid; place-items: center;
  color: var(--brand-700);
  font-size: 24px;
  box-shadow: 0 2px 6px rgba(11,40,28,0.06);
}
.bike-card__name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--fg-2);
  margin-bottom: 4px;
}
.bike-card__desc {
  font-size: 13px;
  color: var(--fg-4);
  margin-bottom: 18px;
  flex: 1;
}
.bike-card__price-row {
  border-top: 1px dashed var(--fg-line-strong);
  padding-top: 16px;
  display: flex; align-items: flex-end; justify-content: space-between;
}
.bike-card__price {
  font-family: var(--font-figures);
  font-weight: 600;
  font-size: 30px;
  color: var(--fg-2);
  line-height: 1;
  letter-spacing: -0.02em;
}
.bike-card__price .currency { font-size: 14px; color: var(--fg-4); margin-left: 4px; font-weight: 500; }
.bike-card__price-meta { color: var(--fg-5); font-size: 12px; text-align: right; }
.bike-card__price-meta strong { color: var(--brand-600); font-family: var(--font-figures); font-weight: 600; }

/* ---- Why us ---- */
.why { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
@media (max-width: 800px) { .why { grid-template-columns: 1fr; } }

.why__card {
  position: relative;
  padding: 32px;
  border-radius: var(--r-lg);
  background: var(--bg-1);
  border: 1px solid var(--fg-line);
  overflow: hidden;
  transition: transform var(--t-base) var(--ease-out), box-shadow var(--t-base) var(--ease-out), border-color var(--t-base) var(--ease-out);
}
.why__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(11,40,28,0.12);
  border-color: rgba(0,168,107,0.28);
}
.why__num {
  font-family: var(--font-figures);
  font-weight: 600;
  font-size: 80px;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(0,168,107,0.45);
  line-height: 1;
  letter-spacing: -0.04em;
  position: absolute;
  top: 24px; right: 24px;
  opacity: 0.7;
}
.why__icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: rgba(0,168,107,0.10);
  border: 1px solid rgba(0,168,107,0.30);
  display: grid; place-items: center;
  color: var(--brand-600);
  margin-bottom: 24px;
}
.why__title { font-size: 22px; font-weight: 500; color: var(--fg-2); margin-bottom: 10px; }
.why__desc { color: var(--fg-3); font-size: 15px; line-height: 1.6; }

/* ---- Locations ---- */
.locations {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: stretch;
}
@media (max-width: 900px) { .locations { grid-template-columns: 1fr; } }

.location-list { display: flex; flex-direction: column; gap: 10px; }
.location-item {
  display: flex; align-items: center; gap: 18px;
  padding: 18px 22px;
  border-radius: var(--r-md);
  background: var(--bg-1);
  border: 1px solid var(--fg-line);
  transition: border-color var(--t-base) var(--ease-out), background var(--t-base) var(--ease-out);
}
.location-item:hover { border-color: rgba(0,168,107,0.40); background: rgba(0,168,107,0.04); }
.location-item__dot {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,168,107,0.12);
  border: 1px solid rgba(0,168,107,0.35);
  display: grid; place-items: center;
  color: var(--brand-600);
  flex-shrink: 0;
}
.location-item__txt { flex: 1; }
.location-item__name { font-size: 16px; font-weight: 500; color: var(--fg-2); }
.location-item__sub { font-size: 13px; color: var(--fg-4); margin-top: 2px; }
.location-item__chip { font-size: 11px; padding: 5px 10px; border-radius: var(--r-pill); background: rgba(0,168,107,0.12); color: var(--brand-700); border: 1px solid rgba(0,168,107,0.35); white-space: nowrap; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; }

/* Map mock */
.map-mock {
  position: relative;
  border-radius: var(--r-lg);
  background: linear-gradient(160deg, #EAF4ED 0%, #FFFFFF 100%);
  border: 1px solid rgba(0,168,107,0.20);
  overflow: hidden;
  min-height: 480px;
  padding: 28px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.map-mock svg.bg { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.7; }
.map-mock__pin {
  position: absolute;
  display: grid; place-items: center;
  pointer-events: none;
}
.map-mock__pin .dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--brand-500);
  box-shadow: 0 0 0 4px rgba(0,168,107,0.20), 0 0 24px rgba(0,168,107,0.5);
  animation: pulse 2.4s var(--ease-out) infinite;
}
.map-mock__pin .label {
  position: absolute; top: -32px; left: 50%; transform: translateX(-50%);
  background: var(--brand-600);
  color: #FFFFFF;
  padding: 4px 10px;
  font-size: 11px; font-weight: 600;
  border-radius: var(--r-pill);
  white-space: nowrap;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(0,168,107,0.30);
}
.map-mock__hub {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  display: grid; place-items: center;
  z-index: 2;
}
.map-mock__hub .ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0,168,107,0.40);
}
.map-mock__hub .ring.r1 { width: 80px; height: 80px; }
.map-mock__hub .ring.r2 { width: 160px; height: 160px; opacity: 0.55; }
.map-mock__hub .ring.r3 { width: 240px; height: 240px; opacity: 0.3; animation: pulse 3.2s var(--ease-out) infinite; }
.map-mock__hub .core {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-400), var(--brand-700));
  display: grid; place-items: center;
  color: #FFFFFF;
  box-shadow: 0 8px 30px rgba(0,168,107,0.45);
  font-size: 28px;
  position: relative; z-index: 2;
}
.map-mock__legend {
  position: relative; z-index: 3;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--fg-line);
  border-radius: var(--r-md);
  padding: 14px 18px;
  align-self: flex-start;
  font-size: 13px;
  color: var(--fg-3);
  display: flex; align-items: center; gap: 12px;
  max-width: fit-content;
}
.map-mock__legend strong { color: var(--fg-2); font-weight: 600; }
.map-mock__footer {
  position: relative; z-index: 3;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.map-mock__free {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px;
  background: rgba(0,168,107,0.12);
  border: 1px solid rgba(0,168,107,0.35);
  color: var(--brand-700);
  border-radius: var(--r-pill);
  font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.85; }
}

/* ---- Procedure ---- */
.procedure {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  position: relative;
}
@media (max-width: 800px) { .procedure { grid-template-columns: 1fr; } }

.step {
  position: relative;
  padding: 28px;
  border-radius: var(--r-lg);
  background: var(--bg-1);
  border: 1px solid var(--fg-line);
  box-shadow: 0 1px 2px rgba(11,40,28,0.04);
  transition: transform var(--t-base) var(--ease-out), box-shadow var(--t-base) var(--ease-out), border-color var(--t-base) var(--ease-out);
}
.step:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(11,40,28,0.10);
  border-color: rgba(0,168,107,0.25);
}
.step__num {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--brand-100);
  border: 1px solid rgba(0,168,107,0.30);
  font-family: var(--font-figures);
  font-weight: 600;
  font-size: 20px;
  color: var(--brand-700);
  margin-bottom: 24px;
}
.step__title { font-size: 20px; font-weight: 500; color: var(--fg-2); margin-bottom: 12px; }
.step__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; color: var(--fg-3); font-size: 15px; }
.step__list li { display: flex; gap: 10px; align-items: flex-start; }
.step__list li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand-500);
  margin-top: 9px;
  flex-shrink: 0;
}

/* ---- Services grid ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  position: relative;
  padding: 28px 24px 24px;
  border-radius: var(--r-lg);
  background: var(--bg-1);
  border: 1px solid var(--fg-line);
  display: flex; flex-direction: column; gap: 14px;
  box-shadow: 0 1px 2px rgba(11,40,28,0.04);
  transition: transform var(--t-base) var(--ease-out), box-shadow var(--t-base) var(--ease-out), border-color var(--t-base) var(--ease-out);
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(11,40,28,0.10);
  border-color: rgba(0,168,107,0.30);
}

.service-card__badge {
  position: absolute; top: 16px; right: 16px;
  font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em;
  padding: 5px 10px; border-radius: var(--r-pill);
  background: rgba(0,168,107,0.12); border: 1px solid rgba(0,168,107,0.35);
  color: var(--brand-700);
}

.service-card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(0,168,107,0.10);
  border: 1px solid rgba(0,168,107,0.25);
  display: grid; place-items: center;
  color: var(--brand-600);
  font-size: 22px;
  flex-shrink: 0;
}
.service-card__icon--img {
  background: var(--bg-2);
  padding: 6px;
}
.service-card__icon--img img {
  width: 100%; height: 100%;
  object-fit: contain;
  border-radius: 10px;
}

.service-card__title {
  font-size: 20px; font-weight: 500;
  color: var(--fg-2); line-height: 1.2;
}
.service-card__desc {
  font-size: 14px; color: var(--fg-4);
  line-height: 1.55; flex: 1; margin: 0;
}
.service-card__price {
  font-family: var(--font-figures);
  font-weight: 700; font-size: 22px;
  color: var(--brand-600);
  letter-spacing: -0.01em;
  margin-top: auto;
}
.service-card .btn { margin-top: 4px; width: 100%; justify-content: center; }

/* ---- Pricing table ---- */
.pricing-wrap { background: var(--bg-1); border: 1px solid var(--fg-line); border-radius: var(--r-lg); overflow: hidden; box-shadow: 0 2px 4px rgba(11,40,28,0.04); }
.pricing-head {
  padding: 28px clamp(20px, 3vw, 36px);
  border-bottom: 1px solid var(--fg-line);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.pricing-head__title { font-size: 22px; font-weight: 500; color: var(--fg-2); }
.pricing-head__note { font-size: 13px; color: var(--fg-4); }
.pricing-head__note strong { color: var(--brand-600); }

.pricing-table { width: 100%; border-collapse: collapse; }
.pricing-table th, .pricing-table td {
  text-align: left;
  padding: 18px clamp(16px, 2vw, 28px);
  border-bottom: 1px solid var(--fg-line);
  font-size: 15px;
}
.pricing-table thead th {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--fg-4);
  font-weight: 600;
  background: var(--bg-2);
  padding-block: 16px;
}
.pricing-table tbody tr:last-child td { border-bottom: none; }
.pricing-table tbody tr:hover { background: rgba(0,168,107,0.04); }
.pricing-table .bike-cell { display: flex; align-items: center; gap: 14px; }
.pricing-table .bike-cell__thumb {
  width: 64px; height: 90px;
  border-radius: 12px;

  display: grid; place-items: center;
  flex-shrink: 0;
  overflow: hidden;
}
.pricing-table .bike-cell__thumb img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 5px 6px;
}
.pricing-table .bike-cell__txt strong { color: var(--fg-2); font-weight: 500; font-size: 15px; display: block; }
.pricing-table .bike-cell__txt span  { color: var(--fg-4); font-size: 12px; }
.pricing-table .price-cell {
  font-family: var(--font-figures);
  font-weight: 600;
  color: var(--fg-2);
  font-size: 17px;
  letter-spacing: -0.01em;
}
.pricing-table .price-cell.wk { color: var(--brand-600); }
.pricing-table .price-cell .unit { font-family: var(--font-display); font-size: 11px; color: var(--fg-4); margin-left: 4px; font-weight: 500; }

/* Mobile: card layout 2 cột */
@media (max-width: 700px) {
  .pricing-head { padding: 16px clamp(14px, 4vw, 20px); gap: 8px; }
  .pricing-head__title { font-size: 15px; }

  .pricing-table thead { display: none; }
  .pricing-table,
  .pricing-table tbody { display: block; width: 100%; }

  /* Mỗi row → card 2 cột */
  .pricing-table tr {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--fg-line);
    padding: 0;
  }
  .pricing-table tbody tr:last-child { border-bottom: none; }
  .pricing-table tbody tr:hover { background: transparent; }

  .pricing-table td {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px clamp(14px, 4vw, 20px);
    border: 0;
    font-size: 14px;
  }

  /* Hàng 1 — tên xe: full width */
  .pricing-table td:nth-child(1) {
    grid-column: 1 / -1;
    padding: 14px clamp(14px, 4vw, 20px) 12px;
    border-bottom: 1px solid var(--fg-line);
  }

  /* Hàng 2 — giá ngày thường | giá cuối tuần */
  .pricing-table td:nth-child(2) { border-right: 1px solid var(--fg-line); }

  /* Hàng 3 — phụ kiện | nút đặt */
  .pricing-table td:nth-child(4) {
    border-top: 1px solid var(--fg-line);
    border-right: 1px solid var(--fg-line);
    color: var(--fg-4);
    font-size: 12px;
    justify-content: center;
  }
  .pricing-table td:nth-child(5) {
    border-top: 1px solid var(--fg-line);
    align-items: flex-end;
    justify-content: center;
  }

  /* Label nhỏ phía trên giá và phụ kiện */
  .pricing-table td:nth-child(2)::before,
  .pricing-table td:nth-child(3)::before,
  .pricing-table td:nth-child(4)::before {
    content: attr(data-label);
    font-size: 10px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--fg-5);
    font-weight: 600;
    margin-bottom: 3px;
  }

  /* Thu nhỏ ảnh xe và font giá */
  .pricing-table .bike-cell__thumb { width: 54px; height: 76px; }
  .pricing-table .price-cell { font-size: 16px; }
}

.pricing-notes {
  padding: 24px clamp(20px, 3vw, 36px);
  background: rgba(0,168,107,0.05);
  border-top: 1px solid var(--fg-line);
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 36px;
  font-size: 13px; color: var(--fg-3);
}
@media (max-width: 700px) { .pricing-notes { grid-template-columns: 1fr; } }
.pricing-notes li { display: flex; gap: 10px; align-items: flex-start; }
.pricing-notes li::before {
  content: "";
  width: 14px; height: 14px; flex-shrink: 0; margin-top: 4px;
  background: var(--brand-500);
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center / contain no-repeat;
}

/* ---- Pricing callout bar (hotline + ưu điểm) ---- */
.pricing-callout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px 40px;
  align-items: center;
  padding: 24px clamp(20px, 3vw, 36px);
  background: linear-gradient(135deg, rgba(0,168,107,0.07), rgba(0,168,107,0.02));
  border-bottom: 1px solid var(--fg-line);
}
@media (max-width: 680px) { .pricing-callout { grid-template-columns: 1fr; } }

.pricing-callout__phone {
  display: flex; flex-direction: column; gap: 4px;
  text-decoration: none; color: inherit;
  padding-right: 40px;
  border-right: 1px solid var(--fg-line);
}
@media (max-width: 680px) {
  .pricing-callout__phone { border-right: none; border-bottom: 1px solid var(--fg-line); padding-right: 0; padding-bottom: 16px; }
}
.pricing-callout__label {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--fg-4); font-weight: 600;
}
.pricing-callout__num {
  font-family: var(--font-figures);
  font-weight: 700;
  font-size: clamp(26px, 3vw, 36px);
  color: var(--brand-600);
  line-height: 1;
  letter-spacing: -0.02em;
  transition: color var(--t-fast) var(--ease-out);
}
.pricing-callout__phone:hover .pricing-callout__num { color: var(--brand-700); }
.pricing-callout__sub { font-size: 12px; color: var(--fg-4); letter-spacing: 0.04em; margin-top: 2px; }

.pricing-callout__benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 24px;
  list-style: none; padding: 0; margin: 0;
}
@media (max-width: 480px) { .pricing-callout__benefits { grid-template-columns: 1fr; } }

.pricing-callout__item {
  display: flex; gap: 9px; align-items: flex-start;
  font-size: 14px; color: var(--fg-2); line-height: 1.4;
}
.pricing-callout__item .fa-solid { color: var(--brand-500); margin-top: 2px; flex-shrink: 0; font-size: 12px; }

/* ---- CTA banner ---- */
.cta-banner {
  position: relative;
  border-radius: var(--r-xl);
  background:
    radial-gradient(800px 400px at 90% 50%, rgba(168,240,204,0.55), transparent 60%),
    linear-gradient(135deg, var(--brand-600) 0%, var(--brand-800) 100%);
  border: 1px solid rgba(0,168,107,0.40);
  padding: clamp(40px, 6vw, 72px);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  color: #FFFFFF;
  box-shadow: 0 24px 60px rgba(0,168,107,0.20);
}
.cta-banner h2 { color: #FFFFFF; }
.cta-banner .lead { color: rgba(255,255,255,0.85); }
.cta-banner .btn-ghost {
  background: rgba(255,255,255,0.12);
  color: #FFFFFF;
  border-color: rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}
.cta-banner .btn-ghost:hover { background: rgba(255,255,255,0.22); color: #FFFFFF; }
.cta-banner .btn-primary {
  background: #FFFFFF; color: var(--brand-700);
  box-shadow: 0 8px 24px rgba(0,0,0,0.16);
}
.cta-banner .btn-primary:hover { background: var(--brand-100); color: var(--brand-700); box-shadow: 0 12px 32px rgba(0,0,0,0.22); }
.cta-banner .eyebrow { color: rgba(255,255,255,0.85); }
.cta-banner .eyebrow::before { background: rgba(255,255,255,0.85); }
@media (max-width: 800px) { .cta-banner { grid-template-columns: 1fr; } }
.cta-banner h2 { font-size: clamp(28px, 4.4vw, 56px); }
.cta-banner__hot {
  display: flex; flex-direction: column; gap: 6px;
  border-left: 2px solid rgba(255,255,255,0.65);
  padding-left: 24px;
}
.cta-banner__hot-lbl { font-size: 11px; letter-spacing: 0.2em; color: rgba(255,255,255,0.85); text-transform: uppercase; }
.cta-banner__hot-num {
  font-family: var(--font-figures);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 56px);
  color: #FFFFFF;
  line-height: 1;
  letter-spacing: -0.02em;
}
.cta-banner__hot-sub { font-size: 13px; color: rgba(255,255,255,0.78); }
.cta-banner__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

/* ---- Booking form ---- */
.booking {
  background: linear-gradient(180deg, var(--bg-1), var(--bg-0));
  border: 1px solid var(--fg-line);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: flex-start;
}
@media (max-width: 800px) { .booking { grid-template-columns: 1fr; } }
.booking__intro p { color: var(--fg-3); margin-top: 16px; font-size: 15px; }
.booking__intro .bullets { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; padding: 0; list-style: none; }
.booking__intro .bullets li { display: flex; gap: 12px; align-items: flex-start; color: var(--fg-2); font-size: 15px; }
.booking__intro .bullets svg { flex-shrink: 0; color: var(--brand-600); margin-top: 2px; }

.form {
  display: grid; gap: 18px;
  background: rgba(0,168,107,0.04);
  border: 1px solid rgba(0,168,107,0.18);
  border-radius: var(--r-lg);
  padding: clamp(20px, 3vw, 32px);
}
.form__row { display: grid; gap: 18px; grid-template-columns: 1fr 1fr; }
@media (max-width: 480px) { .form__row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 12px; color: var(--fg-4); text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; }
.field input, .field select, .field textarea {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--fg-line-strong);
  color: var(--fg-1);
  font-family: inherit;
  font-size: 15px;
  padding: 14px 16px;
  border-radius: var(--r-md);
  outline: none;
  transition: border-color var(--t-base) var(--ease-out), background var(--t-base) var(--ease-out);
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--brand-400);
  background: rgba(0,168,107,0.05);
}
.field input::placeholder, .field textarea::placeholder { color: var(--fg-5); }
.field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23838383' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>"); background-repeat: no-repeat; background-position: right 14px center; background-size: 18px; padding-right: 44px; }
.field textarea { min-height: 96px; resize: vertical; }
.form__submit { margin-top: 6px; }
.form__success {
  background: rgba(0,197,107,0.12);
  border: 1px solid rgba(0,197,107,0.35);
  color: #2DDD8A;
  padding: 16px 18px;
  border-radius: var(--r-md);
  font-size: 14px;
  display: flex; align-items: center; gap: 10px;
}

/* ---- FAQ ---- */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-1);
  border: 1px solid var(--fg-line);
  border-radius: var(--r-md);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  color: var(--fg-2);
  font-size: 16px;
  font-weight: 500;
  transition: background var(--t-base) var(--ease-out);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  width: 22px; height: 22px;
  background: var(--fg-3);
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>") center / contain no-repeat;
  transition: transform var(--t-base) var(--ease-out);
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item[open] summary { background: rgba(0,168,107,0.06); }
.faq-item .faq-body {
  padding: 0 24px 22px;
  color: var(--fg-3);
  font-size: 15px;
  line-height: 1.6;
}

/* ---- Footer ---- */
.footer {
  border-top: 1px solid var(--fg-line);
  padding-block: 64px 32px;
  margin-top: 64px;
  background: linear-gradient(180deg, transparent, rgba(0,168,107,0.05));
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 800px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__brand p { color: var(--fg-4); font-size: 14px; line-height: 1.6; margin-top: 16px; max-width: 38ch; }
.footer__col h5 { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--fg-4); font-weight: 600; margin-bottom: 18px; }
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer__col a, .footer__col li { color: var(--fg-3); font-size: 14px; }
.footer__col a:hover { color: var(--fg-2); }
.footer__contact-line { display: flex; gap: 12px; align-items: flex-start; color: var(--fg-3); font-size: 14px; line-height: 1.5; }
.footer__contact-line svg { color: var(--brand-600); flex-shrink: 0; margin-top: 2px; }
.footer__contact { display: flex; flex-direction: column; gap: 14px; }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--fg-line);
  color: var(--fg-5);
  font-size: 13px;
  flex-wrap: wrap; gap: 12px;
}
.footer__socials { display: flex; gap: 10px; }
.footer__socials a {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: var(--bg-1);
  border: 1px solid var(--fg-line);
  color: var(--fg-3);
  transition: all var(--t-base) var(--ease-out);
}
.footer__socials a:hover { color: var(--brand-600); border-color: rgba(0,168,107,0.35); background: rgba(0,168,107,0.06); }

/* ---- Floating action stack (Zalo + Hotline) ---- */
.floating-actions {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 45;
  display: flex; flex-direction: column;
  gap: 12px;
}
.floating-actions a {
  width: 60px; height: 60px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #FFFFFF;
  text-decoration: none;
  position: relative;
  transition: transform var(--t-base) var(--ease-out), box-shadow var(--t-base) var(--ease-out);
}
.floating-actions a:hover { transform: scale(1.08); }
.floating-actions a:active { transform: scale(0.95); }
.floating-actions__zalo {
  background: linear-gradient(135deg, #0084FF 0%, #006FE3 100%);
  box-shadow: 0 8px 24px rgba(0,132,255,0.40), 0 0 0 6px rgba(0,132,255,0.12);
}
.floating-actions__call {
  background: linear-gradient(135deg, var(--brand-400) 0%, var(--brand-600) 100%);
  box-shadow: 0 8px 24px rgba(0,168,107,0.40), 0 0 0 6px rgba(0,168,107,0.14);
}
.floating-actions__call::before {
  content: "";
  position: absolute; inset: -2px;
  border-radius: 50%;
  border: 2px solid var(--brand-400);
  animation: ringPulse 2.2s var(--ease-out) infinite;
  pointer-events: none;
}
@keyframes ringPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}
.floating-actions__tip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--fg-1);
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity var(--t-base) var(--ease-out), transform var(--t-base) var(--ease-out);
  letter-spacing: 0.04em;
}
.floating-actions__tip::after {
  content: "";
  position: absolute;
  left: 100%; top: 50%;
  margin-top: -5px;
  border: 5px solid transparent;
  border-left-color: var(--fg-1);
}
.floating-actions a:hover .floating-actions__tip { opacity: 1; transform: translateY(-50%) translateX(-4px); }

@media (max-width: 600px) {
  .floating-actions { bottom: 16px; right: 16px; gap: 10px; }
  .floating-actions a { width: 52px; height: 52px; }
  .floating-actions__tip { display: none; }
}

/* legacy floating-call class (kept harmless) */
.floating-call { display: none !important; }

/* ---- Hero photo backdrop ---- */
.hero { isolation: isolate; }
.hero__photo {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.hero__photo img {
  position: absolute;
  top: 0; right: -10%;
  width: 75%; height: 100%;
  object-fit: cover;
  opacity: 0.32;
  mask-image: radial-gradient(ellipse 80% 70% at 80% 50%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 80% 50%, #000 30%, transparent 75%);
}
@media (max-width: 900px) { .hero__photo img { right: -40%; width: 130%; opacity: 0.18; } }

/* ---- Testimonials ---- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
@media (max-width: 800px) { .testimonials { grid-template-columns: 1fr; } }
.testimonial {
  position: relative;
  padding: 36px;
  border-radius: var(--r-lg);
  background: var(--bg-1);
  border: 1px solid var(--fg-line);
  display: flex; flex-direction: column; gap: 24px;
}
.testimonial__quote-icon {
  position: absolute;
  top: 24px; right: 28px;
  color: rgba(0,168,107,0.22);
  font-family: var(--font-figures);
  font-weight: 700;
  font-size: 110px;
  line-height: 0.7;
  pointer-events: none;
}
.testimonial__text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--fg-2);
  position: relative;
  z-index: 1;
}
.testimonial__author {
  display: flex; align-items: center; gap: 16px;
  border-top: 1px solid var(--fg-line);
  padding-top: 20px;
}
.testimonial__avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-400), var(--brand-700));
  display: grid; place-items: center;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 18px;
  flex-shrink: 0;
}
.testimonial__name { color: var(--fg-2); font-weight: 500; font-size: 15px; }
.testimonial__role { color: var(--fg-5); font-size: 12px; letter-spacing: 0.06em; }
.testimonial__rating { margin-left: auto; display: flex; gap: 2px; color: var(--warning); }

/* ---- News ---- */
.news {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}
@media (max-width: 1000px) { .news { grid-template-columns: 1fr 1fr; grid-template-rows: auto; } }
@media (max-width: 600px) { .news { grid-template-columns: 1fr; } }

.news-card {
  position: relative;
  border-radius: var(--r-lg);
  background: var(--bg-1);
  border: 1px solid var(--fg-line);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color var(--t-base) var(--ease-out), transform var(--t-base) var(--ease-out);
  text-decoration: none;
  color: inherit;
}
.news-card:hover { border-color: rgba(0,168,107,0.35); transform: translateY(-3px); box-shadow: 0 18px 50px rgba(11,40,28,0.10); }
.news-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-2);
}
.news-card__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease-out);
}
.news-card:hover .news-card__media img { transform: scale(1.06); }
.news-card__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,40,28,0.55), transparent 55%);
  pointer-events: none;
}
.news-card__tag {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0,168,107,0.30);
  color: var(--brand-700);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.news-card__body {
  padding: 22px;
  display: flex; flex-direction: column; gap: 12px;
  flex: 1;
}
.news-card__meta {
  display: flex; align-items: center; gap: 12px;
  font-size: 12px;
  color: var(--fg-5);
  letter-spacing: 0.04em;
}
.news-card__meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--fg-line-strong); }
.news-card__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--fg-2);
  line-height: 1.3;
  text-wrap: balance;
}
.news-card__excerpt {
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg-4);
  flex: 1;
}
.news-card__more {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--brand-600);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.04em;
  margin-top: auto;
}
.news-card__more svg { transition: transform var(--t-base) var(--ease-out); }
.news-card:hover .news-card__more svg { transform: translateX(4px); }

.news-card.featured {
  grid-row: span 2;
}
.news-card.featured .news-card__media { aspect-ratio: 4 / 5; }
.news-card.featured .news-card__title { font-size: 26px; }
.news-card.featured .news-card__body { padding: 28px; gap: 14px; }
@media (max-width: 1000px) { .news-card.featured { grid-column: span 2; grid-row: auto; } .news-card.featured .news-card__media { aspect-ratio: 21 / 9; } }
@media (max-width: 600px) { .news-card.featured { grid-column: auto; } .news-card.featured .news-card__media { aspect-ratio: 16 / 10; } .news-card.featured .news-card__title { font-size: 20px; } }

/* ---- Reveal (disabled — content shows immediately for max reliability) ---- */
.reveal { /* no-op */ }

/* ---- Font Awesome adjustments ---- */
/* FA glyphs default inline-block; set sensible base size per context. */
.why__icon .fa-solid, .why__icon .fa-regular { font-size: 22px; }
.hero__stat-icon .fa-solid, .hero__stat-icon .fa-regular { font-size: 18px; }
.location-item__dot .fa-solid { font-size: 14px; }
.contact-strip__icon .fa-solid, .contact-strip__icon .zalo-glyph { font-size: 22px; }
.footer__contact-line .fa-solid { font-size: 14px; }
.footer__socials a .fa-brands, .footer__socials a .zalo-glyph { font-size: 14px; }
.floating-actions a .fa-solid { font-size: 22px; }

/* Zalo wordmark fallback (FA Free doesn't include Zalo) */
.zalo-glyph {
  display: inline-flex;
  align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: 13px;
  letter-spacing: -0.04em;
  line-height: 1;
  color: currentColor;
}
.floating-actions__zalo .zalo-glyph { font-size: 18px; }

/* ---- Intro card (Giới thiệu) ---- */
.intro-card {
  position: relative;
  border-radius: var(--r-xl);
  background:
    linear-gradient(135deg, #FFFFFF 0%, #F0F8F3 60%, #E5F2EA 100%);
  border: 1px solid rgba(0,168,107,0.16);
  padding: clamp(32px, 5vw, 64px);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(11,40,28,0.06);
}
.intro-card__flora {
  position: absolute;
  top: -120px; right: -120px;
  width: 480px; height: 480px;
  pointer-events: none;
  opacity: 0.7;
}
.intro-card__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
  position: relative;
  z-index: 1;
}
@media (max-width: 800px) { .intro-card__grid { grid-template-columns: 1fr; gap: 24px; } }

.intro-card__head h2 {
  font-size: clamp(28px, 3.6vw, 42px);
  text-wrap: balance;

  margin-bottom: 32px;
  line-height: 1.12;
}
.intro-card__sig { display: flex; align-items: center; gap: 16px; }
.intro-card__sig-bar { width: 3px; height: 40px; background: var(--brand-500); border-radius: 2px; }
.intro-card__sig-name { font-size: 15px; font-weight: 600; color: var(--fg-2); }
.intro-card__sig-role { font-size: 12px; color: var(--fg-4); letter-spacing: 0.06em; margin-top: 2px; }

.intro-card__body {
  display: flex; flex-direction: column;
  gap: 18px;
}
.intro-card__body .lead { font-size: clamp(16px, 1.4vw, 18px); }

.intro-card__highlights {
  list-style: none;
  padding: 0;
  margin: clamp(40px, 5vw, 56px) 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  border-top: 1px dashed rgba(0,168,107,0.30);
  padding-top: clamp(28px, 4vw, 40px);
  position: relative;
  z-index: 1;
}
@media (max-width: 800px) { .intro-card__highlights { grid-template-columns: 1fr; } }
.intro-card__highlights li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.intro-card__hl-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(0,168,107,0.10);
  border: 1px solid rgba(0,168,107,0.25);
  color: var(--brand-700);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.intro-card__hl-title { font-size: 15px; font-weight: 600; color: var(--fg-2); }
.intro-card__hl-sub { font-size: 13px; color: var(--fg-4); margin-top: 2px; line-height: 1.45; }

/* =====================================================
   Sub-pages: article detail, news list, legal pages
   ===================================================== */

.page-hero {
  padding: clamp(48px, 7vw, 96px) 0 clamp(32px, 4vw, 56px);
  position: relative;
}
.page-hero__breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--fg-4);
  margin-bottom: 24px;
  letter-spacing: 0.04em;
  flex-wrap: wrap;
}
.page-hero__breadcrumb a { color: var(--fg-3); }
.page-hero__breadcrumb a:hover { color: var(--brand-600); }
.page-hero__breadcrumb svg { color: var(--fg-5); }
.page-hero h1 {
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 500;

}
.page-hero .lead { margin-top: 20px; max-width: 60ch; }
.single-post article.prose h2 {
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
}
/* News list page */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
@media (max-width: 900px) { .news-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) { .news-grid { grid-template-columns: 1fr; } }

.news-categories {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 36px;
}
.news-categories a {
  padding: 10px 18px;
  border-radius: var(--r-pill);
  background: var(--bg-1);
  border: 1px solid var(--fg-line);
  color: var(--fg-3);
  font-size: 14px; font-weight: 500;
  transition: all var(--t-base) var(--ease-out);
}
.news-categories a:hover { border-color: rgba(0,168,107,0.35); color: var(--brand-700); }
.news-categories a.active { background: var(--brand-500); color: #FFFFFF; border-color: var(--brand-500); }

/* Article detail */
.article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(32px, 5vw, 80px);
  align-items: flex-start;
}
@media (max-width: 1000px) { .article { grid-template-columns: 1fr; } }

.article__cover {
  width: 100%;
  aspect-ratio: 21 / 9;
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 32px;
  background: var(--bg-2);
}
.article__cover img { width: 100%; height: 100%; object-fit: cover; }

.article__meta {
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
  font-size: 13px;
  color: var(--fg-4);
  margin-bottom: 16px;
}
.article__meta .tag {
  background: rgba(0,168,107,0.10);
  border: 1px solid rgba(0,168,107,0.30);
  color: var(--brand-700);
  font-weight: 600;
  font-size: 11px;
  padding: 5px 10px;
  border-radius: var(--r-pill);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.article__meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--fg-line-strong); }

.prose {
  font-size: 17px;
  line-height: 1.75;
  color: var(--fg-1);

}
.prose > * + * { margin-top: 1em; }
.prose p { color: var(--fg-2); }
.prose h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin-top: 1.5em;
  font-weight: 600;
  color: var(--fg-2);
}
.prose h3 {
  font-size: clamp(20px, 2.4vw, 24px);
  margin-top: 1.4em;
  font-weight: 600;
  color: var(--fg-2);
}
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li { margin-top: 0.35em; }
.prose li::marker { color: var(--brand-600); }
.prose blockquote {
  border-left: 3px solid var(--brand-500);
  margin: 1.4em 0;
  color: var(--fg-2);
  font-style: italic;
  background: rgba(0,168,107,0.06);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 16px 20px;
}
.prose a { color: var(--brand-700); border-bottom: 1px solid rgba(0,168,107,0.3); }
.prose a:hover { color: var(--brand-600); border-bottom-color: var(--brand-500); }
.prose img {
  width: 100%; height: 100%;
  border-radius: var(--r-md);
  margin: 1.6em 0;
}
.prose .callout {
  background: var(--brand-100);
  border: 1px solid rgba(0,168,107,0.25);
  border-radius: var(--r-md);
  padding: 20px 24px;
  margin: 1.5em 0;
  display: flex; gap: 14px; align-items: flex-start;
}
.prose .callout svg { color: var(--brand-700); flex-shrink: 0; margin-top: 2px; }
.prose .callout p { margin: 0; }

/* Article sidebar */
.article__aside { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 96px; }
@media (max-width: 1000px) { .article__aside { position: static; } }
.aside-card {
  padding: 24px;
  border-radius: var(--r-lg);
  background: var(--bg-1);
  border: 1px solid var(--fg-line);
  box-shadow: 0 2px 4px rgba(11,40,28,0.04);
}
.aside-card h4 { font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg-4); font-weight: 600; margin-bottom: 16px; }
.aside-card.cta {
  background: linear-gradient(135deg, var(--brand-600), var(--brand-800));
  color: #FFFFFF;
  border: none;
}
.aside-card.cta h4 { color: rgba(255,255,255,0.85); }
.aside-card.cta p { color: rgba(255,255,255,0.92); font-size: 14px; line-height: 1.55; margin-bottom: 18px; }
.aside-card.cta .price { font-family: var(--font-figures); font-weight: 700; font-size: 36px; color: #FFFFFF; }
.aside-card.cta .price-meta { font-size: 12px; color: rgba(255,255,255,0.78); margin-bottom: 18px; }
.aside-card.cta .btn-primary { background: #FFFFFF; color: var(--brand-700); width: 100%; }
.aside-card.cta .btn-primary:hover { background: var(--brand-100); color: var(--brand-700); }

.related-list { display: flex; flex-direction: column; gap: 16px; }
.related-item { display: flex; gap: 12px; text-decoration: none; color: inherit; }
.related-item__thumb {
  width: 76px; height: 60px; flex-shrink: 0;
  border-radius: var(--r-sm);
  overflow: hidden;
  background: var(--bg-2);
}
.related-item__thumb img { width: 100%; height: 100%; object-fit: cover; }
.related-item__txt { min-width: 0; }
.related-item__title {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-2);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.related-item__date { font-size: 11px; color: var(--fg-5); margin-top: 4px; letter-spacing: 0.04em; }
.related-item:hover .related-item__title { color: var(--brand-700); }

/* Legal / about page */
.legal {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: clamp(32px, 4vw, 64px);
  align-items: flex-start;
}
@media (max-width: 900px) { .legal { grid-template-columns: 1fr; } }
.legal__toc {
  position: sticky; top: 96px;
  padding: 24px;
  border-radius: var(--r-lg);
  background: var(--bg-1);
  border: 1px solid var(--fg-line);
}
@media (max-width: 900px) { .legal__toc { position: static; } }
.legal__toc h4 { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--fg-4); font-weight: 600; margin-bottom: 14px; }
.legal__toc ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.legal__toc a {
  display: block;
  padding: 8px 12px;
  border-radius: var(--r-sm);
  color: var(--fg-3);
  font-size: 14px;
  border-left: 2px solid transparent;
  transition: all var(--t-base) var(--ease-out);
}
.legal__toc a:hover { background: var(--bg-2); color: var(--brand-700); }
.legal__toc a.active { border-left-color: var(--brand-500); color: var(--brand-700); background: var(--brand-100); }

/* About-specific layout pieces */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
@media (max-width: 720px) { .about-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.about-stat {
  padding: 28px 24px;
  border-radius: var(--r-lg);
  background: var(--bg-1);
  border: 1px solid var(--fg-line);
  text-align: center;
}
.about-stat__num {
  font-family: var(--font-figures);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--brand-600);
  line-height: 1;
}
.about-stat__lbl { font-size: 13px; color: var(--fg-4); margin-top: 8px; letter-spacing: 0.04em; }

.about-photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--bg-2);
  box-shadow: var(--shadow-2);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }

/* Quick contact strip on sub-pages */
.contact-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
@media (max-width: 800px) { .contact-strip { grid-template-columns: 1fr; } }
.contact-strip__item {
  padding: 24px;
  border-radius: var(--r-lg);
  background: var(--bg-1);
  border: 1px solid var(--fg-line);
  display: flex; gap: 16px; align-items: center;
  text-decoration: none;
  color: inherit;
  transition: all var(--t-base) var(--ease-out);
}
.contact-strip__item:hover { border-color: rgba(0,168,107,0.40); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(11,40,28,0.08); }
.contact-strip__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--brand-100);
  display: grid; place-items: center;
  color: var(--brand-700);
  flex-shrink: 0;
}
.contact-strip__item.zalo .contact-strip__icon { background: rgba(0,132,255,0.14); color: #0066D1; }
.contact-strip__lbl { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg-4); font-weight: 600; }
.contact-strip__val { font-family: var(--font-figures); font-weight: 600; font-size: 18px; color: var(--fg-2); margin-top: 2px; }

/* 2-column contact layout: map left, contact cards right */
.contact-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(20px, 3vw, 32px);
  align-items: stretch;
}
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; } }

.contact-map {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(0,168,107,0.20);
  background: var(--bg-2);
  min-height: 420px;
  box-shadow: 0 12px 36px rgba(11,40,28,0.08);
}
.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  filter: saturate(1.05);
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-cards .contact-strip__item { width: 100%; }

.contact-hours {
  display: flex; gap: 16px; align-items: center;
  padding: 18px 22px;
  border-radius: var(--r-lg);
  background:
    linear-gradient(135deg, rgba(0,168,107,0.10), rgba(54,191,250,0.06));
  border: 1px dashed rgba(0,168,107,0.30);
}
.contact-hours > .fa-solid {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: rgba(255,255,255,0.7);
  color: var(--brand-700);
  font-size: 22px;
  flex-shrink: 0;
}

/* =====================================================
   Pagination — the_posts_pagination()
   ===================================================== */
.navigation.pagination { width: 100%; }
.navigation.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.navigation.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border-radius: var(--r-md);
  background: var(--bg-1);
  border: 1px solid var(--fg-line);
  color: var(--fg-3);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background var(--t-base) var(--ease-out),
              border-color var(--t-base) var(--ease-out),
              color var(--t-base) var(--ease-out),
              transform var(--t-base) var(--ease-out);
}
.navigation.pagination a.page-numbers:hover {
  border-color: rgba(0,168,107,0.45);
  color: var(--brand-700);
  background: var(--brand-100);
  transform: translateY(-1px);
}
.navigation.pagination .page-numbers.current {
  background: var(--brand-500);
  border-color: var(--brand-500);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(0,168,107,0.32);
}
.navigation.pagination .page-numbers.dots {
  background: transparent;
  border-color: transparent;
  color: var(--fg-5);
  min-width: 28px;
  padding: 0;
  pointer-events: none;
}
.navigation.pagination .prev.page-numbers,
.navigation.pagination .next.page-numbers {
  padding: 0 18px;
  min-width: auto;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--fg-2);
}
.navigation.pagination .prev.page-numbers:hover,
.navigation.pagination .next.page-numbers:hover {
  color: var(--brand-700);
}

/* =====================================================
   Single post — layout 2 cột, author box, sidebar CTA
   ===================================================== */

/* Page-hero meta row: avatar + tên tác giả + ngày */
.page-hero__meta {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 10px 14px;
  margin-top: 18px;
  color: var(--fg-4); font-size: 14px;
}
.page-hero__dot { color: var(--fg-line-strong); }
.page-hero__author {
  display: flex; align-items: center; gap: 8px;
  color: var(--fg-3); font-weight: 500;
}
.page-hero__avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-600), var(--brand-400));
  display: grid; place-items: center;
  font-size: 10px; font-weight: 700; color: #fff;
  letter-spacing: 0.01em; flex-shrink: 0;
}

/* Article 2-col grid */
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
@media (max-width: 1040px) { .article-layout { grid-template-columns: 1fr; } }
.article-main { min-width: 0; }

/* Sticky sidebar */
.article-sidebar {
  position: sticky;
  top: calc(var(--header-h, 72px) + 24px);
}
@media (max-width: 1040px) { .article-sidebar { position: static; } }

/* Sidebar rental CTA card */
.sidebar-cta {
  background: linear-gradient(160deg, #1a1a1a 0%, #0d0d0d 100%);
  border-radius: var(--r-xl);
  padding: 28px 22px;
  display: flex; flex-direction: column; gap: 14px;
  box-shadow: 0 20px 48px rgba(0,0,0,0.40);
  color: #fff;
}
/* ép màu trắng thắng mọi selector theme */
.sidebar-cta h3,
.sidebar-cta p,
.sidebar-cta li,
.sidebar-cta span:not(.btn):not(.zalo-glyph),
.sidebar-cta div:not(.btn) { color: #fff; }
.sidebar-cta .sidebar-cta__eyebrow,
.sidebar-cta__eyebrow {
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; font-weight: 600;
  color: rgba(255,255,255,0.60) !important;
}
.sidebar-cta h3.sidebar-cta__title,
.sidebar-cta__title {
  font-size: 17px; font-weight: 700; color: #fff !important;
  line-height: 1.3; margin: 0;
}
.sidebar-cta p.sidebar-cta__desc,
.sidebar-cta__desc {
  font-size: 13px; color: rgba(255,255,255,0.80) !important;
  line-height: 1.55; margin: 0;
}
.sidebar-cta__price {
  display: flex; align-items: baseline; gap: 6px;
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.sidebar-cta__price-num {
  font-size: 30px; font-weight: 700; color: #fff; line-height: 1;
}
.sidebar-cta__price-unit { font-size: 13px; color: rgba(255,255,255,0.68); }
.sidebar-cta__actions { display: flex; flex-direction: column; gap: 8px; }
.sidebar-cta .btn-primary {
  background: #fff; color: var(--brand-800);
  justify-content: center; font-weight: 700;
}
.sidebar-cta .btn-primary:hover { background: var(--brand-100); color: var(--brand-800); }
.sidebar-cta .btn-ghost {
  border-color: rgba(255,255,255,0.35); color: #fff; justify-content: center;
}
.sidebar-cta .btn-ghost:hover {
  background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.60);
}
.sidebar-cta .sidebar-cta__footer,
.sidebar-cta__footer {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.68) !important;
}
.sidebar-cta__perks {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 7px;
  padding-top: 4px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.sidebar-cta .sidebar-cta__perks li,
.sidebar-cta__perks li {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.80) !important;
}
.sidebar-cta .sidebar-cta__perks .fa-check,
.sidebar-cta__perks .fa-check { color: rgba(255,255,255,0.50) !important; font-size: 10px; }

/* Author box */
.author-box {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 26px 28px;
  margin-top: 48px;
  background: var(--bg-1);
  border: 1px solid var(--fg-line);
  border-radius: var(--r-xl);
  box-shadow: 0 4px 12px rgba(11,40,28,0.04);
}
@media (max-width: 600px) { .author-box { flex-direction: column; padding: 20px 18px; } }
.author-box__avatar {
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-600), var(--brand-400));
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700;
  font-size: 18px; color: #fff; flex-shrink: 0;
}
.author-box__info { min-width: 0; }
.author-box__name {
  font-size: 16px; font-weight: 700; color: var(--fg-1); margin-bottom: 2px;
}
.author-box__role {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--brand-700); font-weight: 600; margin-bottom: 10px;
}
.author-box__bio {
  font-size: 14px; line-height: 1.65; color: var(--fg-3); margin: 0;
}

/* Related posts */
.related-posts {
  margin-top: 52px; padding-top: 40px;
  border-top: 1px solid var(--fg-line);
}
.related-posts__title {
  font-size: 18px; font-weight: 700; color: var(--fg-2); margin-bottom: 24px;
}

/* Single-post end CTA banner */
.single-cta-section { padding-top: 0; }
.single-cta-banner {
  position: relative; overflow: hidden;
  border-radius: var(--r-xl);
  background: linear-gradient(130deg, var(--brand-800) 0%, var(--brand-600) 55%, #08b9f9 130%);
  padding: clamp(32px, 5vw, 52px) clamp(28px, 4vw, 52px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px; align-items: center;
  box-shadow: 0 24px 64px rgba(0,86,55,0.26);
}
@media (max-width: 680px) {
  .single-cta-banner { grid-template-columns: 1fr; text-align: center; }
}
.single-cta-banner__deco {
  position: absolute; right: -16px; top: -16px;
  font-size: 180px; color: rgba(255,255,255,0.04);
  line-height: 1; pointer-events: none; user-select: none;
}
.single-cta-banner__body { position: relative; }
.single-cta-banner__body h3 {
  font-size: clamp(19px, 2.6vw, 26px); font-weight: 700;
  color: #fff; margin: 8px 0 10px; line-height: 1.25;
}
.single-cta-banner__body p {
  font-size: 15px; color: rgba(255,255,255,0.82);
  line-height: 1.55; margin: 0;
}
.single-cta-banner__actions {
  display: flex; flex-direction: column; gap: 10px;
  position: relative; min-width: 190px;
}
@media (max-width: 680px) {
  .single-cta-banner__actions { flex-direction: row; justify-content: center; flex-wrap: wrap; }
}
.single-cta-banner .btn-primary {
  background: #fff; color: var(--brand-800); font-weight: 700; white-space: nowrap;
}
.single-cta-banner .btn-primary:hover { background: var(--brand-100); }
.single-cta-banner .btn-ghost {
  border-color: rgba(255,255,255,0.38); color: #fff; white-space: nowrap;
}
.single-cta-banner .btn-ghost:hover {
  background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.65);
}

/* =====================================================
   Prefers-reduced-motion — tắt animation cho người dùng
   có vấn đề về tiền đình / cần hiệu suất cao
   ===================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .map-mock__pin .dot,
  .map-mock__hub .ring.r3,
  .floating-actions__call::before { animation: none !important; }
}

/* =====================================================
   Scroll behavior — chỉ bật khi người dùng không giảm
   motion (tránh conflict với prefers-reduced-motion)
   ===================================================== */
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

/* =====================================================
   Print styles — SEO / accessibility bonus
   ===================================================== */
@media print {
  .site-header,
  .mobile-drawer,
  .floating-actions,
  .cta-banner__actions,
  .hero__cta,
  .footer__bottom { display: none !important; }

  body {
    background: #fff !important;
    color: #000;
    font-size: 12pt;
  }

  .container { max-width: 100%; padding: 0 12pt; }

  h1, h2, h3, h4 { color: #000; page-break-after: avoid; }

  .bike-card, .why__card, .step, .testimonial {
    border: 1px solid #ccc;
    box-shadow: none;
    break-inside: avoid;
  }

  a[href^="http"]::after,
  a[href^="tel"]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    color: #555;
  }

  .site-header + * { padding-top: 0; }
}
