:root {
  --rd-primary: #e11d48;
  --rd-primary-2: #fb7185;
  --rd-secondary: #64748b;
  --rd-accent: #0f766e;
  --rd-dark: #0f172a;
  --rd-soft: #fff1f2;
  --rd-radius: 1rem;
  --rd-shadow: 0 8px 24px rgba(15, 23, 42, 0.07);
  --rd-shadow-sm: 0 2px 10px rgba(15, 23, 42, 0.05);
  --rd-grad: linear-gradient(135deg, #be123c 0%, #e11d48 45%, #fb7185 100%);
  --rd-grad-hover: linear-gradient(135deg, #9f1239 0%, #be123c 40%, #e11d48 100%);
  --rd-grad-soft: linear-gradient(145deg, #ffffff 0%, #fff5f7 100%);
  --rd-btn-shadow: 0 6px 18px rgba(15, 23, 42, 0.12);
  --rd-btn-shadow-hover: 0 10px 26px rgba(15, 23, 42, 0.16);
}

body {
  font-family: "IBM Plex Sans Thai", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  background: #fafbfc;
  color: #0f172a;
  -webkit-font-smoothing: antialiased;
}

.text-rd-primary { color: var(--rd-primary) !important; }
.bg-rd-primary { background: var(--rd-grad) !important; }
.bg-rd-dark { background-color: var(--rd-dark) !important; }

/* ——— Buttons: simple + luxury gradient ——— */
.btn-rd-primary {
  background: var(--rd-grad);
  border: 0;
  color: #fff;
  border-radius: 999px;
  padding: 0.55rem 1.35rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: var(--rd-btn-shadow, 0 6px 18px rgba(225, 29, 72, 0.28));
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}
.btn-rd-primary:hover,
.btn-rd-primary:focus {
  background: var(--rd-grad-hover);
  color: #fff;
  border: 0;
  box-shadow: var(--rd-btn-shadow-hover, 0 10px 26px rgba(190, 18, 60, 0.35));
  transform: translateY(-1px);
  filter: none;
}
.btn-rd-primary:active {
  transform: translateY(0);
  box-shadow: var(--rd-btn-shadow);
}
.btn-outline-rd {
  border: 1.5px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--rd-grad) border-box;
  color: var(--rd-primary);
  border-radius: 999px;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  transition: all 0.18s ease;
}
.btn-outline-rd:hover {
  background: var(--rd-grad);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--rd-btn-shadow);
}
/* Unified rounded buttons for docs CTA etc. */
.btn-rd-light {
  background: #fff;
  color: var(--rd-dark, #0f172a);
  border: 0;
  border-radius: 999px;
  font-weight: 600;
  padding: 0.65rem 1.4rem;
  box-shadow: 0 6px var(--rd-shadow-blur, 18px) rgba(0, 0, 0, 0.12);
}
.btn-rd-light:hover { color: var(--rd-primary); background: #fff; }
.btn-rd-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  font-weight: 600;
  padding: 0.65rem 1.4rem;
}
.btn-rd-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: #fff;
}
.doc-cta-card .btn,
.btn-light {
  border-radius: 999px !important;
}
.btn-auth {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}
.btn-auth i { font-size: 1rem; }
.btn-light {
  border-radius: 999px;
  font-weight: 600;
}
.btn-lg.btn-rd-primary,
.btn-lg.btn-outline-rd {
  padding: 0.75rem 1.6rem;
}

/* ========== Topbar + Navbar (LuvDrive-like white header) ========== */
.topbar {
  background: var(--rd-dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
}
.topbar-link {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}
.topbar-link:hover { color: #fff; }

.site-logo {
  height: 36px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}
.navbar-site,
.navbar-luv {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.05);
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
}
.navbar-minimal { box-shadow: none; border-bottom: 1px solid #f1f5f9; }
.navbar-solid {
  background: var(--rd-dark) !important;
  box-shadow: var(--rd-shadow-sm);
}
.navbar-solid .brand-mark {
  box-shadow: none;
}
.navbar-solid .nav-link,
.navbar-solid .brand-text { color: #fff !important; }
.navbar-solid .nav-link:hover,
.navbar-solid .nav-link.active { background: rgba(255,255,255,0.15) !important; color: #fff !important; }
.navbar-solid .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-solid .lang-switch { background: rgba(255,255,255,0.15); }
.navbar-solid .lang-switch a { color: rgba(255,255,255,0.85); }
.navbar-solid .lang-switch a.active { background: #fff; color: var(--rd-primary); }
.nav-tpl-solid .topbar { display: none !important; }
.navbar-centered .brand-luv { order: 0; }
.navbar-luv .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2815, 23, 42, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.brand-luv {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 800;
  color: var(--rd-dark) !important;
  letter-spacing: -0.02em;
}
.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background: var(--rd-grad);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  box-shadow: var(--rd-btn-shadow);
}
.navbar-luv .nav-link {
  color: #475569 !important;
  font-weight: 500;
  font-size: 0.92rem;
  padding: 0.4rem 0.75rem !important;
  border-radius: 999px;
  transition: color 0.15s ease, background 0.15s ease;
}
.navbar-luv .nav-link:hover,
.navbar-luv .nav-link.active {
  color: var(--rd-primary) !important;
  background: transparent;
}
.navbar-luv .nav-link.active {
  font-weight: 600;
}
.lang-switch {
  display: inline-flex;
  gap: 0.15rem;
  background: #f1f5f9;
  border-radius: 999px;
  padding: 0.15rem;
}
.lang-switch a {
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
  text-decoration: none;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
}
.lang-switch a.active {
  background: #fff;
  color: var(--rd-primary);
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.08);
}
.nav-actions .btn-auth {
  padding: 0.45rem 1.1rem;
}

/* ========== Hero multi-cover carousel — light overlay ========== */
.hero-luv {
  position: relative;
  min-height: clamp(460px, 72vh, 680px);
  background: var(--hero-img, #0f172a) center/cover no-repeat;
  display: flex;
  align-items: flex-end;
  padding: 3rem 0 2.5rem;
  color: #fff;
  overflow: hidden;
}
.hero-carousel-wrap { background: #0f172a; }
.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
  height: 100%;
}
.hero-slide {
  width: 100%;
  height: 100%;
  min-height: clamp(460px, 72vh, 680px);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero-indicators {
  z-index: 3;
  margin-bottom: 0.75rem;
}
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
  z-index: 3;
  width: 8%;
  opacity: 0.75;
}
.hero-luv-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(15, 23, 42, 0.42) 0%, rgba(15, 23, 42, 0.14) 45%, rgba(15, 23, 42, 0.06) 100%),
    linear-gradient(to top, rgba(15, 23, 42, 0.38) 0%, transparent 58%);
  pointer-events: none;
}
.hero-luv-inner { position: relative; z-index: 2; width: 100%; }
.hero-pill {
  display: inline-block;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}
.hero-title {
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0.85rem;
}
.hero-lead {
  font-size: 1.05rem;
  opacity: 0.92;
  max-width: 34rem;
  margin-bottom: 1.25rem;
}
.hero-chips {
  gap: 0.75rem 1.25rem !important;
  font-size: 0.9rem;
  opacity: 0.95;
}
.hero-chips i { color: #fda4af; margin-right: 0.25rem; }

.search-card-luv {
  background: #fff;
  color: #0f172a;
  border-radius: 1.25rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  padding: 1.35rem 1.35rem 1.5rem;
}
.search-card-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--rd-soft);
  color: var(--rd-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.form-label-sm { font-size: 0.8rem; margin-bottom: 0.3rem; color: #475569; }
.search-card-luv .form-control,
.search-card-luv .form-select {
  border-radius: 0.75rem;
  border-color: #e2e8f0;
  min-height: 44px;
}
.search-card-luv .form-control:focus,
.search-card-luv .form-select:focus {
  border-color: var(--rd-primary);
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--rd-primary) 18%, transparent);
}

/* Legacy hero fallback */
.hero-rd {
  background: linear-gradient(120deg, rgba(15, 23, 42, 0.92), rgba(225, 29, 72, 0.75));
  color: #fff;
  padding: 3rem 0;
}
.search-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: var(--rd-shadow);
  padding: 1.25rem;
}

/* ========== Sections ========== */
.section-luv { padding: 3.5rem 0; }
.section-luv-alt { background: #fff; }
.section-eyebrow {
  color: var(--rd-primary);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}
.section-title {
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  margin-bottom: 0.5rem;
}
.section-sub {
  color: #64748b;
  max-width: 36rem;
  margin-bottom: 0;
}
.section-head { margin-bottom: 2rem; }

.trust-strip {
  background: #fff;
  border-bottom: 1px solid #eef2f7;
  padding: 1.75rem 0;
  margin-top: 0;
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  justify-content: center;
}
.trust-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--rd-grad);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: var(--rd-btn-shadow);
}

/* ——— Locations: clean grid ——— */
.section-locations {
  background: #fff;
}
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.85rem;
}
.area-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  background: var(--rd-grad-soft);
  border: 1px solid #f1f5f9;
  border-radius: 1.1rem;
  padding: 1.25rem 0.6rem 1.1rem;
  text-decoration: none;
  color: #0f172a;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  min-height: 118px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.area-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--rd-grad);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.area-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: #fff;
  color: var(--rd-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: var(--rd-shadow-sm);
  position: relative;
  z-index: 1;
}
.area-name {
  font-weight: 700;
  font-size: 0.92rem;
  position: relative;
  z-index: 1;
}
.area-hint {
  font-size: 0.7rem;
  font-weight: 500;
  color: #94a3b8;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.area-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--rd-btn-shadow-hover);
  border-color: transparent;
  color: #fff;
}
.area-card:hover::before { opacity: 1; }
.area-card:hover .area-icon {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  box-shadow: none;
}
.area-card:hover .area-hint { color: rgba(255, 255, 255, 0.75); }

.feature-card-luv {
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: 1.15rem;
  padding: 1.5rem;
  height: 100%;
  box-shadow: none;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.feature-card-luv:hover {
  box-shadow: var(--rd-shadow);
  transform: translateY(-2px);
}
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--rd-grad);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  box-shadow: var(--rd-btn-shadow);
}

.how-step {
  background: #fff;
  border-radius: 1rem;
  padding: 1.25rem 0.75rem;
  border: 1px solid #eef2f7;
  height: 100%;
  position: relative;
}
.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--rd-grad);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  box-shadow: var(--rd-btn-shadow);
}
.how-step-icon {
  display: block;
  font-size: 1.5rem;
  color: var(--rd-primary);
  margin: 0.35rem auto 0.5rem;
}

.doc-teaser {
  background: linear-gradient(125deg, #0f172a 0%, #4c0519 45%, #be123c 100%);
  border-radius: 1.25rem;
  padding: 2rem 1.75rem;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}
.cta-band {
  padding: 3rem 0 3.5rem;
  background: #fff;
  border-top: 1px solid #eef2f7;
}

/* ========== Car cards ========== */
.car-card {
  border: 0;
  border-radius: 1.15rem;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
  background: #fff;
}
.car-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.12);
}
.car-card .car-img {
  height: 180px;
  object-fit: cover;
  width: 100%;
  background: linear-gradient(135deg, #e2e8f0, #f1f5f9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 3rem;
}
.car-card .price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--rd-primary);
}
.car-card .price .text-muted {
  -webkit-text-fill-color: initial;
  color: #94a3b8 !important;
  font-weight: 500;
}
.car-card .btn-rd-primary {
  padding: 0.4rem 1rem;
  font-size: 0.875rem;
}

/* ========== Page covers — image-first, light overlay ========== */
.page-cover {
  position: relative;
  min-height: clamp(240px, 34vw, 340px);
  background: var(--cover-img) center/cover no-repeat;
  color: #fff;
  display: flex;
  align-items: flex-end;
  padding: 2.5rem 0 2rem;
  overflow: hidden;
}
.page-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  /* Lighter so cover photo is always readable/visible */
  background:
    linear-gradient(100deg, rgba(15, 23, 42, 0.4) 0%, rgba(15, 23, 42, 0.12) 55%, rgba(15, 23, 42, 0.05) 100%),
    linear-gradient(to top, rgba(15, 23, 42, 0.36) 0%, transparent 62%);
  pointer-events: none;
}
.page-cover-overlay { display: none; }
.page-cover-content {
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45), 0 1px 3px rgba(0, 0, 0, 0.35);
}
.page-cover-title {
  font-weight: 800;
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}
.page-cover-sub {
  opacity: 0.95;
  max-width: 36rem;
  font-size: 1rem;
}
.cms-live-cover {
  background:
    linear-gradient(100deg, rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.45)),
    #1e293b;
}
.breadcrumb-light .breadcrumb-item,
.breadcrumb-light .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}
.breadcrumb-light .breadcrumb-item.active { color: #fff; }
.breadcrumb-light .breadcrumb-item + .breadcrumb-item::before { color: rgba(255, 255, 255, 0.5); }

.alert-luv {
  background: var(--rd-soft);
  border: 1px solid color-mix(in srgb, var(--rd-primary) 20%, #fff);
  color: #9f1239;
  border-radius: 1rem;
  padding: 1rem 1.15rem;
}

.doc-panel {
  background: #fff;
  border-radius: 1.25rem;
  border: 1px solid #eef2f7;
  box-shadow: var(--rd-shadow);
  overflow: hidden;
}
.doc-panel-head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.25rem 1.35rem;
  border-bottom: 1px solid #f1f5f9;
  background: linear-gradient(180deg, #fff, #fafafa);
}
.doc-panel-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--rd-soft);
  color: var(--rd-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}
.doc-panel-icon-alt {
  background: #ecfeff;
  color: #0e7490;
}
.doc-list {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
}
.doc-list li {
  display: flex;
  gap: 1rem;
  padding: 1.1rem 1.35rem;
  border-bottom: 1px solid #f8fafc;
}
.doc-list li:last-child { border-bottom: 0; }
.doc-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--rd-dark);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.doc-deposit-card {
  background: #fff;
  border-radius: 1.25rem;
  border: 1px solid #eef2f7;
  padding: 1.5rem;
  box-shadow: var(--rd-shadow);
}
.doc-deposit-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto;
  border-radius: 18px;
  background: #ecfdf5;
  color: #059669;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}
.bg-success-soft {
  background: #ecfdf5 !important;
  color: #047857 !important;
  font-weight: 600;
}
.doc-cta-card {
  background: linear-gradient(145deg, var(--rd-dark), #9f1239);
  border-radius: 1.25rem;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ========== Footer ========== */
.footer-rd {
  background: var(--rd-dark);
}
/* Social buttons — identical size/shape for all networks */
.social-links { gap: 0.55rem !important; }
.social-btn {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  padding: 0 !important;
  margin: 0;
  border: 0 !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  font-size: 1.2rem;
  line-height: 1;
  text-decoration: none !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  transition: transform 0.15s ease, filter 0.15s ease;
  flex: 0 0 44px;
  overflow: hidden;
}
.social-btn i {
  font-size: 1.2rem;
  line-height: 1;
  display: block;
}
.social-btn:hover {
  color: #fff !important;
  transform: translateY(-2px);
  filter: brightness(1.08);
}
.social-fb { background: #1877f2 !important; }
.social-ig { background: #e4405f !important; } /* solid — matches other round buttons */
.social-line { background: #06c755 !important; }
.social-yt { background: #ff0000 !important; }
/* legacy aliases */
.btn-social { /* kept for safety */ }
.btn-fb { background: #1877f2; }
.btn-ig { background: #e4405f; }
.btn-line { background: #06c755; }
.btn-yt { background: #ff0000; }

.price-tiers {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.65rem;
  color: #64748b;
}
.price-tiers span {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: #f8fafc;
  border: 1px solid #eef2f7;
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
  font-weight: 600;
}
.price-tiers i { color: var(--rd-primary); }

/* Floating quick contact */
.quick-contact {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.qc-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  font-size: 1.3rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  transition: transform 0.15s ease;
  text-decoration: none;
}
.qc-btn:hover { transform: scale(1.08); color: #fff; }
.qc-phone {
  background: var(--rd-grad);
  box-shadow: var(--rd-btn-shadow);
}
.qc-line {
  background: linear-gradient(135deg, #05a847, #06c755 60%, #34d399);
  box-shadow: 0 6px 16px rgba(6, 199, 85, 0.28);
}

/* Admin stats (sidebar styles live in admin.css) */
.stat-card {
  border: 0;
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
}
.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.status-dot.available { background: #198754; }
.status-dot.rented { background: #0d6efd; }
.status-dot.reserved { background: #0dcaf0; }
.status-dot.maintenance { background: #ffc107; }

/* Auth */
.auth-card { overflow: hidden; }
.auth-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1rem 0 1.25rem;
  color: #94a3b8;
  font-size: 0.8rem;
}
.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e2e8f0;
}
.btn-google {
  background: #fff;
  border: 1px solid #dadce0;
  color: #3c4043;
  border-radius: 999px;
  font-weight: 600;
}
.btn-google:hover { background: #f8f9fa; color: #3c4043; }
.btn-google.disabled,
.btn-facebook.disabled {
  opacity: 0.45;
  pointer-events: none;
}
.btn-facebook {
  background: linear-gradient(135deg, #166fe5, #1877f2 50%, #3b8df5);
  border: 0;
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 6px 16px rgba(24, 119, 242, 0.28);
}
.btn-facebook:hover { filter: brightness(0.97); color: #fff; }

/* CMS content + page builder blocks */
.cms-content h2, .cms-content h3, .cms-content .pb-heading {
  font-size: 1.15rem;
  font-weight: 700;
  margin-top: 1.35rem;
  margin-bottom: 0.65rem;
  color: #0f172a;
}
.cms-content p, .cms-content .pb-text { color: #334155; line-height: 1.7; }
.cms-content ul, .cms-content ol, .cms-content .pb-list { padding-left: 1.2rem; color: #334155; line-height: 1.7; }
.cms-content li { margin-bottom: 0.4rem; }
.pb-media-text .pb-media-img { object-fit: cover; max-height: 380px; width: 100%; }
.pb-media-placeholder {
  min-height: 200px;
  background: #f1f5f9;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 2.5rem;
}
.pb-img { max-height: 420px; object-fit: cover; }
.about-builder .pb-canvas > *:first-child { margin-top: 0; }
.cms-content .doc-age,
.cms-docs .doc-age {
  background: var(--rd-soft);
  border-radius: 0.85rem;
  padding: 0.9rem 1rem;
  color: #9f1239;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.about-side-card {
  background: var(--rd-grad);
  border-radius: 1.15rem;
  padding: 1.35rem;
  box-shadow: var(--rd-btn-shadow);
}

/* ========== About page — LuvDrive-inspired layout ========== */
.about-luv {
  background: #fff;
}
.section-about-intro {
  padding: 2.5rem 0 1rem;
}
.about-hero-split {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 0;
  box-shadow: var(--rd-shadow-sm);
}
.about-hero-media {
  position: relative;
  min-height: 280px;
  background: #e2e8f0;
}
.about-hero-img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}
.about-hero-panel {
  background: var(--rd-grad);
  color: #fff;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-hero-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin: 0 0 1.15rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  letter-spacing: -0.02em;
}
.about-hero-body {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  font-size: 1.02rem;
  line-height: 1.75;
}
.about-hero-body p { margin: 0; opacity: 0.97; }

@media (min-width: 992px) {
  .about-hero-split {
    flex-direction: row;
    min-height: 450px;
  }
  .about-hero-media {
    width: 40%;
    min-height: 450px;
    flex-shrink: 0;
  }
  .about-hero-img { min-height: 450px; }
  .about-hero-panel {
    width: 60%;
    padding: 2.25rem 2.5rem;
  }
  .about-hero-body { font-size: 1.08rem; }
}

/* Vision / founders quote */
.about-vision {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2.75rem 0 1.5rem;
  text-align: center;
}
.about-vision-kicker {
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  font-weight: 700;
  margin: 0;
  color: #0f172a;
  line-height: 1.25;
}
.about-vision-founder {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin: 0.15rem 0 0;
  color: var(--rd-primary);
  line-height: 1.15;
  letter-spacing: -0.03em;
}
.about-vision-quote {
  font-size: clamp(1.15rem, 2.6vw, 1.85rem);
  font-weight: 600;
  color: #0f172a;
  line-height: 1.5;
  margin: 0;
  max-width: 40rem;
}
@media (min-width: 992px) {
  .about-vision {
    flex-direction: row;
    text-align: left;
    gap: 3rem;
    padding: 3.25rem 0 2rem;
  }
  .about-vision-label {
    width: 33%;
    flex-shrink: 0;
    text-align: center;
  }
  .about-vision-quote {
    width: 67%;
    text-align: center;
  }
}

/* Numbered branches */
.about-branches {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  padding: 1rem 0 3rem;
}
.about-branches-intro {
  font-size: 1.05rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.65;
  margin: 0;
}
.about-branches-intro p { margin: 0; }
.about-branches-list {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}
.about-branch-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.about-branch-num {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  background: var(--rd-grad);
  color: #fff;
  font-weight: 800;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--rd-btn-shadow);
  transition: transform 0.18s ease;
}
.about-branch-item:hover .about-branch-num {
  transform: scale(1.08);
}
.about-branch-text {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.45;
  padding-top: 0.45rem;
}
@media (min-width: 992px) {
  .about-branches {
    flex-direction: row;
    align-items: center;
    gap: 2.5rem;
    padding-bottom: 3.5rem;
  }
  .about-branches-intro {
    width: 33%;
    flex-shrink: 0;
    font-size: 1.1rem;
  }
  .about-branches-list {
    width: 67%;
    gap: 1.35rem;
  }
  .about-branch-num {
    width: 3.25rem;
    height: 3.25rem;
    font-size: 1.45rem;
  }
  .about-branch-item {
    align-items: center;
    gap: 1.25rem;
  }
  .about-branch-text {
    font-size: 1.1rem;
    padding-top: 0;
  }
}

/* Core values cards */
.about-values-section {
  padding: 1rem 0 3.5rem;
}
.about-section-title {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 1.35rem;
  letter-spacing: -0.02em;
}
.about-value-card {
  border-radius: 0;
  padding: 1.35rem 1.25rem;
  color: #fff;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  box-shadow: var(--rd-shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.about-value-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--rd-shadow);
}
.about-value-a {
  background: linear-gradient(145deg, #be123c 0%, #e11d48 100%);
}
.about-value-b {
  background: linear-gradient(145deg, #e11d48 0%, #fb7185 100%);
}
.about-value-icon {
  font-size: 2.35rem;
  line-height: 1;
  margin-bottom: 0.85rem;
  opacity: 0.95;
}
.about-value-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}
.about-value-desc {
  font-size: 0.95rem;
  line-height: 1.55;
  opacity: 0.95;
}

/* Services */
.about-services-section {
  padding: 1rem 0 3.5rem;
  background: #fafbfc;
}
.about-services-head {
  margin-bottom: 2rem;
}
.about-services-tagline {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f172a;
}
.about-services-sub {
  font-size: 1.05rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}
.about-services-forms {
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 700;
  margin: 0 0 2rem;
  color: #0f172a;
}
.about-service-card {
  text-align: center;
  padding: 0.5rem 1rem;
  max-width: 400px;
  margin: 0 auto;
}
.about-service-icon {
  width: 5.5rem;
  height: 5.5rem;
  margin: 0 auto 1.25rem;
  border-radius: 999px;
  background: var(--rd-soft);
  color: var(--rd-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.15rem;
  box-shadow: inset 0 0 0 1px rgba(225, 29, 72, 0.08);
}
.about-service-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.65rem;
  color: #0f172a;
}
.about-service-desc {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.65;
}

/* Join / careers */
.about-join-section {
  padding: 0 0 3.5rem;
  background: #fafbfc;
}
.about-join-inner {
  max-width: 48rem;
}
.about-join-text {
  font-size: 1.05rem;
  color: #334155;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.about-join-email {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}
.about-join-email a {
  color: var(--rd-primary);
  font-weight: 600;
  text-decoration: none;
}
.about-join-email a:hover { text-decoration: underline; }
.about-join-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.about-join-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.15rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  text-decoration: none;
  color: #0f172a;
  min-width: 11rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
.about-join-chip:hover {
  border-color: rgba(225, 29, 72, 0.35);
  box-shadow: var(--rd-shadow-sm);
  transform: translateY(-1px);
  color: #0f172a;
}
.about-join-chip i {
  font-size: 1.35rem;
  color: var(--rd-primary);
}
.about-join-chip span {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.about-join-chip strong {
  font-size: 0.9rem;
}
.about-join-chip small {
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 500;
}
.about-join-chip-primary {
  background: var(--rd-grad);
  border-color: transparent;
  color: #fff;
  box-shadow: var(--rd-btn-shadow);
}
.about-join-chip-primary i,
.about-join-chip-primary small {
  color: rgba(255, 255, 255, 0.9);
}
.about-join-chip-primary:hover {
  color: #fff;
  border-color: transparent;
  filter: brightness(1.03);
}

@media (max-width: 575.98px) {
  .section-about-intro { padding-top: 1.25rem; }
  .about-hero-panel { padding: 1.35rem 1.15rem; }
  .about-value-card { min-height: 170px; padding: 1.15rem; }
  .about-service-icon { width: 4.5rem; height: 4.5rem; font-size: 1.85rem; }
  .about-join-chip { min-width: 100%; }
}

/* Doc category tabs */
.doc-tabs .nav-link {
  border-radius: 1rem !important;
  min-width: 120px;
  text-align: center;
  color: #475569;
  background: #fff;
  border: 1px solid #e2e8f0;
  padding: 0.85rem 1rem;
  font-weight: 600;
  font-size: 0.85rem;
}
.doc-tabs .nav-link.active {
  background: var(--rd-grad);
  color: #fff !important;
  border-color: transparent;
  box-shadow: var(--rd-btn-shadow);
}

/* Icon-first car cards — larger chips, clear fuel (2–3 per row) */
.car-grid-rows .car-card-icon { border-radius: 1.15rem; overflow: hidden; }
.car-card-icon .car-img-wrap {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #f1f5f9, #e2e8f0);
}
.car-card-icon .car-img {
  height: 200px;
  width: 100%;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
.car-card-icon .car-img-placeholder {
  font-size: 4rem;
  color: #94a3b8;
}
.car-icon-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 0.4rem;
}
.car-icon-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #f8fafc;
  border: 1px solid #eef2f7;
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
  font-size: 0.82rem;
  color: #475569;
}
.car-icon-chip.car-icon-lg {
  padding: 0.55rem 0.9rem;
  font-size: 0.9rem;
  min-height: 2.5rem;
}
.car-icon-chip i {
  color: var(--rd-primary);
  font-size: 1.25rem;
  line-height: 1;
}
.car-icon-chip.car-icon-lg i { font-size: 1.55rem; }
.car-icon-chip b { font-weight: 700; color: #0f172a; font-size: 0.95rem; }
.car-icon-chip .chip-label {
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 700;
  color: #475569;
  max-width: 5.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* Fuel type badge on image — highly visible */
.fuel-badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 800;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.14);
  z-index: 2;
  border: 1.5px solid transparent;
  letter-spacing: 0.01em;
}
.fuel-badge i { font-size: 1.35rem; line-height: 1; }
.fuel-gas, .car-icon-chip.fuel-gas { color: #b45309; }
.fuel-gas i, .car-icon-chip.fuel-gas i { color: #d97706; }
.fuel-diesel, .car-icon-chip.fuel-diesel { color: #334155; }
.fuel-diesel i, .car-icon-chip.fuel-diesel i { color: #475569; }
.fuel-hybrid, .car-icon-chip.fuel-hybrid { color: #15803d; }
.fuel-hybrid i, .car-icon-chip.fuel-hybrid i { color: #16a34a; }
.fuel-ev, .car-icon-chip.fuel-ev { color: #1d4ed8; }
.fuel-ev i, .car-icon-chip.fuel-ev i { color: #2563eb; }
.fuel-badge.fuel-ev { background: #eff6ff; border-color: #bfdbfe; color: #1d4ed8; }
.fuel-badge.fuel-hybrid { background: #f0fdf4; border-color: #bbf7d0; color: #15803d; }
.fuel-badge.fuel-gas { background: #fffbeb; border-color: #fde68a; color: #b45309; }
.fuel-badge.fuel-diesel { background: #f8fafc; border-color: #cbd5e1; color: #334155; }
.car-icon-chip.fuel-ev { background: #eff6ff; border-color: #bfdbfe; }
.car-icon-chip.fuel-hybrid { background: #f0fdf4; border-color: #bbf7d0; }
.car-icon-chip.fuel-gas { background: #fffbeb; border-color: #fde68a; }
.car-icon-chip.fuel-diesel { background: #f1f5f9; border-color: #cbd5e1; }

/* Damage insurance deposit — standout strip */
.deposit-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, color-mix(in srgb, var(--rd-primary) 12%, #fff), #fff);
  border: 1.5px solid color-mix(in srgb, var(--rd-primary) 28%, #e2e8f0);
  border-radius: 0.85rem;
  padding: 0.6rem 0.85rem;
  font-size: 0.8rem;
  color: #334155;
  font-weight: 600;
}
.deposit-chip i { color: var(--rd-primary); font-size: 1.35rem; flex-shrink: 0; }
.deposit-chip .deposit-label {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  min-width: 0;
}
.deposit-chip .deposit-label span { font-size: 0.72rem; font-weight: 600; color: #64748b; }
.deposit-chip .deposit-label b { font-size: 0.82rem; color: #0f172a; font-weight: 700; }
.deposit-chip strong {
  margin-left: auto;
  color: var(--rd-primary);
  font-size: 1rem;
  font-weight: 800;
  white-space: nowrap;
}

.empty-search-state {
  background: #fff;
  border: 1px dashed #e2e8f0;
}

/* Booking summary (LuvDrive booking-summary style) */
.booking-summary-page {
  background: linear-gradient(180deg, #f8fafc 0%, #fff 40%);
  min-height: 60vh;
}
.booking-summary-card {
  background: #fff;
  border-radius: 1.35rem;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  border: 1px solid #eef2f7;
}
.bs-car-media {
  position: relative;
  height: 220px;
  background: #f1f5f9;
}
.bs-car-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bs-car-placeholder {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: #94a3b8;
}
.bs-trip-line {
  background: #f8fafc;
  border-radius: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid #eef2f7;
}
.bs-trip-line .trip-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 0.35rem;
  flex-shrink: 0;
}
.bs-trip-line .trip-dot.pickup { background: var(--rd-primary); box-shadow: 0 0 0 3px color-mix(in srgb, var(--rd-primary) 25%, transparent); }
.bs-trip-line .trip-dot.return { background: #94a3b8; }
.bs-trip-connector {
  width: 2px;
  height: 1.1rem;
  background: #e2e8f0;
  margin-left: 4px;
  margin-block: 0.15rem;
}
.deposit-highlight {
  background: linear-gradient(135deg, color-mix(in srgb, var(--rd-primary) 14%, #fff), #fff 70%);
  border: 2px solid color-mix(in srgb, var(--rd-primary) 35%, #e2e8f0);
  border-radius: 1rem;
  padding: 1rem 1.1rem;
}
.deposit-highlight .deposit-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.15rem;
}
.deposit-ico {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--rd-grad);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: var(--rd-btn-shadow);
  flex-shrink: 0;
}
.bs-quote {
  background: #f8fafc;
  border-radius: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid #eef2f7;
}
.bs-quote .quote-head {
  font-size: 0.78rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.65rem;
}
.bs-total-row {
  background: color-mix(in srgb, var(--rd-primary) 8%, #fff);
  border-radius: 0.75rem;
  padding: 0.65rem 0.75rem;
  margin-top: 0.35rem;
}
.page-cover-sm { min-height: 200px; padding: 2rem 0 1.5rem; }

/* Account booking list / detail */
.booking-list-table tbody tr.booking-row { cursor: pointer; }
.booking-list-table tbody tr.booking-row:hover { background: #f8fafc; }
.booking-detail-box {
  background: #f8fafc;
  border: 1px solid #eef2f7;
  border-radius: 0.85rem;
  padding: 0.85rem 1rem;
  height: 100%;
}

/* Payment / QR page */
.payment-amount-lock {
  background: linear-gradient(135deg, color-mix(in srgb, var(--rd-primary) 12%, #fff), #fff);
  border: 2px solid color-mix(in srgb, var(--rd-primary) 30%, #e2e8f0);
  border-radius: 1.25rem;
  padding: 1.25rem 1.5rem;
}
.payment-qr-wrap {
  display: inline-block;
  background: #fff;
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
  padding: 0.65rem;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
}
.payment-qr-canvas {
  display: block;
  width: 280px !important;
  height: 280px !important;
  max-width: 100%;
}
.payment-qr-img {
  max-width: 280px;
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
  background: #fff;
  padding: 0.5rem;
}
.payment-qr-placeholder {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  border-radius: 0.75rem;
  color: #94a3b8;
  font-size: 3rem;
}
.payment-slip-thumb {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 0.5rem;
  border: 1px solid #e2e8f0;
}

/* ========== Mobile polish ========== */
@media (max-width: 991.98px) {
  .locations-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 991.98px) {
  .hero-luv {
    min-height: auto;
    padding: 2rem 0 1.5rem;
    align-items: stretch;
  }
  .hero-luv-inner {
    padding-bottom: 0.25rem;
  }
  .search-card-luv {
    margin-bottom: 0.25rem;
  }
  .section-luv { padding: 2.5rem 0; }
  .navbar-luv .navbar-collapse {
    padding-top: 0.75rem;
    border-top: 1px solid #f1f5f9;
    margin-top: 0.65rem;
  }
  .nav-actions {
    width: 100%;
    padding-top: 0.5rem;
    justify-content: space-between;
  }
  .nav-actions .btn-auth { margin-left: auto; }
  .trust-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .page-cover { min-height: 200px; padding: 2rem 0 1.5rem; }
  .quick-contact { right: 12px; bottom: 12px; }
  .qc-btn { width: 50px; height: 50px; }
}

@media (max-width: 575.98px) {
  .locations-grid { grid-template-columns: repeat(2, 1fr); gap: 0.65rem; }
  .area-card { min-height: 108px; padding: 1rem 0.4rem; }
  .area-icon { width: 40px; height: 40px; font-size: 1.1rem; }
  .hero-title { font-size: 1.65rem; }
  .hero-lead { font-size: 0.95rem; }
  .search-card-luv { padding: 1.1rem; }
  .doc-teaser { padding: 1.35rem; }
  .car-card .car-img { height: 160px; }
}
