/* ============================================================
   TIGA TRADING — Global Stylesheet
   Dark premium theme: #0d1117 / navy / #f47c20 accent
   ============================================================ */

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --primary:       #f47c20;
  --primary-dark:  #c85f13;
  --primary-light: #ff9a3d;
  --dark:          #0d1117;
  --dark2:         #13171e;
  --card-bg:       #161b22;
  --card-border:   #21262d;
  --navy:          #0d1b2a;
  --text:          #e6edf3;
  --text-muted:    #8b949e;
  --text-light:    #c9d1d9;
  --font:          'Manrope', 'Segoe UI', system-ui, sans-serif;
  --radius:        12px;
  --radius-sm:     8px;
  --shadow:        0 4px 24px rgba(0,0,0,.4);
  --shadow-lg:     0 16px 48px rgba(0,0,0,.6);
  --transition:    all .25s cubic-bezier(.4,0,.2,1);
}

/* ── Reset / Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--dark2);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-light); }
img { max-width: 100%; height: auto; }
.fw-700 { font-weight: 700 !important; }
.fw-800 { font-weight: 800 !important; }
.fw-900 { font-weight: 900 !important; }

/* ── Bootstrap overrides ──────────────────────────────────── */
.btn-primary {
  background: var(--primary); border-color: var(--primary);
  font-weight: 600;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--primary-dark); border-color: var(--primary-dark);
  transform: translateY(-1px); box-shadow: 0 4px 16px rgba(244,124,32,.4);
}
.btn-outline-primary {
  border-color: var(--primary); color: var(--primary);
}
.btn-outline-primary:hover {
  background: var(--primary); border-color: var(--primary); color: #fff;
}
.badge { font-weight: 600; }
.breadcrumb { margin: 0; }
.breadcrumb-item a { color: var(--text-muted); }
.breadcrumb-item.active { color: var(--text-light); }
.breadcrumb-item + .breadcrumb-item::before { color: var(--text-muted); }
.pagination .page-link {
  background: var(--card-bg); border-color: var(--card-border);
  color: var(--text-muted); border-radius: 8px !important;
}
.pagination .page-link:hover { background: var(--card-border); color: var(--text); }
.pagination .page-item.active .page-link { background: var(--primary); border-color: var(--primary); color: #fff; }
.form-control, .form-select {
  background: var(--dark); border-color: var(--card-border);
  color: var(--text); border-radius: var(--radius-sm);
}
.form-control:focus, .form-select:focus {
  background: var(--dark); border-color: var(--primary);
  color: var(--text); box-shadow: 0 0 0 3px rgba(244,124,32,.2);
}
.form-control::placeholder { color: var(--text-muted); }
.form-select option { background: var(--dark); color: var(--text); }
.alert { border-radius: var(--radius-sm); }

/* ── Navbar ────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(13,17,23,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--card-border);
  transition: var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); }
.navbar { padding: .75rem 0; }
.navbar-brand { padding: 0; }
.brand-text {
  font-size: 1.4rem; font-weight: 900; color: #fff;
  letter-spacing: -0.5px;
}
.brand-accent { color: var(--primary); }
.brand-logo { height: 40px; width: auto; }
.navbar-nav .nav-link {
  color: var(--text-muted) !important; font-weight: 500;
  padding: .5rem .875rem !important; border-radius: var(--radius-sm);
  font-size: .9rem; transition: var(--transition);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--text) !important; background: rgba(255,255,255,.06); }
.btn-phone {
  display: flex; align-items: center; gap: .5rem;
  color: var(--text-muted); font-size: .875rem; font-weight: 500;
  transition: var(--transition); padding: .375rem .75rem;
  border-radius: var(--radius-sm);
}
.btn-phone:hover { color: var(--primary); background: rgba(244,124,32,.08); }
.navbar-toggler { border: none; padding: .25rem .5rem; }
.toggler-icon {
  width: 22px; height: 18px; display: flex; flex-direction: column;
  justify-content: space-between; cursor: pointer;
}
.toggler-icon span {
  display: block; height: 2px; background: var(--text);
  border-radius: 2px; transition: var(--transition);
}
.navbar-collapse { gap: 1rem; }

/* ── Page Hero ─────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--dark) 100%);
  padding: 3rem 0 2rem;
  border-bottom: 1px solid var(--card-border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(244,124,32,.12) 0%, transparent 60%);
}
.page-hero-sm { padding: 2rem 0 1.5rem; }
.page-hero-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800; color: #fff; margin-bottom: .5rem;
}

/* ── Sections ──────────────────────────────────────────────── */
.section-pad { padding: 5rem 0; }
.bg-alt { background: var(--dark); }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-badge {
  display: inline-block;
  background: rgba(244,124,32,.15);
  color: var(--primary);
  border: 1px solid rgba(244,124,32,.3);
  padding: .25rem .875rem;
  border-radius: 50px;
  font-size: .75rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: .75rem;
}
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800; color: var(--text);
  line-height: 1.2;
}
.section-sub { color: var(--text-muted); font-size: 1.05rem; max-width: 560px; margin: .75rem auto 0; }

/* ── Hero Section ──────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, #0d1117 40%, #1a0a09 100%);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(244,124,32,.18) 0%, transparent 55%),
              radial-gradient(ellipse at 80% 20%, rgba(13,27,42,.8) 0%, transparent 50%);
}
.hero-content { position: relative; z-index: 2; }
.min-vh-90 { min-height: 90vh; }
.hero-badge {
  display: inline-flex; align-items: center;
  background: rgba(244,124,32,.12); border: 1px solid rgba(244,124,32,.3);
  color: var(--primary); padding: .35rem 1rem;
  border-radius: 50px; font-size: .8rem; font-weight: 700;
  letter-spacing: .5px;
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900; line-height: 1.1;
  color: #fff; margin-bottom: 1.25rem;
}
.hero-accent { color: var(--primary); }
.hero-subtitle {
  font-size: 1.125rem; color: var(--text-muted);
  max-width: 500px; margin-bottom: 2rem; font-weight: 400;
}
.hero-stats { margin-bottom: 2rem; }
.hero-stat { text-align: center; }
.stat-num {
  display: block; font-size: 1.75rem; font-weight: 800;
  color: var(--primary); line-height: 1;
}
.stat-label { font-size: .75rem; color: var(--text-muted); font-weight: 500; }
.hero-stat-divider { width: 1px; background: var(--card-border); margin: 0 .5rem; }

.btn-hero-primary {
  background: var(--primary); color: #fff; border: none;
  padding: .875rem 2rem; border-radius: 50px;
  font-weight: 700; font-size: 1rem;
  transition: var(--transition);
  box-shadow: 0 8px 32px rgba(244,124,32,.4);
}
.btn-hero-primary:hover {
  background: var(--primary-dark); color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(244,124,32,.5);
}
.btn-hero-whatsapp {
  background: rgba(37,211,102,.12); color: #25D366;
  border: 1px solid rgba(37,211,102,.3); padding: .875rem 2rem;
  border-radius: 50px; font-weight: 700; font-size: 1rem;
  transition: var(--transition);
}
.btn-hero-whatsapp:hover {
  background: #25D366; color: #fff; border-color: #25D366;
  transform: translateY(-2px);
}

/* Hero filter card */
.hero-filter-card {
  background: rgba(22,27,34,.95);
  border: 1px solid var(--card-border);
  border-radius: 20px; padding: 2rem;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg);
}
.hero-select, .hero-input {
  background: var(--dark) !important; border-color: var(--card-border) !important;
  color: var(--text) !important; border-radius: var(--radius-sm) !important;
  font-size: .9rem;
}
.hero-select:focus, .hero-input:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px rgba(244,124,32,.2) !important;
}

.hero-scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%); z-index: 2;
  animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-mouse {
  width: 24px; height: 36px; border: 2px solid rgba(255,255,255,.3);
  border-radius: 12px; display: flex; justify-content: center;
  padding-top: 6px;
}
.scroll-wheel {
  width: 4px; height: 8px; background: var(--primary);
  border-radius: 2px; animation: scrollWheel 2s ease-in-out infinite;
}
@keyframes scrollBounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }
@keyframes scrollWheel  { 0%,100%{opacity:1;transform:translateY(0)} 50%{opacity:.3;transform:translateY(8px)} }

/* ── Brands Strip ──────────────────────────────────────────── */
/* brands-strip kept for potential re-use but hidden */
.brands-strip { display: none; }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── Car Card ──────────────────────────────────────────────── */
.car-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}
.car-card:hover {
  border-color: rgba(244,124,32,.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.car-card.car-sold { opacity: .75; }
.car-card-img-wrap {
  position: relative; overflow: hidden;
  aspect-ratio: 16/10;
}
.car-card-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.car-card:hover .car-card-img { transform: scale(1.04); }
.car-badges {
  position: absolute; top: .625rem; left: .625rem;
  display: flex; flex-direction: column; gap: .25rem;
}
.car-badge {
  display: inline-block; padding: .2rem .5rem;
  border-radius: 4px; font-size: .65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px;
}
.badge-sold    { background: var(--primary); color: #fff; }
.badge-new     { background: #27ae60; color: #fff; }
.badge-premium { background: linear-gradient(135deg,#f39c12,#e67e22); color: #fff; }
.car-photo-count {
  position: absolute; bottom: .625rem; right: .625rem;
  background: rgba(0,0,0,.7); color: #fff;
  font-size: .7rem; padding: .2rem .5rem; border-radius: 4px;
  font-weight: 600;
}
.car-card-body { padding: 1.125rem; }
.car-brand-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: .25rem; }
.car-brand { font-size: .75rem; color: var(--primary); font-weight: 700; text-transform: uppercase; letter-spacing: .5px; }
.car-year  { font-size: .75rem; color: var(--text-muted); font-weight: 500; }
.car-model { font-size: 1.05rem; font-weight: 700; margin-bottom: .75rem; }
.car-model a { color: var(--text); }
.car-model a:hover { color: var(--primary); }
.car-specs {
  display: flex; flex-wrap: wrap; gap: .375rem .875rem;
  margin-bottom: 1rem;
}
.car-spec {
  display: flex; align-items: center; gap: .3rem;
  font-size: .78rem; color: var(--text-muted);
}
.car-spec i { color: var(--primary); }
.car-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: .75rem; border-top: 1px solid var(--card-border);
}
.price-value { font-size: 1.1rem; font-weight: 800; color: var(--primary); }
.price-sold-text { font-size: .85rem; color: #ff9a3d; font-weight: 700; }
.btn-incele {
  font-size: .8rem; font-weight: 600; color: var(--text-muted);
  background: var(--dark); border: 1px solid var(--card-border);
  padding: .35rem .875rem; border-radius: var(--radius-sm);
  transition: var(--transition);
}
.btn-incele:hover { color: var(--primary); border-color: var(--primary); background: rgba(244,124,32,.08); }

/* ── CTA Banner ────────────────────────────────────────────── */
.cta-banner { padding: 3rem 0; background: var(--dark); }
.cta-card {
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
  display: flex; align-items: center; gap: 1.75rem;
  border: 1px solid var(--card-border);
  transition: var(--transition);
}
.cta-card:hover { border-color: rgba(244,124,32,.3); transform: translateY(-2px); }
.cta-buy  { background: linear-gradient(135deg, rgba(244,124,32,.12), var(--card-bg)); }
.cta-sell { background: linear-gradient(135deg, rgba(52,152,219,.1), var(--card-bg)); }
.cta-icon { font-size: 2.5rem; line-height: 1; flex-shrink: 0; color: var(--primary); }
.cta-card h4 { font-weight: 800; margin-bottom: .375rem; }
.cta-card p  { color: var(--text-muted); margin-bottom: .875rem; font-size: .9rem; }

/* ── Why Us ────────────────────────────────────────────────── */
.why-section { background: var(--dark2); }
.why-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 1.75rem;
  transition: var(--transition); height: 100%;
}
.why-card:hover {
  border-color: rgba(244,124,32,.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
}
.why-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: rgba(244,124,32,.12); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1rem;
}
.why-card h5 { font-weight: 700; margin-bottom: .5rem; }
.why-card p  { color: var(--text-muted); font-size: .875rem; margin: 0; }

/* ── Premium Section ───────────────────────────────────────── */
.premium-section { background: var(--dark2); }
.premium-badge { background: linear-gradient(135deg,rgba(243,156,18,.15),rgba(230,126,34,.1)); color: #f39c12; border-color: rgba(243,156,18,.3); }
.premium-card {
  border-radius: var(--radius); overflow: hidden;
  background: var(--card-bg); border: 1px solid var(--card-border);
  transition: var(--transition); height: 100%;
}
.premium-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(243,156,18,.3); }
.premium-img-wrap { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.premium-img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.premium-card:hover .premium-img { transform: scale(1.05); }
.premium-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 50%); }
.premium-badge-tag {
  position: absolute; top: .75rem; right: .75rem;
  background: linear-gradient(135deg,#f39c12,#e67e22); color: #fff;
  font-size: .65rem; font-weight: 800; padding: .2rem .6rem; border-radius: 4px;
  letter-spacing: .5px;
}
.premium-info { padding: 1.25rem; }
.premium-brand { font-size: .7rem; color: var(--primary); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.premium-title { font-size: 1.25rem; font-weight: 800; margin-bottom: .375rem; }
.premium-price { font-size: 1.2rem; font-weight: 800; color: #f39c12; margin-bottom: .75rem; }

/* ── About Snippet ─────────────────────────────────────────── */
.about-snippet { background: var(--dark); }
.about-img-wrap { position: relative; }
.about-img-card {
  background: linear-gradient(135deg, var(--card-bg), var(--navy));
  border: 1px solid var(--card-border);
  border-radius: 20px; aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); opacity: .6;
}
.about-exp-badge {
  position: absolute; bottom: -1rem; right: -1rem;
  background: var(--primary); color: #fff;
  border-radius: 16px; padding: 1rem 1.25rem;
  text-align: center; box-shadow: 0 8px 24px rgba(244,124,32,.5);
}
.exp-num { display: block; font-size: 2rem; font-weight: 900; line-height: 1; }
.exp-label { font-size: .7rem; font-weight: 600; opacity: .85; }
.about-stat { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius-sm); padding: 1rem; text-align: center; }
.about-num { display: block; font-size: 1.75rem; font-weight: 800; color: var(--primary); }

/* ── Hours & Contact ───────────────────────────────────────── */
.hours-card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 2rem;
}
.hours-card h4 { font-weight: 700; margin-bottom: 1rem; }
.hours-text { color: var(--text-muted); white-space: pre-line; }
.contact-info-card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 2rem;
}
.contact-row {
  display: flex; align-items: flex-start; gap: .75rem;
  margin-bottom: 1rem; color: var(--text-light);
}
.contact-row i { color: var(--primary); margin-top: 2px; flex-shrink: 0; }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ── Testimonials ──────────────────────────────────────────── */
.testimonials-section { background: var(--dark2); }
.testimonial-card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 1.75rem; height: 100%;
  transition: var(--transition);
}
.testimonial-card:hover { border-color: rgba(244,124,32,.3); transform: translateY(-2px); }
.testimonial-stars { color: #f39c12; margin-bottom: .875rem; font-size: .875rem; }
.testimonial-text { color: var(--text-light); font-style: italic; margin-bottom: 1rem; font-size: .9rem; line-height: 1.7; }
.testimonial-author {
  display: flex; align-items: center; gap: .625rem;
  color: var(--text-muted); font-size: .85rem; font-weight: 600;
}
.author-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .8rem; flex-shrink: 0;
}

/* ── WA CTA Section ────────────────────────────────────────── */
.wa-cta-section { padding: 2rem 0; background: var(--dark); }
.wa-cta-card {
  background: linear-gradient(135deg, rgba(37,211,102,.08), var(--card-bg));
  border: 1px solid rgba(37,211,102,.2);
  border-radius: var(--radius); padding: 2rem 2.5rem;
  display: flex; align-items: center; gap: 1.75rem;
  flex-wrap: wrap;
}
.wa-cta-icon { font-size: 2.5rem; color: #25D366; flex-shrink: 0; }
.wa-cta-card h3 { margin-bottom: .375rem; font-weight: 800; }
.wa-cta-card p  { color: var(--text-muted); margin: 0; font-size: .9rem; }
.wa-cta-card .btn-whatsapp { margin-left: auto; }
.btn-whatsapp {
  background: #25D366; color: #fff; border: none;
  padding: .75rem 1.75rem; border-radius: 50px;
  font-weight: 700; white-space: nowrap;
  transition: var(--transition);
}
.btn-whatsapp:hover { background: #20ba5a; color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,.4); }

/* ── WhatsApp FAB ──────────────────────────────────────────── */
.whatsapp-fab {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.625rem; box-shadow: 0 6px 24px rgba(37,211,102,.5);
  transition: var(--transition);
}
.whatsapp-fab:hover { color: #fff; transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,.6); }
.whatsapp-pulse {
  position: absolute; width: 100%; height: 100%; border-radius: 50%;
  background: rgba(37,211,102,.3); animation: pulse 2.5s ease-out infinite;
}
@keyframes pulse { 0%{transform:scale(1);opacity:.7} 100%{transform:scale(2.2);opacity:0} }

/* ── Inventory Page ─────────────────────────────────────────── */
.filter-sidebar {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 1.5rem;
  position: sticky; top: 80px;
}
.filter-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.25rem; padding-bottom: .875rem;
  border-bottom: 1px solid var(--card-border);
}
.filter-header h5 { margin: 0; font-weight: 700; }
.filter-group { margin-bottom: 1rem; }
.filter-label {
  display: block; font-size: .8rem; font-weight: 600;
  color: var(--text-muted); margin-bottom: .375rem;
  text-transform: uppercase; letter-spacing: .5px;
}
.filter-input {
  font-size: .875rem !important;
  background: var(--dark) !important; border-color: var(--card-border) !important;
  color: var(--text) !important;
}
.filter-close { background: none; border: none; color: var(--text-muted); font-size: 1.1rem; cursor: pointer; padding: .25rem; }
.inventory-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.25rem; flex-wrap: wrap; gap: .75rem;
}
.result-count { color: var(--text-muted); font-size: .875rem; }
.result-count strong { color: var(--text); }
.sort-select {
  background: var(--card-bg) !important; border-color: var(--card-border) !important;
  color: var(--text) !important; font-size: .875rem !important;
}

/* Mobile filter */
@media (max-width: 991px) {
  .filter-sidebar {
    position: fixed; top: 0; left: 0; z-index: 1050;
    height: 100vh; width: 300px; overflow-y: auto;
    transform: translateX(-100%); transition: transform .3s ease;
    border-radius: 0;
  }
  .filter-sidebar.open { transform: translateX(0); }
  .filter-overlay {
    display: none; position: fixed; inset: 0; z-index: 1049;
    background: rgba(0,0,0,.5);
  }
  .filter-overlay.show { display: block; }
}

/* ── Car Detail ────────────────────────────────────────────── */
.gallery-main-img-wrap {
  position: relative; aspect-ratio: 16/10; overflow: hidden;
  background: var(--dark); border-radius: var(--radius);
  cursor: zoom-in;
}
.gallery-main-img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery-main-img-wrap:hover .gallery-main-img { transform: scale(1.02); }
.gallery-no-img {
  aspect-ratio: 16/10; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius); color: var(--text-muted); font-size: 3rem;
}
.gallery-sold-badge {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.65); color: #fff; font-size: 2rem; font-weight: 900;
  letter-spacing: 4px; pointer-events: none;
}
.gallery-premium-badge {
  position: absolute; top: .75rem; right: .75rem;
  background: linear-gradient(135deg,#f39c12,#e67e22); color: #fff;
  font-size: .7rem; font-weight: 800; padding: .3rem .75rem;
  border-radius: 6px; letter-spacing: .5px;
}
.gallery-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,.6); color: #fff; border: none;
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1rem; transition: var(--transition); z-index: 2;
}
.gallery-nav:hover { background: var(--primary); }
.gallery-prev { left: .75rem; }
.gallery-next { right: .75rem; }
.gallery-counter {
  position: absolute; bottom: .75rem; right: .75rem;
  background: rgba(0,0,0,.65); color: #fff; font-size: .75rem;
  padding: .25rem .625rem; border-radius: 4px; font-weight: 600;
}
.gallery-fullscreen {
  position: absolute; bottom: .75rem; left: .75rem;
  background: rgba(0,0,0,.65); color: #fff; border: none;
  width: 34px; height: 34px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition);
}
.gallery-fullscreen:hover { background: var(--primary); }
.gallery-thumbs {
  display: flex; gap: .5rem; margin-top: .75rem;
  overflow-x: auto; padding-bottom: .25rem;
  scrollbar-width: thin; scrollbar-color: var(--card-border) transparent;
}
.gallery-thumb {
  flex-shrink: 0; width: 72px; height: 54px; border-radius: var(--radius-sm);
  overflow: hidden; cursor: pointer; border: 2px solid transparent;
  transition: var(--transition);
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb.active, .gallery-thumb:hover { border-color: var(--primary); }

.detail-panel { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 1.75rem; }
.detail-brand { font-size: .75rem; color: var(--primary); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: .25rem; }
.detail-title { font-size: 1.5rem; font-weight: 800; margin-bottom: .5rem; }
.detail-price { font-size: 1.75rem; font-weight: 900; color: var(--primary); margin-bottom: 1.5rem; }
.price-sold { font-size: 1.25rem; color: #ff9a3d; }
.detail-specs-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: .75rem; margin-bottom: 1.5rem;
  padding: 1rem; background: var(--dark); border-radius: var(--radius-sm);
}
.detail-spec {
  display: flex; align-items: center; gap: .5rem;
  font-size: .875rem;
}
.detail-spec i { color: var(--primary); width: 16px; }
.spec-label { color: var(--text-muted); font-size: .75rem; display: block; }
.detail-spec strong { font-weight: 700; color: var(--text); font-size: .875rem; }
.color-dot { display: inline-block; width: 16px; height: 16px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); flex-shrink: 0; }

.detail-cta-buttons { display: grid; gap: .75rem; margin-bottom: 1rem; }
.btn-detail-wa {
  display: flex; align-items: center; justify-content: center;
  padding: .875rem; border-radius: var(--radius-sm); font-weight: 700;
  font-size: 1rem; transition: var(--transition); gap: .5rem;
  border: none; width: 100%;
}
.btn-wa-info  { background: #25D366; color: #fff; }
.btn-wa-info:hover  { background: #20ba5a; color: #fff; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,211,102,.4); }
.btn-wa-rent  { background: var(--card-bg); border: 1px solid #25D366 !important; color: #25D366; }
.btn-wa-rent:hover  { background: rgba(37,211,102,.08); color: #25D366; transform: translateY(-1px); }

.detail-share { display: flex; align-items: center; gap: .625rem; flex-wrap: wrap; }
.share-label { color: var(--text-muted); font-size: .8rem; }
.share-btn {
  width: 32px; height: 32px; border-radius: var(--radius-sm);
  background: var(--dark); border: 1px solid var(--card-border);
  color: var(--text-muted); display: flex; align-items: center; justify-content: center;
  font-size: .875rem; cursor: pointer; transition: var(--transition);
}
.share-btn:hover { border-color: var(--primary); color: var(--primary); }

.detail-section { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 1.75rem; }
.detail-section-title { font-size: 1.125rem; font-weight: 700; margin-bottom: 1rem; padding-bottom: .75rem; border-bottom: 1px solid var(--card-border); }
.detail-description { color: var(--text-light); line-height: 1.8; white-space: pre-line; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px,1fr)); gap: .5rem; }
.feature-item { display: flex; align-items: center; font-size: .875rem; color: var(--text-light); }
.feature-item i { color: var(--primary); flex-shrink: 0; }
.detail-spec-table { width: 100%; border-collapse: collapse; }
.detail-spec-table tr:not(:last-child) td { border-bottom: 1px solid var(--card-border); }
.detail-spec-table td { padding: .625rem .25rem; font-size: .875rem; }
.detail-spec-table td:first-child { color: var(--text-muted); width: 45%; }
.detail-spec-table td:last-child { font-weight: 600; color: var(--text); }

/* Badge variants for detail */
.badge-sold-lg    { background: var(--primary); color: #fff; padding: .35rem .875rem; border-radius: 6px; font-size: .8rem; font-weight: 700; }
.badge-new-lg     { background: #27ae60; color: #fff; padding: .35rem .875rem; border-radius: 6px; font-size: .8rem; font-weight: 700; }
.badge-premium-lg { background: linear-gradient(135deg,#f39c12,#e67e22); color: #fff; padding: .35rem .875rem; border-radius: 6px; font-size: .8rem; font-weight: 700; }

/* Lightbox */
.lightbox-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.95); display: flex;
  align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.lightbox-overlay.show { opacity: 1; pointer-events: all; }
.lightbox-inner { position: relative; max-width: 90vw; max-height: 90vh; }
.lightbox-img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: var(--radius-sm); }
.lightbox-close {
  position: fixed; top: 1.25rem; right: 1.25rem;
  background: rgba(255,255,255,.15); border: none; color: #fff;
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1.1rem; transition: var(--transition); z-index: 2;
}
.lightbox-close:hover { background: var(--primary); }
.lightbox-nav {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.12); border: none; color: #fff;
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1.25rem; transition: var(--transition);
}
.lightbox-nav:hover { background: var(--primary); }
.lightbox-prev { left: 1.25rem; }
.lightbox-next { right: 1.25rem; }
.lightbox-counter {
  position: fixed; bottom: 1.25rem; left: 50%; transform: translateX(-50%);
  background: rgba(255,255,255,.15); color: #fff;
  padding: .35rem 1rem; border-radius: 50px; font-size: .8rem; font-weight: 600;
}

/* ── Contact Page ──────────────────────────────────────────── */
.contact-info-list { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info-item {
  display: flex; align-items: flex-start; gap: 1rem;
}
.contact-info-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(244,124,32,.12); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-info-label { font-size: .75rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; margin-bottom: .125rem; }
.contact-form-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 2rem; }
.contact-form .form-control { border-color: var(--card-border); }
.contact-success {
  background: var(--card-bg); border: 1px solid rgba(39,174,96,.3);
  border-radius: var(--radius); padding: 3rem 2rem; text-align: center;
}

/* ── About Page ────────────────────────────────────────────── */
.about-stat-card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius-sm); padding: 1.25rem; text-align: center;
  transition: var(--transition);
}
.about-stat-card:hover { border-color: rgba(244,124,32,.3); }
.about-stat-num { display: block; font-size: 2rem; font-weight: 900; color: var(--primary); }
.about-contact-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius-sm); padding: 1.5rem; }

/* ── Services Page ─────────────────────────────────────────── */
.service-card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 2rem; height: 100%;
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(244,124,32,.2); }
.service-icon {
  width: 60px; height: 60px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; margin-bottom: 1.25rem;
}
.service-card h4 { font-weight: 700; margin-bottom: .625rem; }
.service-card p { color: var(--text-muted); font-size: .9rem; margin-bottom: 1.25rem; }
.service-link { color: var(--primary); font-weight: 600; font-size: .875rem; }
.service-link:hover { color: var(--primary-light); }

.services-hero {
  min-height: 410px;
  display: flex;
  align-items: end;
  padding: 5.75rem 0 3.75rem;
  background:
    linear-gradient(90deg, rgba(10,14,20,.92), rgba(10,14,20,.72) 48%, rgba(10,14,20,.36)),
    var(--page-hero-img, url("../images/hero-showroom.png")) center/cover no-repeat;
}

.services-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: .46rem .75rem;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.9);
  font-weight: 850;
  backdrop-filter: blur(14px);
}

.services-hero-lead {
  max-width: 740px;
  margin: 1rem 0 0;
  color: rgba(255,255,255,.76);
  font-size: clamp(1.05rem, 1.45vw, 1.25rem);
  line-height: 1.75;
}

.services-breadcrumb-wrap {
  display: flex;
  justify-content: flex-end;
}

.services-page-wrap {
  padding: 4.75rem 0;
  background:
    linear-gradient(180deg, #f6f8fb 0%, #fff 54%, #f6f8fb 100%);
}

.services-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.service-photo-card {
  overflow: hidden;
  padding: 0;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #dfe6ee;
  box-shadow: 0 16px 40px rgba(17,24,39,.08);
}

.service-photo-card:hover {
  transform: translateY(-4px);
  border-color: rgba(244,124,32,.24);
  box-shadow: 0 24px 58px rgba(17,24,39,.14);
}

.service-card-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10.5;
  overflow: hidden;
  background: #eef2f6;
}

.service-card-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(180deg, transparent, rgba(10,14,20,.44));
  pointer-events: none;
}

.service-card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .28s ease;
}

.service-photo-card:hover .service-card-media img {
  transform: scale(1.045);
}

.service-card-badge {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #fff;
  font-size: 1.45rem;
  box-shadow: 0 12px 28px rgba(17,24,39,.24);
}

.service-card-body {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 1.2rem;
}

.service-card-topline {
  margin-bottom: .35rem;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.service-photo-card h3 {
  margin: 0 0 .6rem;
  color: #151b24;
  font-size: 1.18rem;
  font-weight: 900;
  line-height: 1.18;
}

.service-photo-card p {
  color: #5b6675;
  font-size: .92rem;
  line-height: 1.65;
}

.service-card-features {
  display: grid;
  gap: .45rem;
  margin: .15rem 0 1rem;
}

.service-card-features span {
  display: flex;
  align-items: flex-start;
  gap: .45rem;
  color: #3e4a5a;
  font-size: .82rem;
  font-weight: 750;
  line-height: 1.35;
}

.service-card-features i {
  color: #198754;
  margin-top: .08rem;
}

.service-photo-card .service-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: auto;
  padding: .58rem .85rem;
  border-radius: 999px;
  background: #fff4eb;
  color: var(--primary);
  font-weight: 900;
}

.services-cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1.35rem, 3vw, 2rem);
  border-radius: 18px;
  background:
    linear-gradient(135deg, #151b24, #202a36);
  color: #fff;
  box-shadow: 0 22px 54px rgba(17,24,39,.16);
}

.services-cta-panel span {
  display: block;
  margin-bottom: .35rem;
  color: #ff8b45;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.services-cta-panel h3 {
  margin: 0 0 .35rem;
  color: #fff;
  font-weight: 900;
}

.services-cta-panel p {
  max-width: 680px;
  margin: 0;
  color: rgba(255,255,255,.72);
}

.services-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: flex-end;
}

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
  background: var(--dark); border-top: 1px solid var(--card-border);
  padding: 3.5rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem; margin-bottom: 2.5rem;
}
.footer-logo {
  display: inline-block; font-size: 1.4rem; font-weight: 900;
  color: #fff; letter-spacing: -0.5px; margin-bottom: .75rem;
}
.footer-brand p { color: var(--text-muted); font-size: .875rem; margin-bottom: .375rem; }
.footer-about { color: var(--text-muted); font-size: .85rem; line-height: 1.6; }
.social-links { display: flex; gap: .625rem; margin-top: 1rem; }
.social-links a {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  background: var(--card-bg); border: 1px solid var(--card-border);
  color: var(--text-muted); display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: var(--transition);
}
.social-links a:hover { border-color: var(--primary); color: var(--primary); background: rgba(244,124,32,.08); }
.footer-col h6 {
  color: var(--text); font-weight: 700; margin-bottom: 1rem;
  font-size: .85rem; text-transform: uppercase; letter-spacing: .5px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul li a { color: var(--text-muted); font-size: .875rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--primary); padding-left: 4px; }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li {
  display: flex; align-items: flex-start; gap: .5rem;
  margin-bottom: .625rem; font-size: .875rem; color: var(--text-muted);
}
.footer-contact i { color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.footer-contact a { color: var(--text-muted); }
.footer-contact a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid var(--card-border); padding-top: 1.25rem; }
.footer-legal {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: .75rem;
  font-size: .8rem; color: var(--text-muted);
}
.footer-links { display: flex; gap: 1rem; }
.footer-links a { color: var(--text-muted); }
.footer-links a:hover { color: var(--primary); }

/* ── Prose content ─────────────────────────────────────────── */
.prose-content { color: var(--text-light); line-height: 1.8; }
.prose-content h1,.prose-content h2,.prose-content h3,.prose-content h4 { font-weight: 700; color: var(--text); margin-top: 1.5em; }
.prose-content p { margin-bottom: 1em; }
.prose-content ul,.prose-content ol { padding-left: 1.5em; margin-bottom: 1em; }
.prose-content li { margin-bottom: .35em; }

/* ── Utility ───────────────────────────────────────────────── */
.admin-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius); }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 991px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-section { min-height: auto; padding: 4rem 0 3rem; }
  .cta-card { flex-direction: column; text-align: center; }
  .wa-cta-card { flex-direction: column; text-align: center; }
  .wa-cta-card .btn-whatsapp { margin-left: 0; }
}
@media (max-width: 767px) {
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .hero-title { font-size: clamp(2rem,8vw,3rem); }
  .detail-specs-grid { grid-template-columns: 1fr 1fr; }
  .section-pad { padding: 3rem 0; }
  .detail-cta-buttons { gap: .5rem; }
  .lightbox-prev { left: .5rem; }
  .lightbox-next { right: .5rem; }
}
@media (max-width: 480px) {
  .footer-legal { flex-direction: column; gap: .5rem; }
  .hero-stats { gap: 1.25rem; }
  .detail-specs-grid { grid-template-columns: 1fr; }
}

/* ── AOS (simple fade) ─────────────────────────────────────── */
[data-aos] { transition: opacity .6s ease, transform .6s ease; }
[data-aos="fade-up"]    { opacity: 0; transform: translateY(30px); }
[data-aos="fade-right"] { opacity: 0; transform: translateX(-30px); }
[data-aos="fade-left"]  { opacity: 0; transform: translateX(30px); }
[data-aos].aos-animate  { opacity: 1; transform: none; }

/* ═══════════════════════════════════════════════════════════
   TOPBAR
   ═══════════════════════════════════════════════════════════ */
.topbar {
  background: var(--dark);
  border-bottom: 1px solid var(--card-border);
  font-size: .8rem;
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: .4rem 0;
}
.topbar-left { display: flex; align-items: center; gap: 1.25rem; }
.topbar-right { display: flex; align-items: center; gap: .75rem; }
.topbar-item {
  display: inline-flex; align-items: center; gap: .4rem;
  color: var(--text-muted); transition: var(--transition);
}
.topbar-item:hover { color: var(--text); }
.topbar-item i { color: var(--primary); font-size: .85rem; }
.topbar-divider { cursor: default; }
.topbar-social {
  display: flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 6px;
  color: var(--text-muted); font-size: .875rem;
  background: rgba(255,255,255,.04);
  transition: var(--transition);
}
.topbar-social:hover { color: #fff; background: var(--primary); }
.topbar-wa-btn {
  display: inline-flex; align-items: center; gap: .4rem;
  background: #25d366; color: #fff !important;
  padding: .25rem .75rem; border-radius: 50px;
  font-weight: 600; font-size: .78rem;
  transition: var(--transition);
}
.topbar-wa-btn:hover { background: #1eaa53; transform: translateY(-1px); }

/* ═══════════════════════════════════════════════════════════
   NAVBAR UPDATES (logo + WA button + dropdown)
   ═══════════════════════════════════════════════════════════ */
.navbar-logo { height: 44px; width: auto; }
.btn-nav-wa {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(37,211,102,.15); color: #25d366 !important;
  font-size: 1rem; transition: var(--transition);
  border: 1px solid rgba(37,211,102,.3);
}
.btn-nav-wa:hover { background: #25d366; color: #fff !important; }

/* Dropdown mega-style */
.nav-dropdown-menu {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: .5rem;
  min-width: 320px;
  margin-top: .5rem !important;
}
.nav-dropdown-all {
  display: flex; align-items: center;
  color: var(--text-muted) !important;
  font-weight: 600; font-size: .85rem;
  padding: .5rem .75rem; border-radius: var(--radius-sm);
}
.nav-dropdown-all:hover {
  background: rgba(244,124,32,.1) !important;
  color: var(--primary) !important;
}
.nav-dropdown-item {
  display: flex !important; align-items: flex-start; gap: .75rem;
  padding: .625rem .75rem !important; border-radius: var(--radius-sm);
  color: var(--text-muted) !important; transition: var(--transition);
}
.nav-dropdown-item:hover { background: rgba(255,255,255,.05) !important; color: var(--text) !important; }
.nav-svc-icon {
  flex-shrink: 0; width: 36px; height: 36px;
  border-radius: 8px; display: flex; align-items: center;
  justify-content: center; font-size: 1rem;
}
.nav-svc-text { display: flex; flex-direction: column; gap: .1rem; }
.nav-svc-text strong { color: var(--text); font-size: .875rem; }
.nav-svc-text small { color: var(--text-muted); font-size: .72rem; line-height: 1.3;
  display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.navbar-nav .dropdown-toggle::after { border: none; content: '\f282'; font-family: 'bootstrap-icons'; font-size: .7rem; vertical-align: middle; margin-left: .3rem; }

/* ═══════════════════════════════════════════════════════════
   HERO SLIDER
   ═══════════════════════════════════════════════════════════ */
.hero-slider-section { position: relative; overflow: hidden; }
.hero-slide {
  position: relative; min-height: 92vh;
  display: flex; align-items: center;
}
.hero-slide-1 {
  background: linear-gradient(135deg, var(--navy) 0%, #0d1117 40%, #1a0a09 100%);
}
.hero-slide-1::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(244,124,32,.18) 0%, transparent 55%),
              radial-gradient(ellipse at 80% 20%, rgba(13,27,42,.8) 0%, transparent 50%);
}
.hero-slide-2 {
  background: linear-gradient(135deg, #0a1628 0%, #0d1117 45%, #061425 100%);
}
.hero-slide-2::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(41,128,185,.2) 0%, transparent 55%),
              radial-gradient(ellipse at 20% 80%, rgba(13,27,42,.6) 0%, transparent 50%);
}
.hero-slide-3 {
  background: linear-gradient(135deg, #071a10 0%, #0d1117 45%, #091a14 100%);
}
.hero-slide-3::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 30%, rgba(39,174,96,.18) 0%, transparent 55%),
              radial-gradient(ellipse at 15% 70%, rgba(13,27,42,.6) 0%, transparent 50%);
}
.hero-content { position: relative; z-index: 2; padding-top: 2rem; padding-bottom: 2rem; }

/* Carousel controls */
.hero-carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10; width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  color: #fff; font-size: 1.25rem; display: flex; align-items: center;
  justify-content: center; transition: var(--transition); cursor: pointer;
  backdrop-filter: blur(8px);
}
.hero-carousel-btn:hover { background: var(--primary); border-color: var(--primary); }
.hero-prev { left: 1.5rem; }
.hero-next { right: 1.5rem; }

/* Indicators */
.hero-indicators {
  position: absolute; bottom: 3.5rem !important; z-index: 10;
  display: flex; gap: .5rem; margin: 0 !important; left: 50%; transform: translateX(-50%);
}
.hero-indicators button {
  width: 28px; height: 4px; border-radius: 2px;
  background: rgba(255,255,255,.3) !important; border: none;
  transition: var(--transition); padding: 0;
}
.hero-indicators button.active { background: var(--primary) !important; width: 48px; }

/* Slide 2 & 3 features */
.slide-features { display: flex; flex-wrap: wrap; gap: .75rem; }
.slide-feature-item {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  padding: .375rem 1rem; border-radius: 50px;
  color: var(--text-light); font-size: .875rem; font-weight: 500;
}
.slide-feature-item i { color: #27ae60; }

.slide-services-grid { display: flex; flex-wrap: wrap; gap: .625rem; }
.slide-svc-chip {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  padding: .5rem 1.125rem; border-radius: 50px; color: var(--text-light);
  font-size: .875rem; font-weight: 500; transition: var(--transition);
}
.slide-svc-chip:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.slide-svc-chip i { font-size: .9rem; }

.btn-hero-outline {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,.3);
  padding: .875rem 2rem; border-radius: 50px;
  font-weight: 700; font-size: 1rem;
  transition: var(--transition);
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.6); color: #fff;
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════
   SERVICE DETAIL PAGE
   ═══════════════════════════════════════════════════════════ */
.service-detail-hero { padding: 2.5rem 0; }
.service-hero-icon {
  width: 64px; height: 64px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; flex-shrink: 0;
}
.service-detail-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 2.5rem;
}
.service-detail-card h2 { font-weight: 800; color: var(--text); }
.service-detail-card .lead { color: var(--text-light); font-size: 1.125rem; }
.service-detail-card p { color: var(--text-muted); }
.service-features h3 { font-weight: 700; color: var(--text); font-size: 1.25rem; }
.service-feature-item {
  display: flex; align-items: center; gap: .75rem;
  background: rgba(255,255,255,.03); border: 1px solid var(--card-border);
  border-radius: var(--radius-sm); padding: .75rem 1rem;
}
.service-feature-icon { font-size: 1.1rem; flex-shrink: 0; }
.service-feature-item span { color: var(--text-light); font-size: .9rem; font-weight: 500; }

.service-cta-card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 1.75rem;
  text-align: center;
}
.service-cta-icon {
  width: 56px; height: 56px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: #fff; margin: 0 auto 1rem;
}
.service-cta-card h4 { font-weight: 700; color: var(--text); }
.service-cta-card p { font-size: .875rem; }
.service-contact-info { display: flex; flex-direction: column; gap: .75rem; }
.service-contact-link {
  display: flex; align-items: center; gap: .75rem;
  color: var(--text-muted); font-size: .875rem; font-weight: 500;
  transition: var(--transition);
}
.service-contact-link:hover { color: var(--text); }
.service-contact-link i { color: var(--primary); font-size: 1rem; }
.service-contact-link span { color: var(--text-muted); }

.service-others-card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 1.5rem;
}
.service-others-card h5 { font-weight: 700; color: var(--text); }
.service-others-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .25rem; }
.service-others-list li a {
  display: flex; align-items: center; gap: .75rem;
  padding: .625rem .75rem; border-radius: var(--radius-sm);
  color: var(--text-muted); font-size: .9rem; font-weight: 500;
  transition: var(--transition);
}
.service-others-list li a:hover { background: rgba(255,255,255,.04); color: var(--text); }
.service-others-list li a i:last-child { margin-left: auto; font-size: .75rem; opacity: .5; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE ADDITIONS
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 991px) {
  .hero-slide { min-height: auto; padding: 5rem 0 4rem; }
  .hero-prev { left: .75rem; }
  .hero-next { right: .75rem; }
  .hero-carousel-btn { width: 38px; height: 38px; font-size: 1rem; }
  .nav-dropdown-menu { min-width: 100%; }
}
@media (max-width: 767px) {
  .service-detail-card { padding: 1.5rem; }
  .slide-features { gap: .5rem; }
  .hero-indicators { bottom: 2rem !important; }
}

/* ============================================================
   TIGA TRADING — Design Refresh
   Cleaner premium dealership look: bright surfaces, graphite text,
   restrained orange accents, stronger vehicle imagery.
   ============================================================ */

:root {
  --primary:       #f47c20;
  --primary-dark:  #c85f13;
  --primary-light: #ff9a3d;
  --dark:          #0f141b;
  --dark2:         #f3f5f8;
  --card-bg:       #ffffff;
  --card-border:   #dde3ea;
  --navy:          #111827;
  --text:          #18202b;
  --text-muted:    #697483;
  --text-light:    #3d4653;
  --radius:        8px;
  --radius-sm:     6px;
  --shadow:        0 10px 28px rgba(17,24,39,.08);
  --shadow-lg:     0 18px 50px rgba(17,24,39,.14);
}

body {
  background: #f6f8fb;
  color: var(--text);
}

a:hover { color: var(--primary-dark); }
.text-muted { color: var(--text-muted) !important; }

.btn {
  border-radius: 6px;
  font-weight: 700;
}

.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 8px 18px rgba(244,124,32,.16);
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  box-shadow: 0 10px 24px rgba(244,124,32,.2);
}

.btn-outline-primary {
  border-color: rgba(244,124,32,.45);
  color: var(--primary);
  background: #fff;
}

.btn-outline-primary:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.btn-outline-secondary {
  border-color: var(--card-border);
  color: var(--text-light);
  background: #fff;
}

.btn-outline-secondary:hover {
  background: #eef2f6;
  border-color: #c9d2dd;
  color: var(--text);
}

.form-control,
.form-select {
  background: #fff;
  border-color: #d6dde7;
  color: var(--text);
  border-radius: 6px;
}

.form-control:focus,
.form-select:focus {
  background: #fff;
  color: var(--text);
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(244,124,32,.1);
}

.form-control::placeholder { color: #98a3b1; }
.form-select option { background: #fff; color: var(--text); }

.topbar {
  background: #10151d;
  border: 0;
  color: rgba(255,255,255,.75);
}

.topbar-inner { padding: .5rem 0; }
.topbar-item,
.topbar-social { color: rgba(255,255,255,.7); }
.topbar-item:hover,
.topbar-social:hover { color: #fff; }
.topbar-social { background: rgba(255,255,255,.08); }
.topbar-wa-btn { border-radius: 6px; }

.site-header {
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(15,20,27,.08);
  box-shadow: 0 1px 0 rgba(15,20,27,.03);
}

.site-header.scrolled {
  box-shadow: 0 12px 32px rgba(17,24,39,.1);
}

.navbar { padding: .95rem 0; }
.navbar-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
}
.brand-text,
.footer-logo { color: var(--text); letter-spacing: 0; }

.navbar-nav .nav-link {
  color: #445064 !important;
  border-radius: 6px;
  font-weight: 700;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary) !important;
  background: rgba(244,124,32,.08);
}

.btn-phone {
  color: #445064;
  background: #f3f5f8;
  border: 1px solid #e2e7ef;
  border-radius: 6px;
}

.btn-phone:hover {
  color: var(--primary);
  background: #fff5f6;
  border-color: rgba(244,124,32,.22);
}

.navbar-ctas .rounded-pill,
.btn.rounded-pill { border-radius: 6px !important; }

.toggler-icon span { background: var(--text); }

.nav-dropdown-menu {
  background: #fff;
  border-color: #dbe2eb;
  box-shadow: 0 18px 48px rgba(17,24,39,.16);
}

.nav-dropdown-all,
.nav-dropdown-item { color: var(--text-muted) !important; }
.nav-dropdown-item:hover,
.nav-dropdown-all:hover { background: #f5f7fa !important; }
.nav-svc-text strong { color: var(--text); }

.hero-slider-section,
.hero-section {
  min-height: 82vh;
  background: #0c1118;
}

.hero-slider-section {
  display: block;
  width: 100%;
}

.hero-slider-section #heroCarousel,
.hero-slider-section .carousel-inner,
.hero-slider-section .carousel-item,
.hero-slider-section .hero-slide {
  width: 100%;
}

.hero-slider-section #heroCarousel {
  display: block;
  flex: 0 0 100%;
}

.hero-slide,
.hero-slide-1,
.hero-slide-2,
.hero-slide-3 {
  min-height: 82vh;
  background-image:
    linear-gradient(90deg, rgba(9,13,19,.9) 0%, rgba(9,13,19,.74) 35%, rgba(9,13,19,.28) 62%, rgba(9,13,19,.16) 100%),
    var(--page-hero-img, url("../images/hero-showroom.png"));
  background-size: cover;
  background-position: center;
}

.hero-slide-dynamic {
  background-image:
    linear-gradient(90deg, rgba(9,13,19,.9) 0%, rgba(9,13,19,.74) 35%, rgba(9,13,19,.28) 62%, rgba(9,13,19,.16) 100%),
    var(--hero-bg) !important;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #0c1118;
  pointer-events: none;
}

.hero-video-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120vw;
  height: 67.5vw;
  min-width: 177.78vh;
  min-height: 100vh;
  transform: translate(-50%, -50%);
  border: 0;
}

.hero-slide-dynamic::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(9,13,19,.92) 0%, rgba(9,13,19,.75) 35%, rgba(9,13,19,.34) 66%, rgba(9,13,19,.28) 100%),
    radial-gradient(ellipse at 16% 78%, rgba(244,124,32,.2), transparent 38%);
  pointer-events: none;
}

.hero-slide::before,
.hero-slide-1::before,
.hero-slide-2::before,
.hero-slide-3::before {
  background:
    linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.18)),
    radial-gradient(ellipse at 16% 78%, rgba(244,124,32,.2), transparent 38%);
}

.min-vh-90 { min-height: 82vh; }

.hero-slide-text {
  max-width: 720px;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.hero-badge,
.section-badge {
  border-radius: 6px;
  letter-spacing: .08em;
}

.hero-badge {
  background: rgba(255,255,255,.1) !important;
  border-color: rgba(255,255,255,.22) !important;
  color: #fff !important;
  backdrop-filter: blur(12px);
}

.hero-title {
  max-width: 720px;
  color: #fff;
  font-size: clamp(2.6rem, 5.8vw, 5.2rem);
  line-height: .98;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-accent { color: #ff9a3d; }

.hero-subtitle {
  color: rgba(255,255,255,.78);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  max-width: 590px;
}

.hero-stats {
  gap: 0 !important;
  display: inline-flex !important;
  padding: .9rem 1.1rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  backdrop-filter: blur(16px);
}

.hero-stat { min-width: 98px; text-align: left; }
.stat-num { color: #fff; font-size: 1.45rem; }
.stat-label { color: rgba(255,255,255,.68); }
.hero-stat-divider { background: rgba(255,255,255,.2); margin: 0 1rem; }

.btn-hero-primary,
.btn-hero-whatsapp,
.btn-hero-outline {
  border-radius: 6px;
  padding: .9rem 1.35rem;
}

.btn-hero-primary {
  background: var(--primary);
  box-shadow: 0 14px 30px rgba(244,124,32,.25);
}

.btn-hero-outline {
  color: #fff;
  border: 1px solid rgba(255,255,255,.32);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
}

.btn-hero-outline:hover {
  color: #fff;
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.48);
}

.hero-filter-card {
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 8px;
  color: var(--text);
}

.hero-select,
.hero-input {
  background: #fff !important;
  border-color: #d8e0ea !important;
  color: var(--text) !important;
}

.hero-carousel-btn {
  background: rgba(255,255,255,.88);
  color: var(--text);
  border: 1px solid rgba(255,255,255,.5);
}

.hero-carousel-btn:hover {
  background: var(--primary);
  color: #fff;
}

.hero-indicators button { background: rgba(255,255,255,.42); }
.hero-indicators button.active { background: #fff; }


.section-pad { padding: 4.75rem 0; }
.bg-alt,
.why-section,
.premium-section,
.testimonials-section { background: #f6f8fb; }
.about-snippet,
.cta-banner,
.wa-cta-section { background: #fff; }

.section-header { margin-bottom: 2.4rem; }

.section-badge {
  background: #fff5f6;
  color: var(--primary);
  border-color: rgba(244,124,32,.2);
}

.section-title {
  color: var(--text);
  letter-spacing: 0;
}

.section-sub { color: var(--text-muted); }

.car-card,
.premium-card,
.why-card,
.testimonial-card,
.hours-card,
.contact-info-card,
.detail-panel,
.detail-section,
.contact-form-card,
.service-card,
.service-detail-card,
.service-cta-card,
.service-others-card,
.about-stat,
.about-stat-card,
.about-contact-card,
.filter-sidebar {
  background: #fff;
  border-color: #dfe6ee;
  border-radius: 8px;
  box-shadow: 0 1px 0 rgba(17,24,39,.03);
}

.car-card:hover,
.premium-card:hover,
.why-card:hover,
.testimonial-card:hover,
.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(244,124,32,.32);
  box-shadow: var(--shadow-lg);
}

.car-card-img-wrap,
.premium-img-wrap { background: #eef2f6; }

.car-badge,
.premium-badge-tag,
.badge-sold-lg,
.badge-new-lg,
.badge-premium-lg {
  border-radius: 5px;
  letter-spacing: .04em;
}

.car-brand,
.premium-brand,
.detail-brand {
  color: var(--primary);
  letter-spacing: .08em;
}

.car-model a,
.premium-title,
.detail-title,
.why-card h5,
.service-card h4,
.service-detail-card h2,
.service-features h3,
.service-cta-card h4,
.service-others-card h5,
.hours-card h4,
.contact-info-card h5,
.footer-col h6 {
  color: var(--text);
}

.car-spec,
.cta-card p,
.why-card p,
.premium-info .text-muted,
.testimonial-author,
.service-card p,
.service-detail-card p,
.service-detail-card .lead,
.service-feature-item span,
.service-contact-link,
.service-contact-link span,
.hours-text,
.footer-brand p,
.footer-about,
.footer-col ul li a,
.footer-contact,
.footer-contact a,
.footer-legal,
.footer-links a,
.result-count,
.filter-label,
.spec-label,
.detail-spec-table td:first-child,
.detail-description,
.prose-content {
  color: var(--text-muted);
}

.price-value,
.premium-price,
.detail-price,
.about-num,
.about-stat-num { color: var(--primary); }

.car-card-footer,
.filter-header,
.detail-section-title,
.detail-spec-table tr:not(:last-child) td,
.footer-bottom { border-color: #e2e8f0; }

.btn-incele,
.share-btn {
  background: #f6f8fb;
  border-color: #dfe6ee;
  color: var(--text-light);
  border-radius: 6px;
}

.btn-incele:hover,
.share-btn:hover {
  background: #fff5f6;
  border-color: rgba(244,124,32,.35);
  color: var(--primary);
}

.cta-card {
  background: #fff;
  border-color: #dfe6ee;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.cta-buy { background: linear-gradient(135deg, #fff 0%, #fff5f6 100%); }
.cta-sell { background: linear-gradient(135deg, #fff 0%, #eef6ff 100%); }

.cta-icon,
.why-icon,
.contact-info-icon {
  border-radius: 8px;
  background: #fff5f6;
  color: var(--primary);
}

.about-img-card {
  background:
    linear-gradient(135deg, rgba(15,20,27,.05), rgba(244,124,32,.08)),
    #fff;
  border-color: #dfe6ee;
  border-radius: 8px;
  color: var(--primary);
  opacity: 1;
}

.about-exp-badge {
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(244,124,32,.22);
}

.about-hero {
  padding: 5.5rem 0 4rem;
}

.about-hero-lead {
  max-width: 740px;
  margin: 1rem 0 0;
  color: rgba(255,255,255,.76);
  font-size: clamp(1.05rem, 1.45vw, 1.25rem);
  line-height: 1.75;
}

.about-breadcrumb-wrap {
  display: flex;
  justify-content: flex-end;
}

.about-intro-section {
  padding: 4.5rem 0 2.5rem;
  background: #f6f8fb;
}

.about-intro-panel {
  background: #fff;
  border: 1px solid #dfe6ee;
  border-radius: 8px;
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: var(--shadow);
}

.about-intro-title {
  max-width: 680px;
  margin-bottom: 1.25rem;
  color: var(--text);
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  font-weight: 850;
  line-height: 1.12;
}

.about-prose {
  max-width: 720px;
}

.about-prose p:last-child {
  margin-bottom: 0;
}

.about-showroom-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 8px;
  background: #10151d;
  box-shadow: var(--shadow-lg);
}

.about-showroom-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: 60% center;
  display: block;
}

.about-showroom-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10,14,20,.82) 100%);
}

.about-showroom-overlay {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 2;
  color: #fff;
}

.about-showroom-kicker {
  display: block;
  margin-bottom: .45rem;
  color: #ff6b74;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.about-showroom-overlay strong {
  display: block;
  max-width: 420px;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  line-height: 1.16;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.about-stat-card {
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-stat-card span:last-child {
  color: var(--text-muted);
  font-size: .88rem;
  font-weight: 700;
}

.about-values-section {
  background: #fff;
}

.about-value-card {
  height: 100%;
  padding: 1.65rem;
  background: #fff;
  border: 1px solid #dfe6ee;
  border-radius: 8px;
  box-shadow: 0 1px 0 rgba(17,24,39,.03);
  transition: var(--transition);
}

.about-value-card:hover {
  transform: translateY(-3px);
  border-color: rgba(244,124,32,.32);
  box-shadow: var(--shadow-lg);
}

.about-value-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #fff5f6;
  color: var(--primary);
  font-size: 1.45rem;
}

.about-value-card h3 {
  margin-bottom: .6rem;
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 800;
}

.about-value-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: .92rem;
  line-height: 1.72;
}

.about-team-editorial {
  padding: 4.75rem 0;
  background: #fff;
}

.about-team-rows {
  display: grid;
  gap: 4.5rem;
}

.about-team-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.about-team-row.is-reverse .about-team-photo {
  order: 2;
}

.about-team-row.is-reverse .about-team-copy {
  order: 1;
}

.about-team-photo {
  overflow: hidden;
  border-radius: 8px;
  background: #eef2f6;
  box-shadow: var(--shadow);
}

.about-team-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.about-team-copy h3 {
  margin-bottom: 1rem;
  color: var(--text);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 900;
  line-height: 1.08;
  text-transform: uppercase;
}

.about-team-copy h3 span {
  color: #cf5520;
}

.about-team-copy p {
  color: var(--text-light);
  line-height: 1.78;
  margin-bottom: 1rem;
}

.about-team-intro {
  color: var(--text) !important;
  font-weight: 800;
}

.about-team-values {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
  display: grid;
  gap: .75rem;
}

.about-team-values li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  color: var(--text-light);
  line-height: 1.55;
}

.about-team-values i {
  color: #cf5520;
  margin-top: .15rem;
  flex-shrink: 0;
}

.about-team-signature {
  margin-top: 1.5rem;
  color: var(--text-light);
  font-weight: 700;
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.4vw, 2rem);
  margin-top: 4.5rem;
}

.about-team-card {
  text-align: center;
}

.about-team-card-photo {
  width: 100%;
  aspect-ratio: 4 / 2.35;
  margin-bottom: 1.55rem;
  overflow: hidden;
  background: #e8edf2;
}

.about-team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-team-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c5ccd4;
  font-size: clamp(3rem, 6vw, 5rem);
}

.about-team-card h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 500;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.about-team-card p {
  margin: .25rem 0 0;
  color: #8b9097;
  font-size: clamp(.95rem, 1.3vw, 1.12rem);
  line-height: 1.35;
}

.about-process-section {
  padding: 4.75rem 0;
  background: #f6f8fb;
}

.about-process-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.5rem;
}

.about-process-list {
  display: grid;
  gap: 1rem;
}

.about-process-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1.35rem;
  background: #fff;
  border: 1px solid #dfe6ee;
  border-radius: 8px;
  box-shadow: 0 1px 0 rgba(17,24,39,.03);
}

.about-process-step {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #10151d;
  color: #fff;
  font-size: .95rem;
  font-weight: 850;
}

.about-process-item h3 {
  margin-bottom: .35rem;
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 800;
}

.about-process-item p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.65;
}

.about-trust-section {
  background: #fff;
}

.about-trust-panel {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(16,21,29,.97), rgba(16,21,29,.88)),
    var(--page-hero-img, url("../images/hero-showroom.png"));
  background-size: cover;
  background-position: center;
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.about-trust-panel h2 {
  max-width: 680px;
  margin-bottom: .9rem;
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 850;
  line-height: 1.14;
}

.about-trust-panel p {
  max-width: 720px;
  color: rgba(255,255,255,.72);
  line-height: 1.75;
}

.about-check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
  margin-top: 1.35rem;
}

.about-check-grid span {
  display: flex;
  align-items: center;
  gap: .55rem;
  color: rgba(255,255,255,.86);
  font-weight: 700;
}

.about-check-grid i {
  color: #25d366;
}

.about-contact-card-lg {
  padding: 1.5rem;
  box-shadow: none;
}

.about-contact-card h5 {
  color: var(--text);
  font-weight: 800;
}

.about-contact-card p {
  color: var(--text-muted);
  line-height: 1.7;
}

/* About page refresh */
.about-hero {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: end;
  padding: 6rem 0 4rem;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(10,14,20,.92), rgba(10,14,20,.72) 48%, rgba(10,14,20,.38)),
    var(--page-hero-img, url("../images/hero-showroom.png")) center/cover no-repeat;
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(10,14,20,.72));
  pointer-events: none;
}

.about-hero .container {
  position: relative;
  z-index: 2;
}

.about-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: .46rem .75rem;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.9);
  font-weight: 850;
  backdrop-filter: blur(14px);
}

.about-hero-card {
  max-width: 360px;
  margin-left: auto;
  padding: 1.15rem;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  background: rgba(255,255,255,.1);
  color: #fff;
  box-shadow: 0 18px 44px rgba(0,0,0,.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.about-hero-card span {
  display: block;
  margin-bottom: .35rem;
  color: #ff8b45;
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.about-hero-card strong {
  display: block;
  font-size: 1.08rem;
  line-height: 1.25;
}

.about-hero-mini-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .65rem;
  margin-top: 1rem;
}

.about-hero-mini-stats div {
  padding: .7rem;
  border-radius: 12px;
  background: rgba(255,255,255,.12);
}

.about-hero-mini-stats b,
.about-hero-mini-stats small {
  display: block;
}

.about-hero-mini-stats b {
  font-size: 1.35rem;
  line-height: 1;
}

.about-hero-mini-stats small {
  margin-top: .25rem;
  color: rgba(255,255,255,.68);
  font-weight: 750;
}

.about-breadcrumb-wrap {
  margin-top: 1rem;
}

.about-breadcrumb-wrap .breadcrumb {
  justify-content: flex-end;
}

.about-intro-section {
  padding: 4.5rem 0 3rem;
  background:
    linear-gradient(180deg, #f6f8fb 0%, #fff 100%);
}

.about-intro-panel {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border-color: #e1e8f0;
  box-shadow: 0 18px 48px rgba(17,24,39,.08);
}

.about-intro-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--primary), #e86b32);
}

.about-intro-title,
.about-value-card h3,
.about-team-copy h3,
.about-process-item h3,
.about-contact-card h5 {
  color: #151b24;
}

.about-prose {
  color: #4b5868;
  line-height: 1.78;
}

.about-showroom-card {
  border-radius: 16px;
  box-shadow: 0 22px 54px rgba(17,24,39,.16);
}

.about-stats-grid {
  gap: 1rem;
  margin-top: 1.25rem;
}

.about-stat-card {
  position: relative;
  overflow: hidden;
  min-height: 126px;
  padding: 1.15rem;
  border: 1px solid #dfe6ee;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(17,24,39,.06);
}

.about-stat-card::after {
  content: "";
  position: absolute;
  inset: auto 1rem 1rem auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(244,124,32,.08);
}

.about-stat-num {
  font-size: clamp(1.85rem, 3vw, 2.35rem);
}

.about-values-section,
.about-team-editorial,
.about-trust-section {
  background: #fff;
}

.about-value-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(17,24,39,.06);
}

.about-value-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #e86b32);
  opacity: 0;
  transition: opacity .2s ease;
}

.about-value-card:hover::before {
  opacity: 1;
}

.about-value-icon {
  border-radius: 14px;
  background: #fff4eb;
}

.about-team-editorial {
  padding-top: 4rem;
}

.about-team-row {
  padding: clamp(1rem, 2vw, 1.4rem);
  border: 1px solid #e1e8f0;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(17,24,39,.07);
}

.about-team-photo {
  border-radius: 16px;
  box-shadow: none;
}

.about-team-photo img {
  aspect-ratio: 4 / 3.25;
}

.about-team-copy p,
.about-team-values li,
.about-team-signature {
  color: #566274;
}

.about-team-values li {
  padding: .65rem .75rem;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e8eef5;
}

.about-team-card {
  padding: .85rem;
  border: 1px solid #e1e8f0;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(17,24,39,.05);
}

.about-team-card-photo {
  border-radius: 12px;
}

.about-process-section {
  background:
    linear-gradient(180deg, #f6f8fb 0%, #fff 100%);
}

.about-process-item {
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(17,24,39,.06);
}

.about-process-step {
  border-radius: 14px;
  background: linear-gradient(135deg, #151b24, #2a3340);
}

.about-trust-panel {
  border-radius: 18px;
  box-shadow: 0 24px 58px rgba(17,24,39,.18);
}

.about-check-grid span {
  min-height: 44px;
  padding: .6rem .75rem;
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
}

.about-contact-card-lg {
  border-radius: 16px;
  background: rgba(255,255,255,.96);
  border-color: rgba(255,255,255,.25);
}

.about-gallery-section {
  padding: 4.75rem 0;
  background:
    linear-gradient(180deg, #fff 0%, #f6f8fb 100%);
}

.about-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 210px;
  gap: 1rem;
}

.about-photo-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 16px;
  background: #eef2f6;
  box-shadow: 0 16px 38px rgba(17,24,39,.08);
}

.about-photo-card.is-large {
  grid-column: span 2;
  grid-row: span 2;
}

.about-photo-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(180deg, transparent, rgba(10,14,20,.34));
  opacity: .75;
  pointer-events: none;
}

.about-photo-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .28s ease;
}

.about-photo-card:hover img {
  transform: scale(1.04);
}

.about-map-section {
  padding: 0;
  background: #f6f8fb;
}

.about-map-frame {
  width: 100%;
  height: clamp(420px, 56vw, 680px);
  background: #eef2f6;
}

.about-map-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.wa-cta-card {
  background: #10151d;
  border-color: rgba(255,255,255,.08);
  border-radius: 8px;
  color: #fff;
}

.wa-cta-card p { color: rgba(255,255,255,.68); }

.page-hero {
  background:
    linear-gradient(90deg, rgba(10,14,20,.9), rgba(10,14,20,.72)),
    var(--page-hero-img, url("../images/hero-showroom.png"));
  background-size: cover;
  background-position: center;
  border: 0;
  padding: 4.3rem 0 3rem;
}

.page-hero::before {
  background: radial-gradient(ellipse at 20% 70%, rgba(244,124,32,.2), transparent 42%);
}

.page-hero-title {
  color: #fff;
  letter-spacing: 0;
}

.breadcrumb-item a { color: rgba(255,255,255,.68); }
.breadcrumb-item.active { color: #fff; }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.48); }

.filter-sidebar {
  top: 94px;
  padding: 1.25rem;
}

.filter-input,
.sort-select {
  background: #fff !important;
  border-color: #d8e0ea !important;
  color: var(--text) !important;
}

.detail-specs-grid,
.gallery-no-img,
.service-feature-item {
  background: #f6f8fb;
  border-color: #dfe6ee;
}

.gallery-main-img-wrap,
.gallery-thumb,
.lightbox-img { border-radius: 8px; }

.site-footer {
  background: #10151d;
  border: 0;
}

.site-footer .footer-logo,
.site-footer .brand-text,
.site-footer .footer-col h6 { color: #fff; }

.footer-logo-img {
  height: 58px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: .75rem;
}

.site-footer .footer-brand p,
.site-footer .footer-about,
.site-footer .footer-col ul li a,
.site-footer .footer-contact,
.site-footer .footer-contact a,
.site-footer .footer-legal,
.site-footer .footer-links a { color: rgba(255,255,255,.64); }

.site-footer .footer-col ul li a:hover,
.site-footer .footer-contact a:hover,
.site-footer .footer-links a:hover { color: #fff; }

.site-footer .social-links a {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.12);
  color: rgba(255,255,255,.7);
}

.site-footer .social-links a:hover {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
}

.site-footer .footer-bottom { border-color: rgba(255,255,255,.1); }

.pagination .page-link {
  background: #fff;
  border-color: #dfe6ee;
  color: var(--text-light);
}

.pagination .page-link:hover {
  background: #f6f8fb;
  color: var(--primary);
}

.pagination .page-item.active .page-link {
  background: var(--primary);
  border-color: var(--primary);
}

@media (max-width: 991px) {
  .navbar-collapse {
    background: #fff;
    border: 1px solid #dfe6ee;
    border-radius: 8px;
    margin-top: .9rem;
    padding: .75rem;
    box-shadow: var(--shadow);
  }

  .hero-slider-section,
  .hero-section,
  .hero-slide,
  .hero-slide-1,
  .hero-slide-2,
  .hero-slide-3,
  .min-vh-90 {
    min-height: 74vh;
  }

  .hero-slide,
  .hero-slide-1,
  .hero-slide-2,
  .hero-slide-3 {
    background-position: 62% center;
  }

  .hero-filter-card { display: none; }
  .hero-scroll-indicator { display: none; }
}

@media (max-width: 767px) {
  .topbar { display: none !important; }
  .navbar { padding: .75rem 0; }
  .navbar-logo { height: 40px; }

  .hero-slider-section,
  .hero-section,
  .hero-slide,
  .hero-slide-1,
  .hero-slide-2,
  .hero-slide-3,
  .min-vh-90 {
    min-height: 68vh;
  }

  .hero-slide-text {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .hero-title { font-size: clamp(2.15rem, 11vw, 3.35rem); }

  .hero-stats {
    width: 100%;
    justify-content: space-between;
    padding: .8rem;
  }

  .hero-stat { min-width: 0; }
  .stat-num { font-size: 1.15rem; }
  .hero-stat-divider { margin: 0 .65rem; }
  .section-pad { padding: 3.25rem 0; }
  .cta-card { align-items: flex-start; text-align: left; padding: 1.35rem; }

  .about-hero {
    padding: 4rem 0 3rem;
  }

  .about-breadcrumb-wrap {
    justify-content: flex-start;
  }

  .about-intro-section,
  .about-process-section {
    padding: 3.25rem 0;
  }

  .about-intro-panel {
    padding: 1rem;
  }

  .about-showroom-card,
  .about-showroom-card img {
    min-height: 300px;
  }

  .about-stats-grid,
  .about-check-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-process-item {
    grid-template-columns: 1fr;
    gap: .9rem;
  }

  .about-team-editorial {
    padding: 3.25rem 0;
  }

  .about-team-rows {
    gap: 3rem;
  }

  .about-team-row,
  .about-team-row.is-reverse {
    grid-template-columns: 1fr;
  }

  .about-team-row.is-reverse .about-team-photo,
  .about-team-row.is-reverse .about-team-copy {
    order: initial;
  }

  .about-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 1.25rem;
    margin-top: 3rem;
  }
}

@media (max-width: 480px) {
  .about-stats-grid,
  .about-check-grid {
    grid-template-columns: 1fr;
  }

  .about-process-actions .btn,
  .about-contact-card-lg .btn {
    width: 100%;
  }

  .about-team-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  .about-hero-card {
    max-width: none;
    margin: 1rem 0 0;
  }

  .about-breadcrumb-wrap,
  .about-breadcrumb-wrap .breadcrumb {
    justify-content: flex-start;
  }

  .about-team-row {
    padding: 1rem;
  }
}

@media (max-width: 767px) {
  .about-hero {
    min-height: 520px;
    padding: 4.25rem 0 2.75rem;
  }

  .about-hero-card {
    padding: 1rem;
  }

  .about-hero-mini-stats {
    grid-template-columns: 1fr;
  }

  .about-intro-panel {
    border-radius: 16px;
  }

  .about-stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-value-card,
  .about-process-item,
  .about-trust-panel {
    border-radius: 14px;
  }

  .about-photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 190px;
  }

  .about-photo-card.is-large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .about-map-frame {
    height: 420px;
  }
}

@media (max-width: 480px) {
  .about-stats-grid,
  .about-hero-mini-stats {
    grid-template-columns: 1fr;
  }

  .about-photo-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .about-photo-card.is-large {
    grid-column: span 1;
  }
}

/* ============================================================
   Header Refresh
   ============================================================ */

.topbar {
  background:
    linear-gradient(90deg, #0d1117 0%, #131923 52%, #0d1117 100%);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.topbar-inner {
  min-height: 42px;
}

.topbar-note {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: rgba(255,255,255,.82);
  font-size: .8rem;
  font-weight: 700;
  padding-right: 1rem;
  margin-right: .15rem;
  border-right: 1px solid rgba(255,255,255,.14);
}

.topbar-note i {
  color: #ff7a45;
}

.topbar-item {
  color: rgba(255,255,255,.68);
  font-weight: 600;
}

.topbar-item i {
  color: #ff6b45;
}

.topbar-social {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
}

.topbar-wa-btn {
  min-height: 30px;
  padding: .32rem .85rem;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(37,211,102,.18);
}

.site-header {
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(17,24,39,.08);
  box-shadow: 0 10px 34px rgba(17,24,39,.08);
}

.site-header.scrolled {
  background: rgba(255,255,255,.92);
  box-shadow: 0 16px 44px rgba(17,24,39,.13);
}

.navbar {
  padding: .72rem 0;
}

.nav-shell {
  gap: 1rem;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: .72rem;
  min-width: max-content;
}

.brand-mark {
  width: 62px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.9), rgba(255,244,237,.86));
  border: 1px solid rgba(207,85,32,.18);
  box-shadow: 0 12px 28px rgba(17,24,39,.09);
}

.navbar-logo {
  max-width: 52px;
  height: 46px;
  object-fit: contain;
}

.brand-copy {
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy strong {
  color: #17202b;
  font-size: .98rem;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.brand-copy small {
  color: #7b8490;
  margin-top: .18rem;
  font-size: .72rem;
  font-weight: 700;
}

.navbar-collapse {
  gap: 1.1rem;
}

.navbar-nav {
  padding: .28rem;
  border: 1px solid rgba(17,24,39,.08);
  border-radius: 999px;
  background: rgba(246,248,251,.82);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.72);
}

.navbar-nav .nav-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .55rem .92rem !important;
  border-radius: 999px;
  color: #394556 !important;
  font-size: .88rem;
  font-weight: 800;
  white-space: nowrap;
}

.navbar-nav .nav-link i {
  color: #87909d;
  font-size: .98rem;
  transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #fff !important;
  background: linear-gradient(135deg, #f47c20, #d85a24);
  box-shadow: 0 10px 22px rgba(244,124,32,.2);
}

.navbar-nav .nav-link:hover i,
.navbar-nav .nav-link.active i {
  color: #fff;
}

.navbar-nav .dropdown-toggle::after {
  color: currentColor;
}

.navbar-ctas {
  padding-left: .15rem;
}

.btn-phone {
  min-height: 48px;
  align-items: center;
  gap: .65rem;
  padding: .38rem .85rem .38rem .42rem;
  background: #fff;
  border: 1px solid rgba(17,24,39,.1);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(17,24,39,.07);
}

.btn-phone-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #f2f5f8;
  color: var(--primary);
}

.btn-phone-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.btn-phone-text small {
  color: #8b95a1;
  font-size: .66rem;
  font-weight: 800;
  text-transform: uppercase;
}

.btn-phone-text strong {
  color: #233044;
  margin-top: .18rem;
  font-size: .82rem;
  font-weight: 850;
}

.btn-nav-wa {
  width: auto;
  min-height: 48px;
  gap: .45rem;
  padding: .45rem .9rem;
  border-radius: 999px;
  background: rgba(37,211,102,.1);
  border: 1px solid rgba(37,211,102,.24);
  color: #18a957 !important;
  font-weight: 850;
  box-shadow: 0 10px 24px rgba(37,211,102,.09);
}

.btn-nav-wa i {
  font-size: 1.05rem;
}

.btn-nav-wa:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(37,211,102,.22);
}

.btn-header-search {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .72rem 1rem;
  color: #fff;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #f47c20 0%, #d85a24 100%);
  box-shadow: 0 14px 28px rgba(244,124,32,.24);
}

.btn-header-search:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(244,124,32,.3);
}

.nav-dropdown-menu {
  margin-top: .9rem !important;
  border: 1px solid rgba(17,24,39,.08);
  border-radius: 16px;
  box-shadow: 0 22px 58px rgba(17,24,39,.16);
}

.nav-svc-icon {
  border-radius: 12px;
}

.navbar-toggler {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(17,24,39,.1);
  box-shadow: 0 10px 24px rgba(17,24,39,.08);
}

@media (max-width: 1199px) {
  .navbar-nav .nav-link {
    padding: .55rem .75rem !important;
  }
}

@media (max-width: 991px) {
  .nav-shell {
    gap: .75rem;
  }

  .brand-mark {
    width: 56px;
    height: 50px;
  }

  .navbar-logo {
    max-width: 48px;
    height: 42px;
  }

  .navbar-collapse {
    margin-top: .8rem;
    padding: .95rem;
    border-radius: 18px;
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(17,24,39,.1);
    box-shadow: 0 22px 54px rgba(17,24,39,.14);
  }

  .navbar-nav {
    width: 100%;
    padding: .35rem;
    border-radius: 14px;
    background: #f6f8fb;
  }

  .navbar-nav .nav-link {
    width: 100%;
    justify-content: flex-start;
    border-radius: 12px;
  }

  .navbar-ctas {
    width: 100%;
    justify-content: stretch;
    padding-left: 0;
  }

  .btn-header-search {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .brand-mark {
    width: 52px;
    height: 46px;
    border-radius: 14px;
  }

  .navbar-logo {
    max-width: 44px;
    height: 38px;
  }
}

/* Header V2 - restrained dealership style */
.topbar {
  background: #0f141b;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.topbar-inner {
  min-height: 38px;
  padding: .35rem 0;
}

.topbar-note {
  color: rgba(255,255,255,.74);
  font-size: .76rem;
  font-weight: 650;
}

.topbar-note i,
.topbar-item i {
  color: #c95a27;
}

.topbar-item {
  color: rgba(255,255,255,.64);
  font-size: .78rem;
  font-weight: 500;
}

.topbar-social {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(255,255,255,.06);
  border: 0;
}

.topbar-wa-btn {
  min-height: 28px;
  border-radius: 6px;
  box-shadow: none;
}

.topbar-translate {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .2rem .5rem .2rem .65rem;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.06));
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.82);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.topbar-translate > i {
  color: #c95a27;
  font-size: .9rem;
}

.translate-label {
  color: rgba(255,255,255,.72);
  font-size: .74rem;
  font-weight: 750;
  letter-spacing: .01em;
}

.topbar-translate .gtranslate_wrapper {
  display: inline-flex;
  align-items: center;
  gap: .18rem;
  min-height: 26px;
}

.topbar-translate a,
.topbar-translate .glink {
  width: 30px;
  height: 26px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.topbar-translate a:hover,
.topbar-translate .glink:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.2);
}

.topbar-translate img {
  width: 22px !important;
  height: 22px !important;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}

.topbar-translate span[style*="white-space"],
.topbar-translate a span {
  display: none !important;
}

.topbar-translate select,
.topbar-translate .gt_selector {
  min-height: 26px;
  max-width: 150px;
  padding: .16rem 1.65rem .16rem .45rem;
  border: 0;
  border-radius: 6px;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  outline: 0;
}

.topbar-translate select option,
.topbar-translate .gt_selector option {
  color: #1f2937;
  background: #fff;
}

/* Vehicle Detail Refresh */
.detail-hero {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(10,14,20,.94) 0%, rgba(15,20,27,.82) 42%, rgba(15,20,27,.58) 100%),
    var(--detail-hero-img) center/cover no-repeat;
}

.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  background:
    radial-gradient(circle at 22% 100%, rgba(216,90,36,.24), transparent 34%),
    linear-gradient(180deg, transparent 0%, rgba(10,14,20,.36) 100%);
  pointer-events: none;
}

.detail-hero .container {
  position: relative;
  z-index: 1;
}

.detail-hero .breadcrumb {
  display: inline-flex;
  width: auto;
  margin-bottom: 1.15rem;
  padding: .42rem .65rem;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.detail-hero-copy {
  max-width: 820px;
  padding-bottom: 2rem;
}

.detail-hero-copy h1 {
  color: #fff;
  max-width: 760px;
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 3.25rem);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: 0;
}

.detail-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1rem;
}

.detail-hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  min-height: 36px;
  padding: .42rem .7rem;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.84);
  font-size: .82rem;
  font-weight: 780;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.detail-hero-meta i {
  color: #ff8b45;
}

.detail-page {
  margin-top: 2.25rem !important;
  position: relative;
  z-index: 2;
}

.detail-top-grid,
.detail-content-grid {
  --bs-gutter-x: 1.75rem;
  --bs-gutter-y: 1.2rem;
}

.detail-content-grid {
  margin-top: 1.2rem !important;
}

.detail-page .gallery-main-img-wrap {
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  overflow: hidden;
  background: #eef2f6;
  box-shadow: 0 22px 60px rgba(17,24,39,.16);
}

.detail-page .col-lg-7:first-child {
  display: flex;
  flex-direction: column;
}

.detail-page .gallery-main {
  height: 100%;
}

.detail-page .gallery-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-page .gallery-nav,
.detail-page .gallery-fullscreen,
.detail-page .gallery-counter {
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.detail-page .gallery-main-img-wrap {
  box-shadow: 0 18px 48px rgba(17,24,39,.16);
}

.detail-page .gallery-main-img-wrap::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(10,14,20,.38));
}

.detail-page .gallery-sold-badge,
.detail-page .gallery-premium-badge {
  z-index: 3;
}

.detail-page .gallery-nav {
  width: 46px;
  height: 46px;
  background: rgba(17,24,39,.58);
  border: 1px solid rgba(255,255,255,.2);
  box-shadow: 0 12px 26px rgba(17,24,39,.18);
}

.detail-page .gallery-fullscreen,
.detail-page .gallery-counter {
  z-index: 2;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(17,24,39,.62);
}

.detail-page .gallery-counter {
  display: inline-flex;
  align-items: center;
  gap: .38rem;
  min-height: 34px;
  padding: .35rem .65rem;
  border-radius: 999px;
}

.detail-page .gallery-thumbs {
  gap: .7rem;
  margin-top: .8rem;
  padding-bottom: .4rem;
}

.detail-inline-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.1rem;
}

.detail-page .gallery-thumb {
  width: 96px;
  height: 68px;
  border-radius: 10px;
  border: 2px solid #fff;
  box-shadow: 0 10px 22px rgba(17,24,39,.12);
  opacity: .72;
  transform: translateY(0);
  transition: border-color .2s ease, opacity .2s ease, transform .2s ease, box-shadow .2s ease;
}

.detail-page .gallery-thumb.active,
.detail-page .gallery-thumb:hover {
  opacity: 1;
  border-color: #c52632;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(244,124,32,.18);
}

.detail-sticky-side {
  position: sticky;
  top: 108px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.detail-panel {
  display: flex;
  flex-direction: column;
  gap: .95rem;
  border: 1px solid rgba(17,24,39,.08);
  border-radius: 14px;
  padding: 1.6rem;
  box-shadow: 0 18px 48px rgba(17,24,39,.12);
}

.detail-top-grid > .col-lg-5 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.detail-panel .badge {
  align-self: flex-start;
}

.detail-brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  min-height: 30px;
  padding: .38rem .65rem;
  border-radius: 999px;
  background: #fff4f1;
  color: #a83219;
  font-size: .76rem;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.detail-title {
  margin: 0;
  color: #151b24;
  font-size: clamp(1.35rem, 1.1rem + 1vw, 2.15rem);
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.detail-price-row {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: 0;
  padding: .9rem;
  border: 1px solid #e4ebf3;
  border-radius: 14px;
  background:
    linear-gradient(135deg, #ffffff 0%, #f7f9fc 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
}

.detail-price-box {
  min-width: 0;
  flex: 1 1 auto;
}

.detail-price-label {
  display: block;
  color: #778292;
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .18rem;
}

.detail-price {
  margin: 0;
  color: var(--primary);
  font-size: clamp(1.35rem, 1rem + 1vw, 2rem);
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.detail-price-box.is-sold .detail-price {
  color: #dc3545;
}

.detail-price-box.is-sold .price-sold {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: .45rem .75rem;
  border-radius: 999px;
  background: rgba(220,53,69,.1);
  color: #dc3545;
  font-size: 1rem;
  font-weight: 950;
}

.detail-ref {
  align-self: flex-start;
  flex: 0 0 auto;
  padding: .42rem .62rem;
  border-radius: 10px;
  background: #151b24;
  color: #fff;
  font-size: .75rem;
  font-weight: 850;
  white-space: nowrap;
}

.detail-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .7rem;
  margin: 0;
  background: #f6f8fb;
  border: 1px solid #dfe6ee;
  border-radius: 12px;
  padding: .85rem;
}

.detail-spec {
  min-height: 62px;
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: start;
  column-gap: .55rem;
  padding: .65rem;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #eef2f6;
}

.detail-spec i,
.detail-spec .color-dot {
  grid-row: span 2;
  margin-top: .15rem;
}

.detail-spec .spec-label {
  line-height: 1.1;
}

.detail-spec strong {
  min-width: 0;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.detail-section {
  border-radius: 14px;
  border: 1px solid #dfe6ee;
  box-shadow: 0 12px 34px rgba(17,24,39,.06);
  height: auto;
}

.detail-section-compact {
  padding: 1.35rem;
}

.detail-section-title {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: .85rem;
  padding-bottom: .72rem;
  border-bottom: 1px solid #e6edf4;
}

.detail-section-title i {
  color: var(--primary);
}

.features-grid {
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: .6rem;
}

.feature-item {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: .62rem .78rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e3eaf2;
  color: #344154;
  line-height: 1.35;
  font-weight: 750;
  box-shadow: 0 8px 18px rgba(17,24,39,.04);
}

.feature-item i {
  color: #198754;
}

.detail-description {
  line-height: 1.65;
}

.detail-description-card {
  background:
    linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.detail-description {
  padding: .95rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #e8eef5;
  color: #4b5868;
}

.detail-features-card,
.detail-technical-card {
  background: #fff;
}

.detail-video-frame {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 16 / 9;
  background: #111821;
}

.detail-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.detail-spec-table td {
  padding: .66rem .25rem;
}

.detail-tech-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .7rem;
}

.detail-tech-item {
  min-width: 0;
  display: grid;
  grid-template-columns: 36px 1fr;
  column-gap: .65rem;
  row-gap: .12rem;
  align-items: center;
  min-height: 64px;
  padding: .78rem;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e8eef5;
}

.detail-tech-item i {
  grid-row: span 2;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #fff;
  color: var(--primary);
  box-shadow: 0 8px 18px rgba(17,24,39,.05);
}

.detail-tech-item span {
  color: #7a8492;
  font-size: .72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.detail-tech-item strong {
  min-width: 0;
  color: #17202b;
  font-size: .94rem;
  font-weight: 850;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.detail-tech-price {
  grid-column: 1 / -1;
  background: #fff7f3;
  border-color: rgba(244,124,32,.15);
}

.detail-contact-card {
  padding: 1.35rem;
  border-radius: 14px;
  background:
    linear-gradient(145deg, #151b24, #0f141b);
  color: #fff;
  box-shadow: 0 18px 44px rgba(17,24,39,.16);
}

.detail-included-card {
  position: relative;
  display: flex;
  gap: 1rem;
  overflow: hidden;
  padding: 1.25rem;
  border: 1px solid rgba(17,24,39,.08);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,247,244,.94));
  box-shadow: 0 18px 44px rgba(17,24,39,.1);
}

.detail-included-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--primary), #e86b32);
}

.detail-included-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid rgba(244,124,32,.16);
  background: #fff;
  color: var(--primary);
  font-size: 1.25rem;
  box-shadow: 0 10px 24px rgba(244,124,32,.12);
}

.detail-included-content h4 {
  margin: 0 0 .7rem;
  color: #151b24;
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.2;
}

.detail-included-content ul {
  display: grid;
  gap: .55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-included-content li {
  position: relative;
  min-height: 44px;
  padding: .68rem .75rem .68rem 2.15rem;
  border: 1px solid rgba(244,124,32,.1);
  border-radius: 12px;
  background: rgba(255,255,255,.82);
  color: #3e4a5a;
  font-size: .88rem;
  line-height: 1.4;
  font-weight: 750;
}

.detail-included-content li::before {
  content: "\F26A";
  position: absolute;
  top: .7rem;
  left: .72rem;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(25,135,84,.1);
  color: #198754;
  font-family: "bootstrap-icons";
  font-size: .8rem;
  line-height: 1;
}

.detail-content-grid .detail-section,
.detail-content-grid .detail-contact-card,
.detail-content-grid .detail-included-card {
  margin-top: 0 !important;
}

.detail-content-grid .col-lg-7,
.detail-content-grid .col-lg-5 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.detail-mini-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: #151b24;
  color: #fff;
}

.detail-mini-contact span {
  display: block;
  color: #ff8b45;
  font-size: .75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-mini-contact strong {
  display: block;
  margin-top: .1rem;
  font-size: 1rem;
}

.detail-mini-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}

.detail-mini-actions a,
.detail-share-grid a,
.detail-share-grid button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .55rem .8rem;
  border-radius: 10px;
  border: 1px solid #dfe6ee;
  background: #fff;
  color: #263241;
  font-weight: 850;
}

.detail-mini-actions a {
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.1);
  color: #fff;
}

.detail-test-drive {
  position: relative;
  overflow: hidden;
  border-color: rgba(17,24,39,.1);
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 18px 44px rgba(17,24,39,.1);
}

.detail-test-drive::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), #e86b32, #111821);
}

.detail-test-drive .detail-section-title {
  margin: -.1rem -.1rem 1rem;
  padding: .15rem 0 .85rem;
  border-bottom-color: #e8eef5;
  color: #17202b;
}

.detail-test-drive .detail-section-title i {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(244,124,32,.1);
  color: var(--primary);
}

.detail-test-drive .row {
  --bs-gutter-y: .65rem;
}

.detail-test-drive .form-control {
  min-height: 46px;
  border-color: #dbe3ec;
  border-radius: 12px;
  background: #fff;
  color: #17202b;
  font-size: .9rem;
  font-weight: 650;
  box-shadow: inset 0 1px 0 rgba(17,24,39,.02);
}

.detail-test-drive textarea.form-control {
  min-height: 78px;
  resize: vertical;
}

.detail-test-drive .form-control:focus {
  border-color: rgba(244,124,32,.45);
  box-shadow: 0 0 0 .2rem rgba(244,124,32,.1);
}

.detail-test-drive .btn-header-search {
  min-height: 48px;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(244,124,32,.22);
}

.test-drive-status {
  min-height: 18px;
  margin-top: .7rem;
  color: #6b7583;
  font-size: .82rem;
  font-weight: 750;
  line-height: 1.35;
}

.test-drive-status.success {
  color: #198754;
}

.test-drive-status.error {
  color: var(--primary);
}

.detail-share-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .65rem;
}

.detail-share-grid button {
  width: 100%;
  cursor: pointer;
}

.detail-share-grid .copied {
  border-color: rgba(25,135,84,.35);
  background: rgba(25,135,84,.08);
  color: #198754;
}

.detail-contact-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255,255,255,.1);
  color: #ff7a45;
  margin-bottom: .8rem;
}

.detail-contact-card h4 {
  font-size: 1.05rem;
  font-weight: 900;
  margin-bottom: .45rem;
}

.detail-contact-card p {
  color: rgba(255,255,255,.72);
  margin-bottom: 1rem;
}

.detail-contact-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
}

.detail-contact-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  border-radius: 10px;
  font-weight: 850;
}

.detail-contact-actions .btn-outline-dark {
  color: #fff;
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.08);
}

.detail-section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.detail-section-heading span,
.detail-browse-copy span {
  color: var(--primary);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-section-heading h3,
.detail-browse-copy h3 {
  margin: .15rem 0 0;
  font-size: 1.4rem;
  font-weight: 900;
  color: #17202b;
}

.detail-section-heading a {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: var(--primary);
  font-weight: 850;
}

.detail-listings {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.detail-listing-item {
  display: flex;
  flex-direction: column;
  gap: .9rem;
  overflow: hidden;
  padding: .85rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #dfe6ee;
  box-shadow: 0 14px 34px rgba(17,24,39,.07);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.detail-listing-item:hover {
  transform: translateY(-3px);
  border-color: rgba(244,124,32,.22);
  box-shadow: 0 20px 44px rgba(17,24,39,.11);
}

.detail-listing-img {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 12px;
  background: #eef2f6;
}

.detail-listing-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
}

.detail-listing-item:hover .detail-listing-img img {
  transform: scale(1.035);
}

.detail-listing-img span {
  position: absolute;
  inset: .45rem auto auto .45rem;
  padding: .2rem .45rem;
  border-radius: 5px;
  background: var(--primary);
  color: #fff;
  font-size: .65rem;
  font-weight: 900;
}

.detail-listing-brand {
  color: var(--primary);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .25rem;
}

.detail-listing-main h4 {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1.2;
}

.detail-listing-main h4 a {
  color: #17202b;
}

.detail-listing-specs {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem .75rem;
  margin-top: .55rem;
}

.detail-listing-specs span {
  display: inline-flex;
  align-items: center;
  gap: .32rem;
  color: #6b7583;
  font-size: .8rem;
  font-weight: 700;
}

.detail-listing-specs i {
  color: #c95a27;
}

.detail-listing-side {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  margin-top: auto;
  padding-top: .85rem;
  border-top: 1px solid #edf1f5;
}

.detail-listing-price {
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 950;
  overflow-wrap: anywhere;
}

.detail-listing-side .btn {
  flex: 0 0 auto;
}

.detail-mobile-actions {
  display: none;
}

.detail-browse-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: 16px;
  background:
    linear-gradient(135deg, #111821 0%, #1b2531 100%);
  color: #fff;
  box-shadow: 0 20px 48px rgba(17,24,39,.14);
}

.detail-browse-copy {
  max-width: 640px;
}

.detail-browse-copy h3 {
  color: #fff;
}

.detail-browse-copy p {
  color: rgba(255,255,255,.72);
  margin: .35rem 0 0;
}

.detail-browse-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  justify-content: flex-end;
}

.detail-browse-actions .btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  border-radius: 999px;
  font-weight: 850;
}

.detail-browse-actions .btn-outline-dark {
  color: #fff;
  border-color: rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
}

@media (max-width: 991px) {
  .detail-sticky-side {
    position: static;
  }

  .detail-hero {
    min-height: 240px;
  }

  .detail-browse-more {
    align-items: flex-start;
    flex-direction: column;
  }

  .detail-browse-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .detail-listings {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  body.page-car-detail {
    padding-bottom: 84px;
  }

  .detail-hero {
    min-height: 280px;
  }

  .detail-hero .breadcrumb {
    border-radius: 12px;
  }

  .detail-hero-copy h1 {
    font-size: 2rem;
  }

  .detail-page .gallery-main-img-wrap {
    aspect-ratio: 4 / 3;
  }

  .detail-panel {
    padding: 1.15rem;
  }

  .detail-brand {
    font-size: .72rem;
  }

  .detail-title {
    font-size: 1.45rem;
  }

  .detail-price-row {
    flex-direction: column;
    gap: .65rem;
    padding: .8rem;
  }

  .detail-ref {
    align-self: stretch;
    text-align: center;
  }

  .detail-included-card {
    gap: .75rem;
    padding: 1rem;
  }

  .detail-included-icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    border-radius: 12px;
  }

  .detail-included-content li {
    padding-right: .65rem;
    font-size: .84rem;
  }

  .detail-specs-grid,
  .detail-tech-grid,
  .detail-listings {
    grid-template-columns: 1fr;
  }

  .detail-tech-item {
    min-height: 58px;
  }

  .detail-section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .detail-browse-actions,
  .detail-browse-actions .btn {
    width: 100%;
  }

  .detail-mini-contact {
    align-items: flex-start;
    flex-direction: column;
  }

  .detail-mini-actions,
  .detail-mini-actions a,
  .detail-share-grid {
    width: 100%;
  }

  .detail-share-grid {
    grid-template-columns: 1fr;
  }

  .detail-listing-side {
    align-items: stretch;
    flex-direction: column;
  }

  .detail-listing-side .btn {
    justify-content: center;
  }

  .detail-mobile-actions {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 1040;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .65rem;
    padding: .55rem;
    border: 1px solid rgba(17,24,39,.1);
    border-radius: 16px;
    background: rgba(255,255,255,.92);
    box-shadow: 0 18px 48px rgba(17,24,39,.22);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .detail-mobile-actions.single-action {
    grid-template-columns: 1fr;
  }

  .detail-mobile-actions a {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    border-radius: 12px;
    font-weight: 900;
  }

  .detail-mobile-wa {
    background: #19a85b;
    color: #fff;
  }

  .detail-mobile-call {
    background: #151b24;
    color: #fff;
  }
}

.site-header,
.site-header.scrolled {
  background: #fff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid #e7ebf0;
  box-shadow: 0 8px 24px rgba(17,24,39,.06);
}

.navbar {
  padding: .65rem 0;
}

.nav-shell {
  gap: 1.25rem;
}

.navbar-brand {
  gap: .75rem;
}

.brand-mark {
  width: auto;
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.navbar-logo {
  max-width: none;
  height: 52px;
  width: auto;
}

.brand-copy strong {
  color: #151b24;
  font-size: .92rem;
  letter-spacing: .08em;
}

.brand-copy small {
  color: #8b929d;
  font-size: .68rem;
}

.navbar-nav {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  gap: .15rem;
}

.navbar-nav .nav-link {
  position: relative;
  min-height: 44px;
  padding: .65rem .82rem !important;
  border-radius: 0;
  color: #2f3948 !important;
  font-size: .86rem;
  font-weight: 750;
  letter-spacing: .01em;
}

.navbar-nav .nav-link i {
  display: none;
}

.navbar-nav .nav-link::before {
  content: '';
  position: absolute;
  left: .82rem;
  right: .82rem;
  bottom: .25rem;
  height: 2px;
  background: #c95a27;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #c2411f !important;
  background: transparent;
  box-shadow: none;
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
  transform: scaleX(1);
}

.navbar-ctas {
  gap: .55rem !important;
  padding-left: .75rem;
  border-left: 1px solid #e4e9f0;
}

.btn-phone {
  min-height: 42px;
  padding: .45rem .72rem;
  gap: .5rem;
  border-radius: 8px;
  background: #f7f9fb;
  border: 1px solid #e2e8f0;
  box-shadow: none;
}

.btn-phone-icon {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  background: #fff;
  color: #c2411f;
}

.btn-phone-text small {
  display: none;
}

.btn-phone-text strong {
  margin: 0;
  color: #2f3948;
  font-size: .8rem;
  font-weight: 750;
}

.btn-nav-wa {
  min-height: 42px;
  padding: .45rem .75rem;
  border-radius: 8px;
  background: #edf9f2;
  border: 1px solid #cfeedd;
  color: #169b51 !important;
  box-shadow: none;
  font-size: .84rem;
}

.btn-header-search {
  min-height: 42px;
  padding: .58rem .95rem;
  border-radius: 8px;
  background: #f47c20;
  box-shadow: 0 8px 18px rgba(244,124,32,.18);
  font-size: .86rem;
}

.btn-header-search:hover {
  background: #971822;
  box-shadow: 0 10px 22px rgba(244,124,32,.24);
}

.nav-dropdown-menu {
  margin-top: .6rem !important;
  border-radius: 10px;
  box-shadow: 0 16px 42px rgba(17,24,39,.14);
}

.navbar-toggler {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  box-shadow: none;
}

@media (max-width: 991px) {
  .navbar-logo {
    height: 46px;
  }

  .navbar-collapse {
    border-radius: 10px;
    box-shadow: 0 16px 38px rgba(17,24,39,.12);
  }

  .navbar-nav .nav-link {
    border-radius: 8px;
  }

  .navbar-nav .nav-link::before {
    display: none;
  }

  .navbar-nav .nav-link i {
    display: inline-block;
    color: #8b929d;
  }

  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link.active {
    background: #fff4eb;
  }

  .navbar-ctas {
    border-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .navbar-logo {
    height: 42px;
  }
}

/* Inventory Refresh */
.inventory-hero {
  padding: 5.2rem 0 3.4rem;
  background:
    linear-gradient(90deg, rgba(10,14,20,.92), rgba(10,14,20,.72) 48%, rgba(10,14,20,.42)),
    var(--page-hero-img, url("../images/hero-showroom.png"));
  background-size: cover;
  background-position: center;
}

.inventory-hero-text {
  max-width: 760px;
  margin: .95rem 0 0;
  color: rgba(255,255,255,.76);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.75;
}

.inventory-breadcrumb-wrap {
  display: flex;
  justify-content: flex-end;
}

.inventory-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.35rem;
}

.inventory-hero-stats span {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .55rem .8rem;
  border-radius: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.74);
  font-size: .86rem;
  font-weight: 650;
  backdrop-filter: blur(12px);
}

.inventory-hero-stats strong {
  color: #fff;
}

.inventory-page-wrap {
  padding: 3rem 0 4.5rem;
  background:
    linear-gradient(180deg, #f6f8fb 0%, #fff 52%, #f6f8fb 100%);
}

.inventory-mobile-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-bottom: 1rem;
}

.filter-sidebar {
  padding: 0;
  overflow: hidden;
  border-radius: 10px;
}

.filter-header {
  margin: 0;
  padding: 1.15rem 1.2rem;
  background: #10151d;
  border-bottom: 0;
}

.filter-header h5 {
  color: #fff;
  font-size: 1rem;
}

.filter-eyebrow {
  display: block;
  margin-bottom: .2rem;
  color: rgba(255,255,255,.55);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

#filterForm {
  padding: 1.15rem;
}

.filter-group {
  margin-bottom: .9rem;
}

.filter-label {
  color: #4b5563;
  font-size: .72rem;
  letter-spacing: .06em;
}

.filter-input {
  min-height: 42px;
  border-radius: 8px !important;
}

.btn-filter-submit {
  min-height: 44px;
  border-radius: 8px;
}

.inventory-toolbar {
  padding: 1rem 1.1rem;
  margin-bottom: 1.25rem;
  background: #fff;
  border: 1px solid #dfe6ee;
  border-radius: 10px;
  box-shadow: 0 1px 0 rgba(17,24,39,.03);
}

.result-count {
  display: block;
  color: #6b7280;
}

.result-count strong {
  color: #111827;
  font-size: 1.15rem;
}

.active-filter-note {
  margin-top: .15rem;
  color: var(--primary);
  font-size: .78rem;
  font-weight: 750;
}

.sort-select {
  min-height: 40px;
  border-radius: 8px !important;
}

.view-toggle {
  display: inline-flex;
  gap: .25rem;
  padding: .25rem;
  border: 1px solid #dfe6ee;
  border-radius: 9px;
  background: #f6f8fb;
}

.view-toggle-btn {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .42rem .62rem;
  border-radius: 7px;
  color: #687385;
  font-size: .78rem;
  font-weight: 800;
}

.view-toggle-btn:hover {
  color: var(--primary);
  background: #fff;
}

.view-toggle-btn.active {
  color: #fff;
  background: #10151d;
}

.car-card {
  border-radius: 10px;
  border-color: #dfe6ee;
  background: #fff;
  box-shadow: 0 1px 0 rgba(17,24,39,.03);
}

.car-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 48px rgba(17,24,39,.14);
}

.car-card-img-wrap {
  aspect-ratio: 16 / 10.5;
  background: linear-gradient(135deg, #eef2f6, #f8fafc);
}

.car-badges {
  top: .75rem;
  left: .75rem;
  flex-direction: row;
  flex-wrap: wrap;
}

.car-badge {
  padding: .28rem .55rem;
  border-radius: 6px;
  font-size: .66rem;
}

.car-photo-count {
  bottom: .75rem;
  right: .75rem;
  border-radius: 6px;
}

.car-card-body {
  padding: 1.15rem;
}

.car-brand-row {
  margin-bottom: .45rem;
}

.car-brand {
  color: #c2411f;
  font-size: .72rem;
}

.car-year {
  padding: .16rem .45rem;
  border-radius: 999px;
  background: #f3f5f8;
  color: #556070;
  font-weight: 750;
}

.car-model {
  margin-bottom: .85rem;
  font-size: 1.12rem;
  line-height: 1.28;
}

.car-specs {
  gap: .5rem;
}

.car-spec {
  padding: .34rem .5rem;
  border-radius: 7px;
  background: #f7f9fb;
  color: #5b6573;
  font-size: .76rem;
}

.car-card-footer {
  margin-top: 1rem;
  padding-top: 1rem;
}

.price-value {
  font-size: 1.14rem;
}

.btn-incele {
  border-radius: 8px;
  background: #10151d;
  border-color: #10151d;
  color: #fff;
}

.btn-incele:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* Car Card V2 */
.car-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(17,24,39,.08);
  border-radius: 12px;
  background: #fff;
}

.car-card::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.55);
}

.car-card-img-wrap::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(180deg, transparent, rgba(10,14,20,.42));
  pointer-events: none;
}

.car-card.car-sold {
  opacity: 1;
  filter: grayscale(.12);
}

.car-card.car-sold .car-card-img-wrap::before {
  content: 'SATILDI';
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10,14,20,.48);
  color: #fff;
  font-size: clamp(1.35rem, 3vw, 2.15rem);
  font-weight: 950;
  letter-spacing: .12em;
  pointer-events: none;
}

.car-card.car-sold .badge-sold {
  background: #dc3545;
  color: #fff;
  box-shadow: 0 8px 20px rgba(220,53,69,.24);
}

.car-card.car-sold .btn-incele {
  background: #f3f5f8;
  border-color: #dfe6ee;
  color: #6b7280;
}

.car-card-img {
  filter: saturate(1.03) contrast(1.02);
}

.car-card-body {
  position: relative;
  padding: 1.2rem 1.2rem 1.1rem;
}

.car-brand-row {
  gap: .75rem;
}

.car-brand {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: #a83219;
}

.car-brand::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c95a27;
}

.car-model {
  min-height: 2.8em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.car-model a {
  color: #111827;
  font-size: 1.02rem;
  font-weight: 850;
}

.car-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .5rem;
}

.car-spec {
  min-height: 34px;
  background: #f5f7fa;
  border: 1px solid #edf1f5;
}

.car-spec i {
  color: #c95a27;
}

.car-card-footer {
  align-items: flex-end;
}

.car-price {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}

.price-label {
  color: #8b95a1;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.price-value {
  color: #111827;
  font-size: 1.18rem;
  line-height: 1.05;
}

.btn-incele {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  padding: .48rem .78rem;
}

.car-card:hover .btn-incele {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.cars-grid.view-grid .car-card-img-wrap {
  aspect-ratio: 1 / 1;
}

.cars-grid.view-list .car-card {
  display: grid;
  grid-template-columns: minmax(260px, 38%) 1fr;
  min-height: 250px;
}

.cars-grid.view-list .car-card-img-wrap {
  height: 100%;
  aspect-ratio: auto;
}

.cars-grid.view-list .car-card-body {
  display: flex;
  flex-direction: column;
  padding: 1.35rem;
}

.cars-grid.view-list .car-model {
  min-height: auto;
  max-width: 720px;
}

.cars-grid.view-list .car-model a {
  font-size: 1.28rem;
}

.cars-grid.view-list .car-specs {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: .4rem;
}

.cars-grid.view-list .car-card-footer {
  margin-top: auto;
}

.inventory-cta-section {
  margin-top: 3rem;
}

.inventory-cta-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(16,21,29,.96), rgba(16,21,29,.88)),
    var(--page-hero-img, url("../images/hero-showroom.png"));
  background-size: cover;
  background-position: center;
  color: #fff;
  box-shadow: 0 18px 48px rgba(17,24,39,.16);
}

.inventory-cta-kicker {
  display: inline-block;
  margin-bottom: .55rem;
  color: #ff7a45;
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.inventory-cta-main h2 {
  max-width: 650px;
  margin-bottom: .45rem;
  color: #fff;
  font-size: clamp(1.45rem, 2.5vw, 2.15rem);
  font-weight: 900;
  line-height: 1.12;
}

.inventory-cta-main p {
  max-width: 680px;
  margin: 0;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
}

.inventory-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  flex-shrink: 0;
}

.inventory-cta-actions .btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  white-space: nowrap;
}

.inventory-mini-ctas {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.inventory-mini-cta {
  display: flex;
  align-items: center;
  gap: .85rem;
  min-height: 94px;
  padding: 1rem;
  border: 1px solid #dfe6ee;
  border-radius: 10px;
  background: #fff;
  color: var(--text);
  box-shadow: 0 1px 0 rgba(17,24,39,.03);
}

.inventory-mini-cta:hover {
  transform: translateY(-2px);
  border-color: rgba(244,124,32,.28);
  box-shadow: 0 14px 32px rgba(17,24,39,.1);
}

.inventory-mini-cta i {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 10px;
  background: #fff4eb;
  color: #c2411f;
  font-size: 1.25rem;
}

.inventory-mini-cta strong,
.inventory-mini-cta small {
  display: block;
}

.inventory-mini-cta strong {
  color: #111827;
  font-size: .95rem;
}

.inventory-mini-cta small {
  margin-top: .2rem;
  color: #7a8492;
  font-size: .78rem;
  line-height: 1.35;
}

@media (max-width: 575px) {
  .car-specs {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  .inventory-breadcrumb-wrap {
    justify-content: flex-start;
  }

  .filter-sidebar {
    border-radius: 0;
  }

  .filter-close {
    color: #fff;
  }
}

@media (max-width: 767px) {
  .inventory-hero {
    padding: 4rem 0 2.8rem;
  }

  .inventory-page-wrap {
    padding: 1.5rem 0 3rem;
  }

  .inventory-mobile-bar {
    grid-template-columns: 1fr;
  }

  .inventory-toolbar {
    align-items: flex-start;
  }

  .view-toggle span {
    display: none;
  }

  .cars-grid.view-list .car-card {
    display: block;
    min-height: 0;
  }

  .cars-grid.view-list .car-card-img-wrap {
    aspect-ratio: 1 / 1;
  }

  .cars-grid.view-list .car-specs {
    grid-template-columns: 1fr 1fr;
  }

  .inventory-cta-main {
    align-items: flex-start;
    flex-direction: column;
  }

  .inventory-cta-actions,
  .inventory-cta-actions .btn {
    width: 100%;
  }

  .inventory-cta-actions .btn {
    justify-content: center;
  }

  .inventory-mini-ctas {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  .services-breadcrumb-wrap {
    justify-content: flex-start;
  }

  .services-photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-cta-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .services-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .services-hero {
    min-height: 390px;
    padding: 4.25rem 0 2.75rem;
  }

  .services-page-wrap {
    padding: 3.25rem 0;
  }

  .services-photo-grid {
    grid-template-columns: 1fr;
  }

  .service-card-body {
    min-height: 0;
  }

  .services-cta-actions,
  .services-cta-actions .btn {
    width: 100%;
  }

  .services-cta-actions .btn {
    justify-content: center;
  }
}

.services-photo-grid .service-photo-card {
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(17,24,39,.08);
}

.services-photo-grid .service-photo-card:hover {
  transform: translateY(-4px);
  border-color: rgba(244,124,32,.24);
  box-shadow: 0 24px 58px rgba(17,24,39,.14);
}

.services-photo-grid .service-photo-card h3 {
  color: #151b24;
}

.services-photo-grid .service-photo-card p {
  color: #5b6675;
}

.services-photo-grid .service-card-media {
  border-radius: 18px 18px 0 0;
}

.service-detail-hero-visual {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: end;
  overflow: hidden;
  padding: 5.75rem 0 3.75rem;
  background:
    linear-gradient(90deg, rgba(10,14,20,.92), rgba(10,14,20,.68) 52%, rgba(10,14,20,.34)),
    var(--service-hero-img) center/cover no-repeat;
}

.service-detail-hero-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(10,14,20,.7));
  pointer-events: none;
}

.service-detail-hero-visual .container {
  position: relative;
  z-index: 2;
}

.service-detail-hero-content {
  max-width: 860px;
}

.service-detail-kicker {
  color: #ff8b45;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.service-detail-hero-lead {
  max-width: 760px;
  margin: 1rem 0 0;
  color: rgba(255,255,255,.78);
  font-size: clamp(1.05rem, 1.45vw, 1.22rem);
  line-height: 1.7;
}

.service-detail-page {
  margin-top: 4rem !important;
  margin-bottom: 4.75rem !important;
}

.service-detail-image-card {
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 18px;
  background: #eef2f6;
  box-shadow: 0 18px 48px rgba(17,24,39,.12);
}

.service-detail-image-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
}

.service-detail-page .service-detail-card {
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(17,24,39,.08);
}

.service-video-card {
  margin-top: 1.5rem;
}

.service-video-card h3 {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: .85rem;
  color: #151b24;
  font-size: 1.08rem;
  font-weight: 900;
}

.service-video-card h3 i {
  color: #dc3545;
}

.service-video-frame {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 16 / 9;
  background: #111821;
}

.service-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.service-listings-card,
.service-side-note {
  padding: 1.15rem;
  border: 1px solid #dfe6ee;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(17,24,39,.08);
}

.service-side-heading span {
  display: block;
  color: var(--primary);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.service-side-heading h5 {
  margin: .15rem 0 1rem;
  color: #151b24;
  font-size: 1.08rem;
  font-weight: 900;
}

.service-listing-mini-list {
  display: grid;
  gap: .75rem;
}

.service-listing-mini {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: .75rem;
  align-items: center;
  padding: .55rem;
  border: 1px solid #e8eef5;
  border-radius: 14px;
  background: #f8fafc;
  color: #151b24;
}

.service-listing-mini:hover {
  border-color: rgba(244,124,32,.24);
  background: #fff;
  box-shadow: 0 12px 28px rgba(17,24,39,.08);
}

.service-listing-mini-img {
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 4 / 3;
  background: #eef2f6;
}

.service-listing-mini-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.service-listing-mini-copy {
  min-width: 0;
  display: grid;
  gap: .15rem;
}

.service-listing-mini-copy strong {
  color: #151b24;
  font-size: .88rem;
  font-weight: 900;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.service-listing-mini-copy small {
  color: #778292;
  font-size: .76rem;
  font-weight: 750;
}

.service-listing-mini-copy b {
  color: var(--primary);
  font-size: .9rem;
  font-weight: 950;
}

.service-listings-all {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  width: 100%;
  margin-top: .9rem;
  border-radius: 999px;
  background: #151b24;
  color: #fff;
  font-weight: 900;
}

.service-listings-all:hover {
  color: #fff;
  background: var(--primary);
}

.service-side-note {
  display: flex;
  gap: .85rem;
  background:
    linear-gradient(135deg, #fff, #fff7f3);
}

.service-side-note i {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #fff;
  color: var(--primary);
  box-shadow: 0 10px 24px rgba(244,124,32,.12);
}

.service-side-note strong {
  display: block;
  color: #151b24;
  font-weight: 900;
  line-height: 1.25;
}

.service-side-note p {
  margin: .3rem 0 0;
  color: #667284;
  font-size: .86rem;
  line-height: 1.55;
}

@media (max-width: 767px) {
  .service-detail-hero-visual {
    min-height: 390px;
    padding: 4.25rem 0 2.75rem;
  }

  .service-detail-page {
    margin-top: 3rem !important;
    margin-bottom: 3.25rem !important;
  }
}

.rentals-hero {
  min-height: 430px;
  display: flex;
  align-items: end;
  padding: 5.75rem 0 3.75rem;
  background:
    linear-gradient(90deg, rgba(10,14,20,.92), rgba(10,14,20,.68) 52%, rgba(10,14,20,.34)),
    var(--page-hero-img, url("../images/hero-showroom.png")) center/cover no-repeat;
}

.rentals-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: .46rem .75rem;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.9);
  font-weight: 850;
  backdrop-filter: blur(14px);
}

.rentals-hero-lead {
  max-width: 760px;
  margin: 1rem 0 0;
  color: rgba(255,255,255,.78);
  font-size: clamp(1.05rem, 1.45vw, 1.22rem);
  line-height: 1.7;
}

.rentals-breadcrumb-wrap {
  display: flex;
  justify-content: flex-end;
}

.rentals-page-wrap {
  padding: 4.75rem 0;
  background:
    linear-gradient(180deg, #f6f8fb 0%, #fff 54%, #f6f8fb 100%);
}

/* ── Rental Grid ─────────────────────────────────────────────── */
.rentals-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

/* ── Rental Card ─────────────────────────────────────────────── */
.rental-card {
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(226,232,240,.95);
  box-shadow: 0 8px 28px rgba(17,24,39,.07);
  overflow: hidden;
  transition: transform .22s cubic-bezier(.23,1,.32,1),
              box-shadow .22s cubic-bezier(.23,1,.32,1),
              border-color .22s ease;
}

.rental-card:hover {
  transform: translateY(-7px);
  border-color: rgba(244,124,32,.32);
  box-shadow: 0 24px 64px rgba(17,24,39,.14);
}

/* media */
.rc-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 10%, rgba(244,124,32,.28), transparent 30%),
    linear-gradient(135deg, #181f2b 0%, #2d3748 52%, #f47c20 140%);
  text-decoration: none;
  flex-shrink: 0;
}

.rc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: .42;
  transition: transform .38s cubic-bezier(.23,1,.32,1);
}

.rental-card:hover .rc-img {
  transform: scale(1.06);
}

.rc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,14,20,.08) 0%,
    rgba(10,14,20,.26) 45%,
    rgba(10,14,20,.72) 100%
  );
  pointer-events: none;
  transition: opacity .22s;
}

.rental-card:hover .rc-overlay {
  opacity: 1.15;
}

.rc-showcase {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  gap: .8rem;
  color: #fff;
}

.rc-showcase span {
  display: block;
  color: rgba(255,255,255,.72);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.rc-showcase strong {
  display: block;
  color: #fff;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 950;
  line-height: 1.05;
}

.rc-available {
  position: absolute;
  top: .9rem;
  right: .9rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .42rem .68rem;
  border-radius: 999px;
  background: rgba(23, 181, 102, .92);
  color: #fff;
  font-size: .72rem;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(23,181,102,.24);
}

/* subtitle chip on image top-left */
.rc-chip {
  position: absolute;
  top: .9rem;
  left: .9rem;
  display: inline-flex;
  align-items: center;
  padding: .3rem .7rem;
  border-radius: 999px;
  background: rgba(10,14,20,.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.92);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  z-index: 2;
}

.rc-color-dots {
  position: absolute;
  left: 1rem;
  top: 3.35rem;
  z-index: 3;
  display: flex;
  gap: .35rem;
}

.rc-color-dots span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.85);
  box-shadow: 0 4px 12px rgba(0,0,0,.22);
}

/* body */
.rc-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.25rem 1.3rem 1.3rem;
}

.rc-eyebrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: .45rem;
  color: var(--primary);
  font-size: .72rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.rc-eyebrow strong {
  color: #7b8796;
  font-size: .68rem;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
}

.rc-title {
  margin: 0 0 .75rem;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.25;
}

.rc-title a {
  color: #111827;
  text-decoration: none;
  transition: color .15s;
}

.rc-title a:hover {
  color: var(--primary);
}

/* specs */
.rc-specs {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: 1.1rem;
}

.rc-spec {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .3rem .65rem;
  border-radius: 999px;
  background: #f4f7fb;
  border: 1px solid #e4eaf2;
  color: #3e4a5a;
  font-size: .75rem;
  font-weight: 800;
  white-space: nowrap;
}

.rc-spec i {
  font-size: .8rem;
  color: var(--primary);
  flex-shrink: 0;
}

.rc-color-options {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin: -.35rem 0 1.1rem;
}

.rc-color-options span {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  min-height: 28px;
  padding: .28rem .55rem;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid #e5ebf2;
  color: #3e4a5a;
  font-size: .72rem;
  font-weight: 900;
  white-space: nowrap;
}

.rc-color-options span i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(17,24,39,.12);
  flex-shrink: 0;
}

.rc-desc {
  margin: 0 0 1.15rem;
  color: #667386;
  font-size: .9rem;
  line-height: 1.55;
}

/* footer */
.rc-footer {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-top: auto;
}

.rc-btn-detail {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .7rem 1rem;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), #ff9a3d);
  color: #fff;
  font-size: .88rem;
  font-weight: 900;
  text-decoration: none;
  transition: background .18s, transform .14s, box-shadow .18s;
  box-shadow: 0 4px 14px rgba(244,124,32,.28);
}

.rc-btn-detail:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(244,124,32,.38);
}

.rc-arrow {
  margin-left: auto;
  transition: transform .18s;
}

.rc-btn-detail:hover .rc-arrow {
  transform: translateX(3px);
}

.rc-btn-wa {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #e9faf0;
  border: 1px solid #c3efd4;
  color: #1a9e4a;
  font-size: 1.15rem;
  text-decoration: none;
  transition: background .15s, transform .14s, box-shadow .15s;
}

.rc-btn-wa:hover {
  background: #25d366;
  border-color: #25d366;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(37,211,102,.3);
}

/* empty state */
.rentals-empty {
  padding: 4rem 1.5rem;
  border: 1px dashed #dfe6ee;
  border-radius: 20px;
  background: #fafbfd;
  text-align: center;
}

.rentals-empty i {
  display: block;
  font-size: 3rem;
  color: #d1d8e0;
  margin-bottom: .75rem;
}

.rentals-empty h3 {
  margin: 0 0 .4rem;
  color: #151b24;
  font-weight: 900;
}

.rentals-empty p {
  margin: 0;
  color: #8898aa;
}

/* responsive */
@media (max-width: 991px) {
  .rentals-breadcrumb-wrap {
    justify-content: flex-start;
  }
  .rentals-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
  }
}

@media (max-width: 767px) {
  .rentals-hero {
    min-height: 390px;
    padding: 4.25rem 0 2.75rem;
  }
  .rentals-page-wrap {
    padding: 3.25rem 0;
  }
  .rentals-grid {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════════════════════════
   RENTAL FILTER — redesigned
   ══════════════════════════════════════════════════════════════ */
.rentals-filter-wrap {
  margin-bottom: 2.5rem;
}

.rentals-filter-form {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0;
  background: #fff;
  border: 1px solid #dfe6ee;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(17,24,39,.1);
  overflow: hidden;
}

.rff-title {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: 0 1.5rem;
  background: var(--primary);
  color: #fff;
  font-weight: 900;
  font-size: .88rem;
  letter-spacing: .03em;
  flex-shrink: 0;
  min-width: 140px;
}

.rff-title i {
  font-size: 1.15rem;
}

.rff-fields {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
}

.rff-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: .9rem 1.25rem;
  min-width: 160px;
  flex: 1;
  border-left: 1px solid #edf1f7;
  position: relative;
}

.rff-group:first-child {
  border-left: none;
}

.rff-group label {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .68rem;
  font-weight: 900;
  color: #8898aa;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .3rem;
}

.rff-group label i {
  color: var(--primary);
  font-size: .85rem;
}

.rff-select {
  border: none;
  outline: none;
  background: transparent;
  font-size: .92rem;
  font-weight: 700;
  color: #151b24;
  width: 100%;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%238898aa' d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  background-size: 12px;
  padding-right: 18px;
}

.rff-select:focus {
  outline: none;
}

.rff-actions {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.25rem;
  border-left: 1px solid #edf1f7;
  flex-shrink: 0;
}

.rff-btn-search {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .65rem 1.4rem;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  border: none;
  font-weight: 900;
  font-size: .88rem;
  cursor: pointer;
  transition: background .18s, transform .12s;
  white-space: nowrap;
}

.rff-btn-search:hover {
  background: #a8272e;
  transform: translateY(-1px);
}

.rff-btn-clear {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .55rem 1rem;
  border-radius: 999px;
  background: #f6f8fb;
  color: #667284;
  border: 1px solid #e8eef5;
  font-weight: 800;
  font-size: .82rem;
  text-decoration: none;
  transition: background .15s;
  white-space: nowrap;
}

.rff-btn-clear:hover {
  background: #edf1f7;
  color: #3e4a5a;
}


@media (max-width: 767px) {
  .rentals-filter-form {
    flex-direction: column;
    border-radius: 16px;
  }
  .rff-title {
    min-height: 52px;
    border-radius: 0;
  }
  .rff-group {
    border-left: none;
    border-top: 1px solid #edf1f7;
    padding: .75rem 1.25rem;
  }
  .rff-actions {
    border-left: none;
    border-top: 1px solid #edf1f7;
    padding: .75rem 1.25rem 1.25rem;
  }
  .rff-btn-search,
  .rff-btn-clear {
    flex: 1;
    justify-content: center;
  }
}

/* ══════════════════════════════════════════════════════════════
   RENTAL DETAIL PAGE
   ══════════════════════════════════════════════════════════════ */
.rental-detail-hero {
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding: 5.5rem 0 3.25rem;
  background:
    linear-gradient(90deg, rgba(10,14,20,.92), rgba(10,14,20,.65) 55%, rgba(10,14,20,.3)),
    var(--rd-hero-img, var(--page-hero-img, url("../images/hero-showroom.png"))) center/cover no-repeat;
}

.rd-hero-kicker {
  color: var(--primary);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .4rem;
}

.rd-hero-copy h1 {
  color: #fff;
  font-size: clamp(1.65rem, 3.2vw, 2.5rem);
  font-weight: 950;
  margin: 0 0 .8rem;
}

.rd-hero-specs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.rd-hero-specs span {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .38rem .7rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  color: rgba(255,255,255,.9);
  font-size: .8rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

/* image card */
.rd-image-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #dfe6ee;
  box-shadow: 0 20px 50px rgba(17,24,39,.12);
  margin-bottom: 1.5rem;
  aspect-ratio: 16/10;
  background: #eef2f6;
}

.rd-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rd-image-price-badge {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  display: inline-flex;
  align-items: baseline;
  gap: .3rem;
  padding: .6rem 1rem;
  border-radius: 999px;
  background: #fff;
  color: var(--primary);
  font-weight: 950;
  font-size: 1.1rem;
  box-shadow: 0 8px 24px rgba(17,24,39,.2);
}

.rd-image-price-badge small {
  color: #8898aa;
  font-size: .72rem;
  font-weight: 800;
}

/* desc + specs cards */
.rd-desc-card,
.rd-specs-card {
  background: #fff;
  border: 1px solid #dfe6ee;
  border-radius: 18px;
  padding: 1.75rem;
  box-shadow: 0 8px 28px rgba(17,24,39,.06);
  margin-bottom: 1.5rem;
}

.rd-desc-card h2,
.rd-specs-card h2 {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 900;
  color: #151b24;
  margin-bottom: 1.1rem;
}

.rd-desc-card h2 i,
.rd-specs-card h2 i {
  color: var(--primary);
}

.rd-desc-card p {
  color: #5b6675;
  line-height: 1.8;
  margin: 0;
}

.rd-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
}

.rd-spec-item {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  padding: 1rem 1.1rem;
  background: #f6f8fb;
  border: 1px solid #e8eef5;
  border-radius: 14px;
}

.rd-spec-item i {
  color: var(--primary);
  font-size: 1.15rem;
  margin-bottom: .1rem;
}

.rd-spec-item span {
  font-size: .7rem;
  font-weight: 800;
  color: #8898aa;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.rd-spec-item strong {
  font-size: 1rem;
  font-weight: 900;
  color: #151b24;
}

.rd-spec-item-wide {
  grid-column: 1 / -1;
}

/* price strip */
.rd-price-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: linear-gradient(135deg, #c52638, #e8384a);
  border-radius: 16px;
  padding: 1.1rem 1.4rem;
  margin-bottom: 1rem;
  box-shadow: 0 12px 32px rgba(244,124,32,.3);
}

.rd-price-strip-label {
  font-size: .7rem;
  font-weight: 800;
  color: rgba(255,255,255,.75);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .15rem;
}

.rd-price-strip-val {
  font-size: 1.6rem;
  font-weight: 950;
  color: #fff;
  line-height: 1;
}

.rd-price-strip-val small {
  font-size: .8rem;
  font-weight: 800;
  color: rgba(255,255,255,.7);
}

.rd-wa-pill {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .65rem 1.2rem;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-weight: 900;
  font-size: .88rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s, transform .12s;
  flex-shrink: 0;
}

.rd-wa-pill:hover {
  background: #1fba58;
  color: #fff;
  transform: translateY(-1px);
}

/* booking card */
.rd-booking-card {
  background: #fff;
  border: 1px solid #dfe6ee;
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: 0 16px 48px rgba(17,24,39,.1);
  margin-bottom: 1rem;
}

.rd-booking-head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #edf1f7;
}

.rd-booking-head > i {
  font-size: 1.8rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: .1rem;
}

.rd-booking-head h3 {
  font-size: 1.1rem;
  font-weight: 900;
  color: #151b24;
  margin: 0 0 .2rem;
}

.rd-booking-head p {
  font-size: .85rem;
  color: #8898aa;
  margin: 0;
}

/* form elements */
.rd-booking-form {
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.rd-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}

.rd-form-group {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

.rd-form-group label {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .72rem;
  font-weight: 900;
  color: #5b6675;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.rd-form-group label i {
  color: var(--primary);
  font-size: .82rem;
}

.rd-form-group label .req {
  color: var(--primary);
}

.rd-input {
  width: 100%;
  padding: .65rem .85rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 600;
  color: #151b24;
  background: #f8fafc;
  transition: border-color .18s, box-shadow .18s;
  outline: none;
  font-family: inherit;
  resize: vertical;
}

.rd-input:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(244,124,32,.12);
}

.rd-select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%238898aa' d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .75rem center;
  background-size: 12px;
  padding-right: 2.2rem;
}

.rd-form-error {
  background: rgba(244,124,32,.08);
  border: 1px solid rgba(244,124,32,.25);
  border-radius: 10px;
  padding: .75rem 1rem;
  font-size: .85rem;
  color: var(--primary);
  font-weight: 700;
}

.rd-booking-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  width: 100%;
  padding: .9rem 1.5rem;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #c52638, #e8384a);
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s;
  box-shadow: 0 8px 24px rgba(244,124,32,.3);
  margin-top: .25rem;
  font-family: inherit;
}

.rd-booking-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(244,124,32,.4);
}

.rd-booking-submit:disabled {
  opacity: .65;
}

/* success state */
.rd-booking-success {
  text-align: center;
  padding: 2rem 1rem;
}

.rd-booking-success i {
  font-size: 3rem;
  color: #25a858;
  display: block;
  margin-bottom: .75rem;
}

.rd-booking-success h4 {
  font-weight: 900;
  color: #151b24;
  margin-bottom: .5rem;
}

.rd-booking-success p {
  color: #667284;
  margin: 0;
}

/* quick contact */
.rd-quick-contact {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.rd-qc-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .8rem 1.1rem;
  border-radius: 12px;
  border: 1px solid #e8eef5;
  background: #fff;
  color: #3e4a5a;
  font-size: .88rem;
  font-weight: 700;
  text-decoration: none;
  transition: border-color .15s, background .15s;
}

.rd-qc-item:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(244,124,32,.03);
}

.rd-qc-item i {
  font-size: 1rem;
  color: var(--primary);
  flex-shrink: 0;
}

.rd-qc-back i {
  color: #8898aa;
}

.rd-qc-back:hover i {
  color: var(--primary);
}

@media (max-width: 767px) {
  .rental-detail-hero {
    min-height: 360px;
    padding: 4.25rem 0 2.5rem;
  }
  .rd-specs-grid {
    grid-template-columns: 1fr 1fr;
  }
  .rd-form-row {
    grid-template-columns: 1fr;
  }
  .rd-price-strip {
    flex-direction: column;
    text-align: center;
    gap: .75rem;
  }
  .rd-wa-pill {
    width: 100%;
    justify-content: center;
  }
}

/* ══════════════════════════════════════════════════════════════
   JAPANESE BRANDS SECTION
   ══════════════════════════════════════════════════════════════ */
/* ── Japanese Brands Ticker ──────────────────────────────────── */
.jp-brands-section {
  padding: 2.25rem 0;
  background: #f8fafc;
  border-top: 1px solid #e8eef5;
  overflow: hidden;
}

.jp-brands-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.jp-brands-label {
  display: inline-block;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #b0bccc;
}

/* Ticker wrapper — hides overflow and fades edges */
.jp-brands-ticker-wrap {
  overflow: hidden;
  position: relative;
  /* fade-out on left and right */
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

/* Ticker track — contains two copies of the list */
.jp-brands-ticker {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: jp-scroll 28s linear infinite;
}

.jp-brands-ticker:hover {
  animation-play-state: paused;
}

@keyframes jp-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Individual brand card */
.jp-brand-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .55rem;
  padding: 1.1rem 1.4rem .9rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e8eef5;
  text-decoration: none;
  color: #8898aa;
  flex-shrink: 0;
  transition: transform .2s cubic-bezier(.23,1,.32,1),
              box-shadow .2s ease,
              border-color .2s ease,
              color .15s;
}

.jp-brand-item:hover {
  transform: translateY(-4px);
  border-color: rgba(244,124,32,.28);
  box-shadow: 0 12px 32px rgba(17,24,39,.1);
  color: #c52638;
}

.jp-brand-logo {
  width: 64px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jp-brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(0) brightness(.52);
  transition: filter .2s;
}

.jp-brand-item:hover .jp-brand-logo img {
  filter: saturate(0) brightness(.22);
}

.jp-brand-name {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 575px) {
  .jp-brand-item {
    padding: .9rem 1rem .75rem;
  }
  .jp-brand-logo {
    width: 50px;
    height: 36px;
  }
}

/* ══════════════════════════════════════════════════════════════
   HERO SLIDER — ENHANCEMENT
   ══════════════════════════════════════════════════════════════ */

/* Ensure image fills the slide properly */
.hero-slide-dynamic {
  background-size: cover !important;
  background-position: center center !important;
}

/* Cinematic overlay: bottom vignette + left vignette + red atmospheric glow */
.hero-slide-dynamic::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(6,9,14,.92) 0%, rgba(6,9,14,.5) 38%, rgba(6,9,14,.06) 70%, transparent 100%),
    linear-gradient(to right, rgba(6,9,14,.92) 0%, rgba(6,9,14,.7) 30%, rgba(6,9,14,.28) 60%, transparent 100%),
    radial-gradient(ellipse at 10% 92%, rgba(244,124,32,.38) 0%, transparent 44%);
  pointer-events: none;
}

/* Lighten the original ::after since ::before handles the heavy lifting */
.hero-slide-dynamic::after {
  background:
    radial-gradient(ellipse at 85% 12%, rgba(255,255,255,.04) 0%, transparent 42%) !important;
}

/* Decorative concentric rings — top-right corner */
.hero-deco-ring {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.04);
  z-index: 2;
  pointer-events: none;
}
.hero-deco-ring::before {
  content: '';
  position: absolute;
  inset: 60px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.035);
}
.hero-deco-ring::after {
  content: '';
  position: absolute;
  inset: 120px;
  border-radius: 50%;
  border: 1px solid rgba(244,124,32,.1);
}

/* Red accent line at the very bottom of each slide */
.hero-bottom-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, #ff9a3d 25%, rgba(244,124,32,.25) 65%, transparent 100%);
  z-index: 20;
  pointer-events: none;
}

/* Slide number counter — bottom right */
.hero-slide-num {
  position: absolute;
  bottom: 5rem;
  right: 2.5rem;
  z-index: 10;
  display: flex;
  align-items: baseline;
  gap: .4rem;
  pointer-events: none;
}
.hsn-cur {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  color: #fff;
  letter-spacing: -1px;
}
.hsn-sep {
  font-size: 1rem;
  color: rgba(255,255,255,.25);
  font-weight: 400;
  margin: 0 .1rem;
}
.hsn-tot {
  font-size: .95rem;
  color: rgba(255,255,255,.4);
  font-weight: 700;
}

/* Text entrance animations */
@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}

.carousel-item.active .hero-badge {
  animation: hero-fade-up .55s cubic-bezier(.23,1,.32,1) .1s both;
}
.carousel-item.active .hero-title {
  animation: hero-fade-up .65s cubic-bezier(.23,1,.32,1) .22s both;
}
.carousel-item.active .hero-subtitle {
  animation: hero-fade-up .6s cubic-bezier(.23,1,.32,1) .36s both;
}
.carousel-item.active .hero-stats {
  animation: hero-fade-up .55s cubic-bezier(.23,1,.32,1) .48s both;
}
.carousel-item.active .slide-services-grid {
  animation: hero-fade-up .55s cubic-bezier(.23,1,.32,1) .48s both;
}
.carousel-item.active .hero-slide-actions {
  animation: hero-fade-up .55s cubic-bezier(.23,1,.32,1) .6s both;
}

/* Better nav buttons */
.hero-carousel-btn {
  width: 54px !important;
  height: 54px !important;
  background: rgba(255,255,255,.08) !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  box-shadow: 0 4px 20px rgba(0,0,0,.35) !important;
  transition: all .25s cubic-bezier(.23,1,.32,1) !important;
}
.hero-carousel-btn:hover {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  box-shadow: 0 8px 28px rgba(244,124,32,.5) !important;
  transform: translateY(-50%) scale(1.08) !important;
}

/* Indicators: active one fills like a progress bar */
.hero-indicators button {
  height: 3px !important;
  width: 24px !important;
  border-radius: 3px !important;
  background: rgba(255,255,255,.25) !important;
  transition: width .3s ease !important;
}
.hero-indicators button.active {
  width: 52px !important;
  background: rgba(255,255,255,.25) !important;
  overflow: hidden;
  position: relative;
}
.hero-indicators button.active::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--primary);
  transform: translateX(-100%);
  animation: indicator-fill 6s linear forwards;
}
@keyframes indicator-fill {
  from { transform: translateX(-100%); }
  to   { transform: translateX(0); }
}

/* On small screens hide slide number */
@media (max-width: 767px) {
  .hero-slide-num { display: none; }
  .hero-deco-ring { opacity: .4; }
}

/* ══════════════════════════════════════════════════════════════
   STATS STRIP
   ══════════════════════════════════════════════════════════════ */
.stats-strip {
  background: linear-gradient(135deg, #0d1117 0%, #1a0a0a 40%, #0d1117 100%);
  border-bottom: 1px solid rgba(244,124,32,.18);
  padding: 0;
}

.stats-strip-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 2.5rem 1rem;
}

.sstrip-item {
  flex: 1;
  text-align: center;
  padding: .5rem 1rem;
}

.sstrip-num-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: .1rem;
  line-height: 1;
  margin-bottom: .45rem;
}

.sstrip-num {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  font-variant-numeric: tabular-nums;
}

.sstrip-plus {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.sstrip-label {
  display: block;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}

.sstrip-divider {
  width: 1px;
  height: 52px;
  background: rgba(255,255,255,.08);
  flex-shrink: 0;
}

@media (max-width: 575px) {
  .stats-strip-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .sstrip-divider {
    display: none;
  }
  .sstrip-item {
    border-bottom: 1px solid rgba(255,255,255,.06);
    padding: 1.25rem .5rem;
  }
  .sstrip-item:nth-child(odd) {
    border-right: 1px solid rgba(255,255,255,.06);
  }
}

/* ══════════════════════════════════════════════════════════════
   WHY-US CARD REDESIGN
   ══════════════════════════════════════════════════════════════ */
.why-card {
  position: relative;
  overflow: hidden;
  transition: transform .25s cubic-bezier(.23,1,.32,1), box-shadow .25s ease;
}

.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--why-c, var(--primary)), transparent 60%);
  opacity: 0;
  transition: opacity .3s ease;
  border-radius: inherit;
  pointer-events: none;
}

.why-card:hover::before {
  opacity: .06;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,.18), 0 0 0 1px var(--why-c, var(--primary));
}

.why-icon {
  background: var(--why-bg, rgba(244,124,32,.1)) !important;
  color: var(--why-c, var(--primary)) !important;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-size: 1.45rem;
  margin-bottom: 1.1rem;
  transition: transform .25s ease;
}

.why-card:hover .why-icon {
  transform: scale(1.08) rotate(-3deg);
}

/* ══════════════════════════════════════════════════════════════
   ABOUT VISUAL BLOCK
   ══════════════════════════════════════════════════════════════ */
.avb-wrap {
  position: relative;
  min-height: 340px;
}

.avb-deco-num {
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  font-size: clamp(6rem, 14vw, 10rem);
  font-weight: 900;
  line-height: 1;
  color: var(--primary);
  opacity: .07;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.avb-card {
  position: relative;
  z-index: 1;
  padding: 2rem 1.75rem 1.75rem;
  border-radius: 20px;
  background: linear-gradient(135deg, #fff 0%, #fff4eb 100%);
  border: 1px solid #f3d4bd;
  box-shadow: 0 20px 54px rgba(244,124,32,.1);
}

.avb-icon-row {
  display: flex;
  gap: .75rem;
  margin-bottom: 1.35rem;
}

.avb-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.avb-red   { background: rgba(244,124,32,.12); color: #f47c20; }
.avb-navy  { background: rgba(232,111,26,.1);  color: #e86f1a; }
.avb-amber { background: rgba(217,119,6,.1);  color: #d97706; }

.avb-tagline {
  font-size: 1.22rem;
  font-weight: 800;
  color: #151b24;
  line-height: 1.2;
  margin-bottom: .5rem;
}

.avb-sub {
  margin: 0;
  font-size: .9rem;
  color: #7a8b9a;
  line-height: 1.6;
}

.avb-accent-bar {
  position: absolute;
  left: 0;
  bottom: 2.5rem;
  width: 5px;
  height: 60px;
  border-radius: 0 4px 4px 0;
  background: linear-gradient(180deg, var(--primary), #e86b32);
  z-index: 2;
}

.avb-wrap .about-exp-badge {
  position: absolute;
  right: -1rem;
  bottom: -1rem;
  z-index: 3;
}

/* ══════════════════════════════════════════════════════════════
   FULL-BLEED CTA STRIP
   ══════════════════════════════════════════════════════════════ */
.fb-cta-section {
  padding: 3.5rem 0;
  background: transparent;
}

.fb-cta-inner {
  padding: 3rem 2.5rem;
  border-radius: 24px;
  background: linear-gradient(135deg, #d96516 0%, #f47c20 35%, #b94f0f 70%, #8f3b08 100%);
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(244,124,32,.4);
}

.fb-cta-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255,255,255,.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(255,255,255,.06) 0%, transparent 50%);
  pointer-events: none;
}

.fb-cta-inner::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.08);
  pointer-events: none;
}

.fb-cta-kicker {
  display: inline-flex;
  align-items: center;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-bottom: .75rem;
}

.fb-cta-title {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: .9rem;
}

.fb-cta-title span {
  color: rgba(255,255,255,.55);
}

.fb-cta-sub {
  font-size: .97rem;
  color: rgba(255,255,255,.7);
  line-height: 1.65;
  max-width: 520px;
  margin: 0;
}

.fb-cta-btn-primary {
  background: #fff;
  color: #d96516;
  border: none;
  font-weight: 700;
  padding: .72rem 1.75rem;
  border-radius: 50px;
  transition: var(--transition);
  white-space: nowrap;
}

.fb-cta-btn-primary:hover {
  background: #fff4eb;
  color: #b94f0f;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}

.fb-cta-btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.4);
  font-weight: 700;
  padding: .72rem 1.75rem;
  border-radius: 50px;
  transition: var(--transition);
  white-space: nowrap;
}

.fb-cta-btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.7);
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  .fb-cta-inner {
    padding: 2rem 1.25rem;
    border-radius: 16px;
  }
  .fb-cta-section {
    padding: 2rem 0;
  }
}

/* ══════════════════════════════════════════════════════════════
   WORKING HOURS + CONTACT — REDESIGN
   ══════════════════════════════════════════════════════════════ */
.hc-section { background: #f6f8fb; }

.hc-hours-card,
.hc-info-card {
  background: #fff;
  border: 1px solid #dde3ea;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 8px 32px rgba(17,24,39,.06);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.hc-hours-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, #e86b32 100%);
}

.hc-card-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.hc-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(244,124,32,.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.hc-icon-blue {
  background: rgba(232,111,26,.1) !important;
  color: #e86f1a !important;
}

.hc-card-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #18202b;
  margin-bottom: .3rem;
  line-height: 1.2;
}

.hc-status {
  display: inline-flex;
  align-items: center;
  gap: .38rem;
  font-size: .72rem;
  font-weight: 700;
  padding: .2rem .65rem;
  border-radius: 999px;
}

.hc-open  { background: rgba(5,150,105,.1);  color: #059669; }
.hc-closed { background: rgba(244,124,32,.1); color: var(--primary); }

.hc-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.hc-open .hc-dot {
  animation: hc-pulse 1.8s ease infinite;
}

@keyframes hc-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .3; }
}

.hc-hours-body {
  flex: 1;
  background: #f6f8fb;
  border: 1px solid #e8edf3;
  border-radius: 12px;
  padding: 1.1rem 1.25rem;
  color: #3d4653;
  font-size: .9rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.hc-card-footer {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-top: auto;
}

.hc-btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .65rem 1.25rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .875rem;
  text-decoration: none;
  transition: all .22s ease;
  flex: 1;
  justify-content: center;
  min-width: 120px;
  border: 1.5px solid transparent;
}

.hc-btn-phone {
  background: rgba(244,124,32,.08);
  color: var(--primary);
  border-color: rgba(244,124,32,.2);
}

.hc-btn-phone:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(244,124,32,.3);
}

.hc-btn-wa {
  background: rgba(37,211,102,.08);
  color: #1a9c40;
  border-color: rgba(37,211,102,.28);
}

.hc-btn-wa:hover {
  background: #1a9c40;
  color: #fff;
  border-color: #1a9c40;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(26,156,64,.3);
}

/* Map wrapper */
.hc-map-wrap {
  height: 100%;
  min-height: 220px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #dde3ea;
  box-shadow: 0 8px 32px rgba(17,24,39,.08);
}

.hc-map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 220px;
  display: block;
  border: 0;
}

/* Contact info list */
.hc-info-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  flex: 1;
}

.hc-info-row {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  padding: .9rem 1rem;
  background: #f6f8fb;
  border: 1px solid #e8edf3;
  border-radius: 12px;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.hc-info-row:hover {
  border-color: rgba(244,124,32,.18);
  box-shadow: 0 4px 12px rgba(17,24,39,.06);
}

.hc-info-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(244,124,32,.09);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  flex-shrink: 0;
}

.hc-info-label {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: #8b9aae;
  margin-bottom: .18rem;
}

.hc-info-val {
  font-size: .92rem;
  font-weight: 600;
  color: #18202b;
  line-height: 1.45;
  text-decoration: none;
}

.hc-info-link {
  color: var(--primary);
}

.hc-info-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

@media (max-width: 575px) {
  .hc-btn { min-width: 0; }
  .hc-map-wrap,
  .hc-map-wrap iframe { min-height: 240px; }
}

/* ══════════════════════════════════════════════════════════════
   CTA BANNER — REDESIGN
   ══════════════════════════════════════════════════════════════ */
.cta-banner {
  padding: 3rem 0;
  background: #f6f8fb;
}

.cta-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem 2rem 2rem 2.25rem;
  border-radius: 20px;
  border: 1px solid #dde3ea;
  box-shadow: 0 8px 32px rgba(17,24,39,.06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.cta-card::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  border-radius: 4px 0 0 4px;
  pointer-events: none;
}

.cta-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 52px rgba(17,24,39,.1);
  border-color: transparent;
}

.cta-buy {
  background: linear-gradient(135deg, #fff 0%, #fff4eb 100%);
}
.cta-buy::before  { background: linear-gradient(180deg, var(--primary) 0%, #e86b32 100%); }
.cta-buy:hover    { box-shadow: 0 20px 52px rgba(244,124,32,.12); }

.cta-sell {
  background: linear-gradient(135deg, #fff 0%, #eff6ff 100%);
}
.cta-sell::before { background: linear-gradient(180deg, #e86f1a 0%, #c85f13 100%); }
.cta-sell:hover   { box-shadow: 0 20px 52px rgba(232,111,26,.12); }

.cta-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
}

.cta-buy  .cta-icon { background: rgba(244,124,32,.1);  color: var(--primary); }
.cta-sell .cta-icon { background: rgba(232,111,26,.1);  color: #e86f1a; }

.cta-body { display: flex; flex-direction: column; }

.cta-kicker {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .35rem;
}

.cta-buy  .cta-kicker { color: var(--primary); }
.cta-sell .cta-kicker { color: #e86f1a; }

.cta-card h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #18202b;
  margin-bottom: .4rem;
}

.cta-card p {
  font-size: .875rem;
  color: #697483;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.cta-btn-buy,
.cta-btn-sell {
  display: inline-flex;
  align-items: center;
  padding: .6rem 1.35rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .875rem;
  text-decoration: none;
  transition: all .22s ease;
  align-self: flex-start;
}

.cta-btn-buy {
  background: var(--primary);
  color: #fff;
  border: none;
}
.cta-btn-buy:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(244,124,32,.3);
}

.cta-btn-sell {
  background: #e86f1a;
  color: #fff;
  border: none;
}
.cta-btn-sell:hover {
  background: #c85f13;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(232,111,26,.3);
}

/* ══════════════════════════════════════════════════════════════
   PREMIUM SECTION — DARK + GOLD REDESIGN
   ══════════════════════════════════════════════════════════════ */
.premium-section {
  background: #0d1117 !important;
  position: relative;
}

.premium-section .section-badge {
  background: rgba(243,156,18,.14) !important;
  color: #f5a623 !important;
  border-color: rgba(243,156,18,.28) !important;
}
.premium-section .section-title { color: #fff !important; }
.premium-section .section-sub   { color: rgba(255,255,255,.5) !important; }

.premium-card {
  background: #161c26 !important;
  border: 1px solid rgba(255,255,255,.07) !important;
  border-radius: 18px !important;
  box-shadow: 0 14px 40px rgba(0,0,0,.35) !important;
  overflow: hidden;
}

.premium-card:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(245,166,35,.3) !important;
  box-shadow: 0 28px 64px rgba(0,0,0,.5) !important;
}

.premium-img-wrap { aspect-ratio: 16/10; }

.premium-overlay {
  background: linear-gradient(to top, rgba(0,0,0,.8) 0%, rgba(0,0,0,.2) 50%, transparent 100%) !important;
}

.premium-badge-tag {
  top: .75rem;
  right: .75rem;
  background: linear-gradient(135deg, #f5a623, #e67e22) !important;
  font-size: .6rem !important;
  font-weight: 900 !important;
  letter-spacing: .1em !important;
  padding: .25rem .65rem !important;
  border-radius: 6px !important;
}

.premium-info { padding: 1.35rem !important; }

.premium-brand {
  color: #f5a623 !important;
  font-size: .68rem !important;
  letter-spacing: .14em !important;
}

.premium-title {
  color: #fff !important;
  font-size: 1.15rem !important;
  font-weight: 800 !important;
  margin-bottom: .45rem !important;
}

.premium-price {
  color: #f5c542 !important;
  font-size: 1.2rem !important;
  font-weight: 900 !important;
}

.premium-info .text-muted { color: rgba(255,255,255,.42) !important; }
.premium-info small        { color: rgba(255,255,255,.42) !important; }

.premium-btn {
  background: rgba(245,166,35,.12) !important;
  border: 1px solid rgba(245,166,35,.3) !important;
  color: #f5a623 !important;
  font-weight: 700 !important;
  border-radius: 8px !important;
  transition: all .22s ease !important;
}
.premium-btn:hover {
  background: #f5a623 !important;
  border-color: #f5a623 !important;
  color: #0d1117 !important;
}

/* ══════════════════════════════════════════════════════════════
   TESTIMONIALS — REDESIGN
   ══════════════════════════════════════════════════════════════ */
.testimonials-section { background: #fff !important; }

.testimonial-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff !important;
  border: 1px solid #e8edf3 !important;
  border-radius: 20px !important;
  padding: 1.75rem !important;
  box-shadow: 0 6px 24px rgba(17,24,39,.05) !important;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease !important;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -1rem;
  right: 1.25rem;
  font-size: 7rem;
  line-height: 1;
  color: rgba(244,124,32,.055);
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 900;
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 20px 52px rgba(17,24,39,.1) !important;
  border-color: rgba(244,124,32,.22) !important;
}

.testimonial-stars {
  display: flex;
  align-items: center;
  gap: .2rem;
  margin-bottom: 1rem;
  color: #f5a623 !important;
  font-size: .9rem !important;
}

.testimonial-rating-label {
  font-size: .75rem;
  font-weight: 800;
  color: #f5a623;
  margin-left: .4rem;
}

.testimonial-text {
  font-style: normal !important;
  color: #3d4653 !important;
  font-size: .91rem !important;
  line-height: 1.78 !important;
  margin-bottom: 1.35rem !important;
  flex: 1;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex !important;
  align-items: center !important;
  gap: .75rem !important;
  padding-top: 1rem !important;
  border-top: 1px solid #e8edf3 !important;
  margin-top: auto;
  color: inherit !important;
}

.author-avatar {
  width: 42px !important;
  height: 42px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, var(--primary), #e86b32) !important;
  color: #fff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-weight: 800 !important;
  font-size: .95rem !important;
  flex-shrink: 0;
}

.author-name {
  font-size: .88rem;
  font-weight: 700;
  color: #18202b;
}

.author-tag {
  font-size: .72rem;
  color: #8b9aae;
  font-weight: 600;
}

/* ══════════════════════════════════════════════════════════════
   WHATSAPP CTA — REDESIGN
   ══════════════════════════════════════════════════════════════ */
.wa-cta-section {
  padding: 2.5rem 0 !important;
  background: #f6f8fb !important;
}

.wa-cta-card {
  background: linear-gradient(135deg, #076b2a 0%, #128f38 55%, #19b347 100%) !important;
  border: none !important;
  border-radius: 24px !important;
  padding: 2.25rem 2.5rem !important;
  display: flex !important;
  align-items: center !important;
  gap: 1.75rem !important;
  flex-wrap: wrap !important;
  box-shadow: 0 20px 56px rgba(18,143,56,.28) !important;
  position: relative;
  overflow: hidden;
  color: #fff !important;
}

.wa-cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(255,255,255,.1) 0%, transparent 55%),
    radial-gradient(ellipse at 5% 80%, rgba(0,0,0,.12) 0%, transparent 45%);
  pointer-events: none;
}

.wa-cta-icon {
  font-size: 3.25rem !important;
  color: rgba(255,255,255,.92) !important;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.2));
}

.wa-cta-kicker {
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: .2rem;
}

.wa-cta-card h3 {
  color: #fff !important;
  font-weight: 900 !important;
  font-size: 1.3rem !important;
  margin-bottom: .3rem !important;
}

.wa-cta-card p { color: rgba(255,255,255,.72) !important; }

.wa-cta-body { position: relative; z-index: 1; flex: 1; }

.wa-cta-card .btn-whatsapp { margin-left: auto; position: relative; z-index: 1; }

.btn-whatsapp {
  background: rgba(255,255,255,.15) !important;
  border: 1.5px solid rgba(255,255,255,.38) !important;
  color: #fff !important;
  border-radius: 50px !important;
  padding: .8rem 2rem !important;
  font-weight: 700 !important;
  white-space: nowrap !important;
  backdrop-filter: blur(8px) !important;
  transition: all .22s ease !important;
}

.btn-whatsapp:hover {
  background: #fff !important;
  color: #076b2a !important;
  border-color: #fff !important;
  box-shadow: 0 8px 24px rgba(0,0,0,.18) !important;
  transform: translateY(-2px) !important;
}

@media (max-width: 767px) {
  .wa-cta-card {
    flex-direction: column !important;
    text-align: center !important;
    gap: 1.25rem !important;
  }
  .wa-cta-card .btn-whatsapp { margin-left: 0 !important; }
  .cta-card { flex-direction: column; padding: 1.75rem; }
  .cta-icon { align-self: flex-start; }
}

/* ══════════════════════════════════════════════════════════════
   ABOUT SNIPPET — FULL REDESIGN
   ══════════════════════════════════════════════════════════════ */
.abs-section {
  background: #f6f8fb;
}

/* ── Sol görsel blok ─────────────────────────────────────── */
.abs-visual {
  position: relative;
  min-height: 380px;
}

/* Arka plan dekor daire */
.abs-deco-circle {
  position: absolute;
  top: -40px;
  left: -40px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,124,32,.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Nokta deseni */
.abs-deco-dots {
  position: absolute;
  bottom: 20px;
  right: -10px;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(circle, #dde3ea 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  opacity: .7;
  pointer-events: none;
  z-index: 0;
}

/* Ana kart */
.abs-main-card {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid #e0e7ef;
  border-radius: 22px;
  padding: 1rem 1rem 1.65rem;
  box-shadow: 0 20px 56px rgba(17,24,39,.09);
  margin-right: 1.5rem;
}

.abs-main-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  margin-bottom: 1.25rem;
  background: #edf2f7;
}

.abs-main-media::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(180deg, transparent, rgba(9,14,20,.36));
  pointer-events: none;
}

.abs-main-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.abs-main-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.abs-brand-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), #e86b32);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  flex-shrink: 0;
  box-shadow: 0 8px 22px rgba(244,124,32,.3);
}

.abs-main-label {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #8b9aae;
  margin-bottom: .2rem;
}

.abs-main-title {
  font-size: 1.15rem;
  font-weight: 900;
  color: #18202b;
  line-height: 1.1;
}

.abs-main-divider {
  height: 1px;
  background: #e8edf3;
  margin-bottom: 1.25rem;
}

.abs-mini-stats {
  display: flex;
  align-items: center;
  gap: 0;
}

.abs-mini-stat {
  flex: 1;
  text-align: center;
  padding: .25rem .5rem;
}

.abs-mini-num {
  display: block;
  font-size: 1.65rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: .2rem;
}

.abs-mini-label {
  font-size: .68rem;
  font-weight: 700;
  color: #8b9aae;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.abs-mini-sep {
  width: 1px;
  height: 36px;
  background: #e8edf3;
  flex-shrink: 0;
}

/* Yüzen rozet (alt-sol) */
.abs-badge-card {
  position: absolute;
  bottom: 0;
  left: -1rem;
  z-index: 2;
  background: #fff;
  border: 1px solid #e0e7ef;
  border-radius: 14px;
  padding: .85rem 1.15rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  box-shadow: 0 12px 32px rgba(17,24,39,.1);
}

.abs-badge-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(5,150,105,.1);
  color: #059669;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.abs-badge-title {
  font-size: .82rem;
  font-weight: 800;
  color: #18202b;
  line-height: 1.1;
}

.abs-badge-sub {
  font-size: .7rem;
  color: #8b9aae;
  font-weight: 600;
}

/* ── Sağ içerik ──────────────────────────────────────────── */
.abs-lead {
  font-size: .97rem;
  color: #4b5868;
  line-height: 1.78;
  max-width: 540px;
}

.abs-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.abs-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.1rem;
  background: #fff;
  border: 1px solid #e8edf3;
  border-radius: 14px;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.abs-feature:hover {
  border-color: rgba(244,124,32,.18);
  box-shadow: 0 6px 20px rgba(17,24,39,.07);
  transform: translateX(4px);
}

.abs-feat-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.abs-feat-red   { background: rgba(244,124,32,.1);  color: var(--primary); }
.abs-feat-blue  { background: rgba(232,111,26,.1);  color: #e86f1a; }
.abs-feat-green { background: rgba(5,150,105,.1);  color: #059669; }

.abs-feat-title {
  font-size: .9rem;
  font-weight: 800;
  color: #18202b;
  margin-bottom: .15rem;
}

.abs-feat-desc {
  font-size: .82rem;
  color: #697483;
  line-height: 1.55;
}

@media (max-width: 991px) {
  .abs-main-card { margin-right: 0; }
  .abs-badge-card { left: 0; }
  .abs-visual { min-height: 320px; margin-bottom: 2rem; }
}

@media (max-width: 575px) {
  .abs-mini-num { font-size: 1.35rem; }
  .abs-mini-label { font-size: .62rem; }
}

/* ══════════════════════════════════════════════════════════════
   LEFT CONTACT SIDEBAR — TOGGLEABLE
   ══════════════════════════════════════════════════════════════ */
.lcb-wrap {
  position: fixed;
  left: 0;
  top: 50%;
  z-index: 500;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  transform: translateY(-50%) translateX(calc(-100% + 34px));
  transition: transform .38s cubic-bezier(.23,1,.32,1);
  filter: drop-shadow(4px 6px 20px rgba(17,24,39,.16));
}

.lcb-wrap.is-open {
  transform: translateY(-50%) translateX(0);
}

/* İçerik paneli */
.lcb-inner {
  background: #fff;
  border: 1px solid #e0e7ef;
  border-right: none;
  padding: .7rem .75rem .65rem;
  display: flex;
  flex-direction: column;
  gap: .38rem;
  min-width: 158px;
}

/* Toggle sekme */
.lcb-toggle {
  width: 28px;
  flex-shrink: 0;
  background: var(--primary);
  border: none;
  color: #fff;
  cursor: pointer;
  border-radius: 0 10px 10px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: .75rem .2rem;
  font-size: .95rem;
  transition: background .2s ease;
}

.lcb-tab-label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .12em;
  color: #fff;
  line-height: 1;
}

.lcb-wrap {
  transform: translateY(-50%) translateX(calc(-100% + 28px));
}

.lcb-toggle:hover { background: var(--primary-dark); }

.lcb-ico-close { display: none; }
.is-open .lcb-ico-open  { display: none; }
.is-open .lcb-ico-close { display: block; }

/* Header */
.lcb-header {
  display: flex;
  flex-direction: column;
  gap: .04rem;
  padding-bottom: .4rem;
  border-bottom: 1px solid #e8edf3;
}

.lcb-title {
  font-size: .74rem;
  font-weight: 900;
  color: #18202b;
}

.lcb-sub {
  font-size: .62rem;
  color: #8b9aae;
  font-weight: 600;
}

/* Butonlar */
.lcb-actions {
  display: flex;
  flex-direction: column;
  gap: .22rem;
}

.lcb-action {
  display: flex;
  align-items: center;
  gap: .45rem;
  padding: .35rem .55rem;
  border-radius: 7px;
  font-size: .72rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all .2s ease;
  white-space: nowrap;
}

.lcb-action i { font-size: .82rem; flex-shrink: 0; }

.lcb-wa    { color: #16a34a; background: rgba(22,163,74,.08);   border-color: rgba(22,163,74,.2); }
.lcb-phone { color: var(--primary); background: rgba(244,124,32,.08); border-color: rgba(244,124,32,.2); }
.lcb-ig    { color: #c2185b; background: rgba(194,24,91,.08);   border-color: rgba(194,24,91,.2); }
.lcb-form  { color: #e86f1a; background: rgba(232,111,26,.08);   border-color: rgba(232,111,26,.2); }

.lcb-wa:hover    { background: #16a34a; color: #fff; border-color: #16a34a; transform: translateX(3px); }
.lcb-phone:hover { background: var(--primary); color: #fff; border-color: var(--primary); transform: translateX(3px); }
.lcb-ig:hover    { background: linear-gradient(135deg,#f09433,#dc2743,#bc1888); color: #fff; border-color: transparent; transform: translateX(3px); }
.lcb-form:hover  { background: #e86f1a; color: #fff; border-color: #e86f1a; transform: translateX(3px); }

/* Sosyal medya ikonları */
.lcb-socials {
  display: flex;
  justify-content: center;
  gap: .28rem;
  padding-top: .38rem;
  border-top: 1px solid #e8edf3;
}

.lcb-soc {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: #f6f8fb;
  border: 1px solid #e8edf3;
  color: #8b9aae;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .68rem;
  text-decoration: none;
  transition: all .2s ease;
}

.lcb-soc:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 1199px) {
  .lcb-wrap { display: none; }
}

/* ── Hero-mode: transparent header over hero slider ──────────── */

/* Smooth transition for all header state changes */
.site-header {
  transition: background .38s ease, border-color .38s ease, box-shadow .38s ease;
}

/* Dual logo system: hero logo ↔ dark logo swap */
.navbar-logo { filter: none !important; }

/* Default (scrolled/white navbar): show dark logo, hide hero logo */
.logo-hero { display: none; }
.logo-dark  { display: block; }

/* Hero-mode (transparent over slider): show hero logo, hide dark logo */
.site-header.hero-mode .logo-hero { display: block; }
.site-header.hero-mode .logo-dark  { display: none; }

/* Pages without hero: always show dark logo */
.logo-dark { display: block; }

/* Transparent navbar when overlapping the hero */
.site-header.hero-mode {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom-color: rgba(255,255,255,.1) !important;
  box-shadow: none !important;
}

/* Logo stays in natural colors in hero-mode (glass backing handles visibility) */
.site-header.hero-mode .navbar-logo {
  filter: none !important;
}

.site-header.hero-mode .brand-copy strong {
  color: #fff !important;
}

.site-header.hero-mode .brand-copy small {
  color: rgba(255,255,255,.6) !important;
}

/* Nav links → white */
.site-header.hero-mode .navbar-nav .nav-link {
  color: rgba(255,255,255,.88) !important;
}

.site-header.hero-mode .navbar-nav .nav-link:hover,
.site-header.hero-mode .navbar-nav .nav-link.active {
  color: #fff !important;
}

.site-header.hero-mode .navbar-nav .nav-link::before {
  background: rgba(255,255,255,.65);
}

/* CTA divider line */
.site-header.hero-mode .navbar-ctas {
  border-left-color: rgba(255,255,255,.18);
}

/* Phone button → glass */
.site-header.hero-mode .btn-phone {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.18);
  color: #fff;
}

.site-header.hero-mode .btn-phone-icon {
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
}

.site-header.hero-mode .btn-phone-text strong {
  color: rgba(255,255,255,.9);
}

/* WhatsApp button → green glass */
.site-header.hero-mode .btn-nav-wa {
  background: rgba(37,211,102,.14);
  border-color: rgba(37,211,102,.28);
  color: #5ee89a !important;
}

/* Search button → keep red, boost shadow */
.site-header.hero-mode .btn-header-search {
  box-shadow: 0 8px 24px rgba(244,124,32,.45);
}

/* Mobile toggler → white bars */
.site-header.hero-mode .navbar-toggler {
  border-color: rgba(255,255,255,.28);
}

.site-header.hero-mode .toggler-icon span {
  background: #fff;
}

/* ── Fixed header layout ─────────────────────────────────────── */

/* Header: fixed at top, spans full width */
.site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
}

/* All pages: push main content below the fixed header */
main {
  padding-top: var(--header-h, 112px);
}

/* Homepage: topbar hidden for full-screen hero */
.page-home .topbar {
  display: none !important;
}

/* Homepage: no top padding on main (hero covers from y=0) */
.page-home main {
  padding-top: 0;
}

/* Mobile: topbar hidden, header is only navbar (~67px) */
@media (max-width: 991px) {
  main {
    padding-top: var(--header-h, 67px);
  }
}

/* ── Hero slider: full viewport height ───────────────────────── */
.hero-slider-section,
.hero-section,
.hero-slide,
.hero-slide-1,
.hero-slide-2,
.hero-slide-3,
.min-vh-90 {
  min-height: 100vh !important;
}

/* Hero slide text: inherit original 3rem padding from base rules */

@media (max-width: 991px) {
  .hero-slider-section,
  .hero-section,
  .hero-slide,
  .hero-slide-1,
  .hero-slide-2,
  .hero-slide-3,
  .min-vh-90 {
    min-height: 100vh !important;
  }
}

@media (max-width: 767px) {
  .hero-slider-section,
  .hero-section,
  .hero-slide,
  .hero-slide-1,
  .hero-slide-2,
  .hero-slide-3,
  .min-vh-90 {
    min-height: 100svh !important;
  }
}

/* ── Header right CTAs: more breathing room ──────────────────── */
.navbar-ctas {
  gap: .65rem !important;
  padding-left: 1rem;
}

.btn-header-search {
  padding: .58rem 1.1rem;
  gap: .4rem;
}

.btn-nav-wa {
  padding: .45rem .9rem;
  gap: .4rem;
}

.btn-nav-compare {
  width: 54px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #fff4eb;
  border: 1px solid rgba(244,124,32,.22);
  color: var(--primary);
  font-size: 1rem;
  transition: var(--transition);
}

.btn-nav-compare:hover,
.btn-nav-compare.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 8px 20px rgba(244,124,32,.22);
}

.compare-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .18rem;
  line-height: 1;
}

.compare-icon i {
  font-size: 1.05rem;
}

.compare-icon b {
  width: 1px;
  height: 19px;
  background: currentColor;
  opacity: .45;
  position: relative;
  display: inline-block;
}

.compare-icon b::before,
.compare-icon b::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 5px;
  height: 5px;
  border-top: 1.7px solid currentColor;
  border-right: 1.7px solid currentColor;
}

.compare-icon b::before {
  top: 1px;
  transform: translateX(-50%) rotate(-45deg);
}

.compare-icon b::after {
  bottom: 1px;
  transform: translateX(-50%) rotate(135deg);
}

.btn-phone {
  padding: .45rem .85rem;
  gap: .55rem;
}

/* ── Business Hours (departman bazlı çalışma saatleri) ──────── */
.bh-dept-list {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  flex: 1;
  margin-bottom: 1.25rem;
}

.bh-dept {
  border: 1px solid #e8edf3;
  border-radius: 10px;
  overflow: hidden;
}

.bh-dept-header {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem .75rem;
  background: #f7f9fb;
  border-bottom: 1px solid #e8edf3;
}

.bh-dept-header i { font-size: .85rem; }

.bh-dept-name {
  font-size: .75rem;
  font-weight: 800;
  color: #1a2233;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.bh-table {
  width: 100%;
  border-collapse: collapse;
}

.bh-table tr:not(:last-child) td {
  border-bottom: 1px solid #f0f3f7;
}

.bh-day,
.bh-time {
  padding: .32rem .75rem;
  font-size: .78rem;
  line-height: 1.4;
}

.bh-day {
  color: #5a6780;
  font-weight: 600;
  width: 52%;
}

.bh-time {
  color: #1a2233;
  font-weight: 700;
  text-align: right;
}

.bh-closed {
  color: #dc2626;
  font-weight: 600;
}

/* ── Footer Refresh ───────────────────────────────────────── */
.site-footer {
  position: relative;
  background:
    radial-gradient(circle at top right, rgba(244,124,32,.18), transparent 34%),
    linear-gradient(180deg, #10151d 0%, #0c1118 100%);
  padding: 0 0 1.35rem;
  overflow: hidden;
}

.footer-cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem 1.5rem;
  margin-bottom: 2.75rem;
  background: linear-gradient(135deg, var(--primary), #c85f13);
  color: #fff;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 22px 58px rgba(244,124,32,.22);
}

.footer-cta-strip span {
  display: block;
  color: rgba(255,255,255,.72);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .2rem;
}

.footer-cta-strip h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-weight: 900;
}

.footer-cta-actions {
  display: flex;
  gap: .65rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.footer-cta-actions a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .65rem 1rem;
  border-radius: 999px;
  font-weight: 900;
}

.footer-cta-wa {
  background: #fff;
  color: #128c3a;
}

.footer-cta-contact {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
}

.footer-cta-actions a:hover {
  transform: translateY(-1px);
  color: inherit;
}

.site-footer .footer-grid {
  grid-template-columns: minmax(260px, 1.55fr) .8fr .85fr minmax(260px, 1.15fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  margin-bottom: 2rem;
}

.site-footer .footer-brand {
  max-width: 430px;
}

.footer-tagline {
  color: #fff !important;
  font-weight: 900;
  font-size: 1rem !important;
}

.site-footer .footer-about {
  margin-top: .7rem;
  line-height: 1.75;
}

.footer-trust-list {
  display: grid;
  gap: .45rem;
  margin: 1rem 0 0;
}

.footer-trust-list span {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.74);
  font-size: .86rem;
  font-weight: 700;
}

.footer-trust-list i {
  color: var(--primary-light);
}

.site-footer .footer-col h6 {
  position: relative;
  padding-bottom: .65rem;
  margin-bottom: 1.05rem;
}

.site-footer .footer-col h6::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: var(--primary);
}

.site-footer .footer-col ul li {
  margin-bottom: .62rem;
}

.site-footer .footer-col ul li a {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}

.site-footer .footer-col ul li a::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,.26);
  transition: var(--transition);
}

.site-footer .footer-col ul li a:hover::before {
  background: var(--primary-light);
}

.site-footer .footer-contact li {
  gap: .7rem;
  margin-bottom: .85rem;
}

.site-footer .footer-contact i {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: -.15rem;
  border-radius: 7px;
  background: rgba(244,124,32,.12);
}

.footer-contact-buttons {
  display: flex;
  gap: .55rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.footer-contact-buttons a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .5rem .8rem;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  font-size: .84rem;
  font-weight: 900;
}

.footer-contact-buttons a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.site-footer .footer-bottom {
  padding-top: 1.15rem;
}

.site-footer .footer-legal {
  color: rgba(255,255,255,.52);
}

@media (max-width: 991px) {
  .footer-cta-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-cta-actions {
    width: 100%;
  }

  .footer-cta-actions a {
    flex: 1;
  }

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

@media (max-width: 575px) {
  .footer-cta-strip {
    margin-inline: -12px;
    border-radius: 0;
  }

  .footer-cta-actions {
    flex-direction: column;
  }

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

  .footer-contact-buttons a {
    flex: 1;
  }

  .site-footer .footer-legal,
  .site-footer .footer-links {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* ── Contact Page Refresh ─────────────────────────────────── */
.contact-hero {
  min-height: 460px;
  display: flex;
  align-items: end;
  padding: 6rem 0 3.75rem;
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 2rem;
  align-items: end;
}

.contact-kicker,
.contact-side-head span,
.contact-form-head span,
.contact-map-copy span {
  display: inline-flex;
  align-items: center;
  color: var(--primary-light);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .09em;
}

.contact-hero-copy p {
  max-width: 760px;
  margin: 1rem 0 0;
  color: rgba(255,255,255,.78);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.75;
}

.contact-hero-actions {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.contact-hero-actions .btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
}

.contact-hero-panel {
  padding: 1.25rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 10px;
  backdrop-filter: blur(14px);
}

.contact-hero-panel span {
  display: block;
  color: rgba(255,255,255,.6);
  font-size: .74rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .65rem;
}

.contact-hero-panel a,
.contact-hero-panel div {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  color: #fff;
  font-weight: 750;
  padding: .58rem 0;
}

.contact-hero-panel i {
  color: var(--primary-light);
  margin-top: .15rem;
}

.contact-page-wrap {
  background:
    radial-gradient(circle at top left, rgba(244,124,32,.08), transparent 32%),
    #f6f8fb;
  padding: 4.5rem 0 5rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 390px minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.contact-side,
.contact-form-card-polished,
.contact-success-polished,
.contact-topic-card,
.contact-map-section {
  background: #fff;
  border: 1px solid #e0e7ef;
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(17,24,39,.07);
}

.contact-side {
  padding: 1.35rem;
  position: sticky;
  top: calc(var(--header-h, 112px) + 1rem);
}

.contact-side-head {
  margin-bottom: 1.25rem;
}

.contact-side-head h2,
.contact-form-head h2,
.contact-map-copy h2 {
  margin: .25rem 0 0;
  color: #18202b;
  font-weight: 900;
}

.contact-info-list-polished {
  gap: .85rem;
}

.contact-info-list-polished .contact-info-item {
  padding: .95rem;
  background: #f8fafc;
  border: 1px solid #eef2f6;
  border-radius: 8px;
}

.contact-info-list-polished .contact-info-item a {
  color: #18202b;
  font-weight: 800;
}

.contact-info-icon-wa {
  background: rgba(37,211,102,.12) !important;
  color: #16a34a !important;
}

.contact-hours-card {
  display: flex;
  gap: .85rem;
  margin-top: 1rem;
  padding: 1rem;
  background: linear-gradient(135deg, #fff4eb, #fff);
  border: 1px solid rgba(244,124,32,.18);
  border-radius: 8px;
}

.contact-hours-card > i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
  flex-shrink: 0;
}

.contact-hours-card span {
  display: block;
  color: #697483;
  font-size: .74rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.contact-hours-card strong {
  display: block;
  margin-top: .15rem;
  color: #18202b;
  line-height: 1.45;
}

.contact-social-row {
  display: flex;
  gap: .55rem;
  margin-top: 1rem;
}

.contact-social-row a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #f6f8fb;
  border: 1px solid #e0e7ef;
  color: #697483;
}

.contact-social-row a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.contact-form-card-polished {
  padding: clamp(1.35rem, 3vw, 2.2rem);
}

.contact-form-head {
  margin-bottom: 1.35rem;
}

.contact-form-head p {
  margin: .45rem 0 0;
  color: #697483;
}

.contact-form-card-polished .form-label {
  font-size: .82rem;
  font-weight: 800;
  color: #3d4653;
}

.contact-form-card-polished .form-control,
.contact-form-card-polished .form-select {
  min-height: 48px;
  background: #f8fafc;
  border-color: #dde3ea;
  color: #18202b;
}

.contact-form-card-polished textarea.form-control {
  min-height: 150px;
}

.contact-submit-btn {
  min-height: 48px;
  padding-inline: 1.5rem;
}

.contact-success-polished {
  display: grid;
  place-items: center;
  text-align: center;
  min-height: 420px;
  padding: 2rem;
}

.contact-success-polished i {
  color: #16a34a;
  font-size: 3rem;
  margin-bottom: .75rem;
}

.contact-success-polished h3 {
  color: #18202b;
  font-weight: 900;
}

.contact-success-polished p {
  color: #697483;
  max-width: 460px;
}

.contact-topic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-topic-card {
  padding: 1.25rem;
}

.contact-topic-card > i {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #fff4eb;
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: .9rem;
}

.contact-topic-card h3 {
  color: #18202b;
  font-size: 1rem;
  font-weight: 900;
}

.contact-topic-card p {
  color: #697483;
  margin: .35rem 0 0;
  font-size: .92rem;
}

.contact-map-section {
  margin-top: 1.5rem;
  overflow: hidden;
}

.contact-map-copy {
  padding: 1.25rem 1.35rem;
  border-bottom: 1px solid #e8edf3;
}

.contact-map-frame,
.contact-map-frame iframe {
  width: 100%;
  min-height: 390px;
  border: 0;
}

@media (max-width: 991px) {
  .contact-hero-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-side {
    position: static;
  }

  .contact-topic-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .contact-hero {
    min-height: auto;
    padding: 4.5rem 0 2.5rem;
  }

  .contact-page-wrap {
    padding: 2.5rem 0 3rem;
  }

  .contact-hero-panel {
    padding: 1rem;
  }

  .contact-hero-actions .btn,
  .contact-submit-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ── Vehicle Compare ───────────────────────────────────────── */
.btn-compare-car,
.btn-detail-compare,
.btn-detail-pdf {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  border: 1px solid rgba(244,124,32,.28);
  background: #fff7ef;
  color: var(--primary);
  border-radius: 7px;
  font-weight: 800;
  transition: var(--transition);
}

.btn-compare-car {
  width: 100%;
  min-height: 40px;
  margin-top: .8rem;
  font-size: .84rem;
}

.btn-detail-compare,
.btn-detail-pdf {
  width: 100%;
  min-height: 48px;
  font-size: .95rem;
}

.btn-detail-pdf {
  background: #18202b;
  border-color: #18202b;
  color: #fff;
}

.btn-compare-car:hover,
.btn-detail-compare:hover,
.btn-detail-pdf:hover,
.btn-compare-car.is-selected,
.btn-detail-compare.is-selected {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 10px 24px rgba(244,124,32,.18);
}

.compare-bar {
  position: fixed;
  left: 50%;
  bottom: 20px;
  z-index: 1050;
  width: min(940px, calc(100vw - 28px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .85rem;
  background: rgba(15,20,27,.96);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,.28);
  transform: translate(-50%, 130%);
  opacity: 0;
  pointer-events: none;
  transition: .25s ease;
}

.compare-bar.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}

.compare-bar-main {
  display: flex;
  align-items: center;
  gap: .9rem;
  min-width: 0;
}

.compare-bar-title {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: #fff;
  font-weight: 900;
  white-space: nowrap;
}

.compare-bar-title i { color: var(--primary-light); }

.compare-bar-items {
  display: flex;
  align-items: center;
  gap: .5rem;
  min-width: 0;
}

.compare-bar-item {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  max-width: 250px;
  padding: .42rem .5rem .42rem .7rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
}

.compare-bar-item a {
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.compare-bar-item button {
  border: 0;
  background: rgba(255,255,255,.12);
  color: #fff;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.compare-bar-hint {
  color: rgba(255,255,255,.65);
  font-size: .82rem;
  font-weight: 700;
}

.compare-bar-actions {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-shrink: 0;
}

.compare-bar-clear,
.compare-bar-go {
  border-radius: 999px;
  min-height: 38px;
  padding: .5rem .9rem;
  font-size: .84rem;
  font-weight: 900;
}

.compare-bar-clear {
  border: 1px solid rgba(255,255,255,.18);
  background: transparent;
  color: rgba(255,255,255,.78);
}

.compare-bar-go {
  background: var(--primary);
  border: 1px solid var(--primary);
  color: #fff;
}

.compare-bar-go.is-disabled {
  opacity: .5;
  cursor: not-allowed;
}

.compare-hero-lead {
  color: rgba(255,255,255,.76);
  max-width: 720px;
  margin: .75rem 0 0;
}

.compare-empty,
.compare-table-card,
.compare-feature-card,
.compare-car-card {
  background: #fff;
  border: 1px solid #e0e7ef;
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(17,24,39,.06);
}

.compare-empty {
  text-align: center;
  padding: clamp(2rem, 5vw, 4rem);
}

.compare-empty-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff4eb;
  color: var(--primary);
  font-size: 2rem;
}

.compare-empty h2 {
  font-weight: 900;
  color: #18202b;
}

.compare-empty p {
  color: #697483;
  max-width: 560px;
  margin: .5rem auto 1.5rem;
}

.compare-empty-actions,
.compare-toolbar,
.compare-toolbar-actions {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.compare-empty-actions { justify-content: center; flex-wrap: wrap; }
.compare-toolbar { justify-content: space-between; margin-bottom: 1.25rem; }
.compare-toolbar span {
  color: var(--primary);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.compare-toolbar h2 {
  margin: .15rem 0 0;
  font-weight: 900;
  color: #18202b;
}

.compare-toolbar h2 small {
  color: #8b9aae;
  font-weight: 700;
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.compare-car-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: 180px 1fr;
}

.compare-car-img {
  min-height: 150px;
  background: #eef2f6;
}

.compare-car-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compare-car-body {
  padding: 1rem;
}

.compare-car-body span {
  color: var(--primary);
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.compare-car-body h3 {
  font-size: 1.05rem;
  font-weight: 900;
  margin: .2rem 0 .55rem;
}

.compare-car-body h3 a { color: #18202b; }
.compare-car-body strong { color: var(--primary); font-size: 1.05rem; }

.compare-table-card {
  overflow: auto;
  margin-bottom: 1rem;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.compare-table th,
.compare-table td {
  padding: .9rem 1rem;
  border-bottom: 1px solid #e8edf3;
  vertical-align: top;
}

.compare-table th {
  background: #f7f9fb;
  color: #18202b;
  font-weight: 900;
}

.compare-table td:first-child {
  color: #697483;
  font-weight: 900;
  width: 180px;
}

.compare-table td:not(:first-child) {
  color: #18202b;
  font-weight: 700;
}

.compare-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.compare-feature-card {
  padding: 1.25rem;
}

.compare-feature-card h3 {
  font-size: 1.05rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.compare-feature-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .65rem;
}

.compare-feature-card li {
  display: flex;
  gap: .5rem;
  color: #3d4653;
  font-weight: 650;
}

.compare-feature-card li i {
  color: var(--primary);
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .compare-bar {
    align-items: stretch;
    flex-direction: column;
    bottom: 12px;
  }

  .compare-bar-main,
  .compare-bar-items,
  .compare-bar-actions {
    width: 100%;
  }

  .compare-bar-main,
  .compare-bar-items {
    flex-direction: column;
    align-items: stretch;
  }

  .compare-bar-title { justify-content: center; }
  .compare-bar-item { max-width: none; justify-content: space-between; }
  .compare-bar-actions > * { flex: 1; text-align: center; }
  .compare-toolbar { align-items: flex-start; flex-direction: column; }
  .compare-toolbar-actions { width: 100%; flex-wrap: wrap; }
  .compare-toolbar-actions .btn { flex: 1; }
  .compare-grid,
  .compare-features { grid-template-columns: 1fr; }
  .compare-car-card { grid-template-columns: 1fr; }
  .compare-car-img { height: 190px; }
}

/* Cookie Consent & Site Popup */
.cookie-consent {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 1080;
  width: min(920px, calc(100% - 28px));
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, .98);
  border: 1px solid rgba(244, 124, 32, .22);
  border-radius: 14px;
  box-shadow: 0 20px 55px rgba(18, 25, 36, .2);
  transform: translate(-50%, calc(100% + 28px));
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
}

.cookie-consent.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-consent-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--primary);
  background: rgba(244, 124, 32, .12);
  font-size: 1.25rem;
}

.cookie-consent-copy strong {
  display: block;
  color: #18202b;
  font-weight: 900;
  margin-bottom: .2rem;
}

.cookie-consent-copy p {
  margin: 0;
  color: #5d6978;
  font-size: .92rem;
  line-height: 1.5;
}

.cookie-consent-copy a {
  display: inline-block;
  margin-top: .35rem;
  color: var(--primary);
  font-weight: 800;
  font-size: .9rem;
}

.cookie-consent-actions {
  display: flex;
  align-items: center;
  gap: .55rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-btn {
  border: 0;
  border-radius: 10px;
  padding: .7rem 1rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.cookie-btn-primary {
  color: #fff;
  background: var(--primary);
  box-shadow: 0 10px 22px rgba(244, 124, 32, .28);
}

.cookie-btn-ghost {
  color: #3d4653;
  background: #f2f4f7;
}

.site-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 1090;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(14, 18, 26, .54);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}

.site-popup-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.site-popup-dialog {
  position: relative;
  width: min(520px, 100%);
  padding: 2rem;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(244, 124, 32, .13), rgba(255, 255, 255, 0) 45%),
    #fff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .28);
  transform: translateY(12px) scale(.98);
  transition: transform .22s ease;
}

.site-popup-dialog.has-image {
  width: min(760px, 100%);
  display: grid;
  grid-template-columns: minmax(220px, .85fr) 1fr;
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.site-popup-overlay.is-visible .site-popup-dialog {
  transform: translateY(0) scale(1);
}

.site-popup-media {
  min-height: 100%;
  background: #f3f5f8;
}

.site-popup-media img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  display: block;
}

.site-popup-content {
  padding: 2rem;
}

.site-popup-close {
  position: absolute;
  top: .85rem;
  right: .85rem;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #445063;
  background: rgba(24, 32, 43, .08);
}

.site-popup-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: .35rem .7rem;
  border-radius: 999px;
  color: var(--primary);
  background: rgba(244, 124, 32, .12);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.site-popup-dialog h2 {
  margin: .85rem 2rem .65rem 0;
  color: #18202b;
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 950;
  line-height: 1.12;
}

.site-popup-dialog p {
  margin: 0;
  color: #5d6978;
  line-height: 1.65;
  font-weight: 600;
}

.site-popup-actions {
  display: flex;
  align-items: center;
  gap: .7rem;
  flex-wrap: wrap;
  margin-top: 1.35rem;
}

.site-popup-primary,
.site-popup-secondary {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  padding: .75rem 1rem;
  font-weight: 900;
}

.site-popup-primary {
  color: #fff;
  background: var(--primary);
  box-shadow: 0 12px 26px rgba(244, 124, 32, .3);
}

.site-popup-primary:hover {
  color: #fff;
  background: var(--primary-dark);
}

.site-popup-secondary {
  border: 0;
  color: #3d4653;
  background: #f2f4f7;
}

@media (max-width: 767px) {
  .cookie-consent {
    grid-template-columns: 1fr;
    align-items: flex-start;
    bottom: 12px;
  }

  .cookie-consent-actions,
  .cookie-btn,
  .site-popup-actions,
  .site-popup-primary,
  .site-popup-secondary {
    width: 100%;
  }

  .cookie-consent-actions {
    justify-content: stretch;
  }

  .site-popup-dialog {
    padding: 1.45rem;
    border-radius: 14px;
  }

  .site-popup-dialog.has-image {
    grid-template-columns: 1fr;
    padding: 0;
    max-height: calc(100vh - 28px);
    overflow: auto;
  }

  .site-popup-media img {
    min-height: 180px;
    max-height: 240px;
  }

  .site-popup-content {
    padding: 1.45rem;
  }
}

/* Blog */
.blog-hero {
  min-height: 320px;
  display: flex;
  align-items: center;
  padding: 3.5rem 0 2.5rem;
  background:
    linear-gradient(90deg, rgba(10,14,20,.88), rgba(10,14,20,.60) 55%, rgba(10,14,20,.28)),
    var(--page-hero-img, url("../images/hero-showroom.png")) center/cover no-repeat;
}

.blog-hero .rentals-hero-lead {
  max-width: 680px;
  margin-top: .6rem;
}

.blog-page-wrap {
  padding: 0 0 3rem;
  background:
    linear-gradient(135deg, rgba(244,124,32,.08), transparent 34%),
    linear-gradient(180deg, #f7f9fc 0%, #fff 52%, #f7f9fc 100%);
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 1.75rem;
  align-items: start;
}

.blog-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, .96fr);
  min-height: 430px;
  margin-top: -2.5rem;
  margin-bottom: 2rem;
  overflow: hidden;
  border-radius: 18px;
  position: relative;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(244,124,32,.2), transparent 42%),
    #17202b;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 24px 55px rgba(17,24,39,.16);
}

.blog-featured-media {
  position: relative;
  display: block;
  min-height: 100%;
  overflow: hidden;
}

.blog-featured-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 58%, rgba(23,32,43,.35));
  pointer-events: none;
}

.blog-featured-media img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}

.blog-featured:hover .blog-featured-media img {
  transform: scale(1.035);
}

.blog-featured-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  color: #fff;
}

.blog-featured-kicker {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .55rem;
  margin-bottom: 1.1rem;
}

.blog-featured-kicker span,
.blog-featured-kicker strong,
.blog-section-head small {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem .75rem;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 900;
}

.blog-featured-kicker span {
  background: var(--primary);
  color: #fff;
}

.blog-featured-kicker strong {
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.85);
}

.blog-featured h2 {
  font-size: clamp(1.85rem, 3.4vw, 3.05rem);
  line-height: 1.08;
  font-weight: 950;
  margin: 0 0 1rem;
}

.blog-featured h2 a {
  color: #fff;
}

.blog-featured p {
  color: rgba(255,255,255,.76);
  font-size: 1.02rem;
  line-height: 1.75;
  margin: 0 0 1.4rem;
}

.blog-featured-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,.12);
}

.blog-featured-foot span,
.blog-featured-foot a {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: rgba(255,255,255,.78);
  font-weight: 900;
}

.blog-featured-foot a {
  color: #fff;
}

.blog-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 0 1.1rem;
}

.blog-section-head span {
  display: block;
  color: var(--primary);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: .2rem;
}

.blog-section-head h2 {
  margin: 0;
  color: #17202b;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 950;
}

.blog-section-head small {
  flex: 0 0 auto;
  background: #fff;
  border: 1px solid #e7edf4;
  color: #364254;
  box-shadow: 0 8px 20px rgba(17,24,39,.06);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.blog-card,
.blog-side-card,
.blog-detail-main,
.blog-empty {
  background: #fff;
  border: 1px solid #e7edf4;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(17, 24, 39, .07);
}

.blog-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  border-color: rgba(244,124,32,.34);
  box-shadow: 0 18px 38px rgba(17,24,39,.12);
}

.blog-card-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #eef2f6;
}

.blog-card-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(180deg, transparent, rgba(9,13,19,.48));
  pointer-events: none;
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .28s ease;
}

.blog-card:hover .blog-card-media img {
  transform: scale(1.045);
}

.blog-card-media span,
.blog-detail-cat {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 1;
  display: inline-flex;
  padding: .4rem .7rem;
  border-radius: 999px;
  background: rgba(244, 124, 32, .95);
  color: #fff;
  font-size: .75rem;
  font-weight: 900;
}

.blog-card-body {
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-date,
.blog-detail-meta {
  display: flex;
  align-items: center;
  gap: .45rem;
  color: #7d8a9b;
  font-size: .82rem;
  font-weight: 800;
  margin-bottom: .65rem;
}

.blog-card h2 {
  font-size: 1.24rem;
  font-weight: 900;
  line-height: 1.28;
  margin: 0 0 .65rem;
}

.blog-card h2 a {
  color: #17202b;
}

.blog-card p {
  color: #627083;
  line-height: 1.62;
  margin: 0 0 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-read-more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--primary);
  font-weight: 900;
}

.blog-sidebar {
  display: grid;
  gap: 1rem;
  position: sticky;
  top: calc(var(--header-h, 86px) + 1rem);
}

.blog-side-card {
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
}

.blog-side-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #ffb36f);
}

.blog-side-card h3 {
  font-size: 1.05rem;
  font-weight: 900;
  margin: 0 0 1rem;
  color: #17202b;
}

.blog-mini-list {
  display: grid;
  gap: .85rem;
}

.blog-mini-item {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: .75rem;
  align-items: center;
  padding: .45rem;
  margin: -.45rem;
  border-radius: 12px;
  transition: background .2s ease;
}

.blog-mini-item:hover {
  background: #f6f8fb;
}

.blog-mini-item img {
  width: 76px;
  height: 58px;
  border-radius: 9px;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(17,24,39,.08);
}

.blog-mini-item strong {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #17202b;
  font-size: .9rem;
  line-height: 1.25;
}

.blog-mini-item small {
  color: #7d8a9b;
  font-weight: 800;
}

.blog-side-empty {
  color: #7d8a9b;
  line-height: 1.55;
  margin: 0;
}

.blog-category-list {
  display: grid;
  gap: .55rem;
}

.blog-category-list span {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem .8rem;
  border-radius: 10px;
  background: #f6f8fb;
  color: #364254;
  font-weight: 850;
  transition: background .2s ease, transform .2s ease;
}

.blog-category-list span:hover {
  background: #fff3e9;
  transform: translateX(3px);
}

.blog-category-list strong {
  margin-left: auto;
  color: var(--primary);
}

.blog-contact-card {
  background:
    linear-gradient(135deg, rgba(244,124,32,.2), transparent 48%),
    #17202b;
  color: #fff;
  border-color: #17202b;
}

.blog-contact-card::before {
  background: var(--primary);
}

.blog-contact-card > span {
  color: #ffb36f;
  font-weight: 900;
  text-transform: uppercase;
  font-size: .78rem;
}

.blog-contact-card h3 {
  color: #fff;
  margin-top: .35rem;
}

.blog-contact-card p {
  color: rgba(255,255,255,.72);
  line-height: 1.6;
}

.blog-contact-card a {
  color: #fff;
  font-weight: 900;
}

.blog-pagination {
  display: flex;
  justify-content: center;
  gap: .45rem;
  margin-top: 2rem;
}

.blog-pagination a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #e7edf4;
  color: #364254;
  font-weight: 900;
}

.blog-pagination a.active,
.blog-pagination a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.blog-empty {
  padding: 4rem 1.5rem;
  text-align: center;
  color: #7d8a9b;
}

.blog-empty i {
  font-size: 3rem;
  color: var(--primary);
}

.blog-detail-hero {
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  position: relative;
  padding: 5rem 0 3rem;
  background:
    linear-gradient(180deg, rgba(9,13,19,.45) 0%, rgba(9,13,19,.82) 100%),
    var(--blog-detail-img) center / cover no-repeat;
  color: #fff;
}

.blog-detail-hero .breadcrumb {
  margin-bottom: 1rem;
}

.blog-detail-hero .breadcrumb-item a {
  color: rgba(255,255,255,.65);
  text-decoration: none;
}

.blog-detail-hero .breadcrumb-item.active,
.blog-detail-hero .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,.45);
}

.blog-detail-cat {
  position: static;
  display: inline-flex;
  margin-bottom: .875rem;
  font-size: .72rem;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.blog-detail-hero h1 {
  max-width: 820px;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 0;
}

.blog-detail-meta {
  color: rgba(255,255,255,.68);
  margin-top: .875rem;
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.page-blog-detail .blog-page-wrap {
  padding-top: 2.5rem;
}

.blog-detail-main {
  padding: clamp(1.5rem, 3vw, 2.25rem);
}

.blog-detail-lead {
  font-size: 1.15rem;
  line-height: 1.75;
  color: #364254;
  font-weight: 600;
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 2px solid #eef2f8;
}

.blog-content {
  color: #3e4a5a;
  font-size: 1.04rem;
  line-height: 1.9;
}

.blog-content h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 800;
  color: #1a2535;
  margin: 2rem 0 .75rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid rgba(244,124,32,.2);
}

.blog-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a2535;
  margin: 1.5rem 0 .6rem;
}

.blog-content p {
  margin-bottom: 1.25rem;
}

.blog-content ul,
.blog-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.blog-content li {
  margin-bottom: .4rem;
}

.blog-content strong {
  color: #1a2535;
  font-weight: 700;
}

.blog-content a {
  color: var(--primary);
  text-decoration: underline;
}

.blog-content blockquote {
  border-left: 4px solid var(--primary);
  margin: 1.5rem 0;
  padding: .75rem 1.25rem;
  background: rgba(244,124,32,.06);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #4a5568;
}

@media (max-width: 991px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    position: static;
  }

  .blog-featured {
    grid-template-columns: 1fr;
  }

  .blog-featured-media img {
    min-height: 300px;
  }
}

@media (max-width: 767px) {
  .blog-page-wrap {
    padding: 0 0 2rem;
  }

  .blog-featured {
    margin-top: -1.5rem;
  }

  .blog-hero {
    min-height: 220px;
    padding: 2.5rem 0 2rem;
  }

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

  .blog-featured {
    min-height: 0;
    border-radius: 14px;
  }

  .blog-featured-media img {
    min-height: 230px;
  }

  .blog-featured-body {
    padding: 1.25rem;
  }

  .blog-featured-foot,
  .blog-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .blog-detail-main {
    padding: 1.25rem;
  }

  .blog-detail-hero {
    min-height: 260px;
    padding: 4rem 0 2.25rem;
  }

  .blog-detail-hero h1 {
    font-size: clamp(1.4rem, 5vw, 2rem);
  }

  .page-blog-detail .blog-page-wrap {
    padding-top: 1.5rem;
  }
}

/* ══════════════════════════════════════════════════════════════
   JAPAN IMPORT SECTION
   ══════════════════════════════════════════════════════════════ */
.japan-import-section {
  position: relative;
  padding: 5.5rem 0;
  background: linear-gradient(135deg, #0c1118 0%, #160c0c 45%, #120d0d 100%);
  overflow: hidden;
  border-top: 1px solid rgba(197,38,56,.12);
  border-bottom: 1px solid rgba(197,38,56,.12);
}

.ji-bg-deco {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 75% 50%, rgba(197,38,56,.09) 0%, transparent 52%),
    radial-gradient(ellipse at 25% 80%, rgba(244,124,32,.06) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 10%, rgba(197,38,56,.04) 0%, transparent 40%);
  pointer-events: none;
}

/* Eyebrow row */
.ji-eyebrow {
  display: flex;
  align-items: center;
  gap: .875rem;
  margin-bottom: 1.5rem;
}

.ji-kanji {
  font-size: 2.2rem;
  font-weight: 900;
  color: #c52638;
  line-height: 1;
  text-shadow: 0 0 24px rgba(197,38,56,.45);
  font-family: 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', serif;
}

.ji-sep {
  display: block;
  width: 1px;
  height: 28px;
  background: rgba(197,38,56,.3);
  flex-shrink: 0;
}

.ji-tag-text {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(197,38,56,.85);
}

/* Title */
.ji-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.ji-title span {
  background: linear-gradient(90deg, #c52638, #e84055);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Description */
.ji-desc {
  color: rgba(255,255,255,.68);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 500px;
}

/* Features grid */
.ji-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem 1.5rem;
}

.ji-feat-item {
  display: flex;
  align-items: center;
  gap: .625rem;
  font-size: .875rem;
  font-weight: 600;
  color: rgba(255,255,255,.78);
}

.ji-feat-item i {
  font-size: 1rem;
  color: #c52638;
  flex-shrink: 0;
}

/* Visual / Circular element */
.ji-visual {
  position: relative;
  width: 380px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ji-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(197,38,56,.14);
}

.ji-ring-1 {
  width: 100%;
  height: 100%;
  border-style: dashed;
  animation: ji-spin 25s linear infinite;
}

.ji-ring-2 {
  width: 78%;
  height: 78%;
  border-color: rgba(244,124,32,.1);
  animation: ji-spin 18s linear infinite reverse;
}

.ji-ring-3 {
  width: 58%;
  height: 58%;
  border-color: rgba(197,38,56,.2);
  border-width: 1px;
}

@keyframes ji-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.ji-core {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(197,38,56,.14) 0%, rgba(12,17,24,.9) 60%);
  border: 1px solid rgba(197,38,56,.22);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(197,38,56,.12), inset 0 0 40px rgba(197,38,56,.08);
}

.ji-sun-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(197,38,56,.28) 0%, transparent 58%);
  animation: ji-glow-pulse 3.5s ease-in-out infinite;
}

@keyframes ji-glow-pulse {
  0%, 100% { opacity: .5; transform: scale(.95); }
  50%       { opacity: 1;  transform: scale(1.05); }
}

.ji-core-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}

.ji-core-symbol {
  font-size: 3.2rem;
  font-weight: 900;
  color: rgba(197,38,56,.55);
  line-height: 1;
  font-family: 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', serif;
  text-shadow: 0 0 30px rgba(197,38,56,.3);
  user-select: none;
}

.ji-pills {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.ji-pill {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 7px;
  padding: .35rem .75rem;
  backdrop-filter: blur(8px);
}

.ji-pill-accent {
  background: rgba(197,38,56,.15);
  border-color: rgba(197,38,56,.3);
}

.ji-pill-num {
  font-size: 1rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.ji-pill-accent .ji-pill-num { color: #ff8a96; }

.ji-pill-lbl {
  font-size: .62rem;
  font-weight: 700;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .06em;
  line-height: 1;
}

@media (max-width: 991px) {
  .ji-visual { width: 280px; height: 280px; }
  .ji-core   { width: 180px; height: 180px; }
  .ji-core-symbol { font-size: 2.4rem; }
  .ji-features-grid { grid-template-columns: 1fr; }
}

@media (max-width: 575px) {
  .japan-import-section { padding: 3.5rem 0; }
  .ji-visual { width: 240px; height: 240px; }
  .ji-core   { width: 150px; height: 150px; }
  .ji-core-symbol { font-size: 1.8rem; }
  .ji-title { line-height: 1.15; }
}

/* ══════════════════════════════════════════════════════════════
   JAPANESE BRANDS SECTION — HEADER ENHANCEMENT
   ══════════════════════════════════════════════════════════════ */
.jp-brands-section {
  padding-top: 3rem;
  padding-bottom: 2.75rem;
  background: linear-gradient(180deg, #f6f8fb 0%, #ffffff 100%);
}

.jp-brands-header {
  text-align: center;
  margin-bottom: 1.75rem;
}

.jp-brands-header-inner {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: .5rem;
}

.jp-brands-flag-dot {
  display: block;
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, #c52638, rgba(197,38,56,.3));
}

.jp-brands-flag-dot:last-child {
  background: linear-gradient(90deg, rgba(197,38,56,.3), #c52638);
}

.jp-brands-title-badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #c52638;
  background: rgba(197,38,56,.07);
  border: 1px solid rgba(197,38,56,.18);
  border-radius: 100px;
  padding: .35rem 1rem;
}

.jp-brands-sub {
  font-size: .8rem;
  color: #9aacbf;
  font-weight: 500;
  margin: 0;
  letter-spacing: .02em;
}

/* ══════════════════════════════════════════════════════════════
   TESTIMONIALS — DECORATIVE QUOTE MARKS
   ══════════════════════════════════════════════════════════════ */
.testimonial-card {
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -.5rem;
  right: 1rem;
  font-size: 7rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(244,124,32,.07);
  font-family: Georgia, serif;
  pointer-events: none;
  user-select: none;
}

.testimonial-card:hover::before {
  color: rgba(244,124,32,.12);
}

/* ══════════════════════════════════════════════════════════════
   STATS STRIP — GLOW ENHANCEMENT
   ══════════════════════════════════════════════════════════════ */
.stats-strip {
  border-top: 1px solid rgba(244,124,32,.1);
}

.sstrip-num {
  background: linear-gradient(135deg, #fff 30%, #ff9a3d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sstrip-item:hover .sstrip-num {
  background: linear-gradient(135deg, #ff9a3d 0%, #fff 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

/* ══════════════════════════════════════════════════════════════
   WHY-US SECTION — LIGHT BACKGROUND ACCENT
   ══════════════════════════════════════════════════════════════ */
.why-section {
  background: linear-gradient(180deg, #f6f8fb 0%, #fff8f4 100%);
}

/* ══════════════════════════════════════════════════════════════
   NEW ARRIVALS — HOME SHOWCASE
   ══════════════════════════════════════════════════════════════ */
.new-arrivals-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #10151d 0%, #171f2a 100%);
}

.new-arrivals-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(244,124,32,.18), transparent 34%),
    radial-gradient(circle at 82% 12%, rgba(255,255,255,.08), transparent 28%);
  pointer-events: none;
}

.new-arrivals-section > .container {
  position: relative;
  z-index: 1;
}

.new-arrivals-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  text-align: left;
}

.new-arrivals-header .section-title,
.new-arrivals-header .section-sub {
  color: #fff;
}

.new-arrivals-header .section-sub {
  color: rgba(255,255,255,.72);
}

.new-arrivals-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  min-height: 42px;
  padding: .55rem .9rem;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}

.new-arrivals-link:hover {
  color: #fff;
  border-color: rgba(244,124,32,.55);
  background: rgba(244,124,32,.22);
}

.new-arrivals-grid {
  align-items: stretch;
}

.new-arrivals-grid .car-card {
  height: 100%;
  border-color: rgba(17,24,39,.1);
  box-shadow: 0 18px 48px rgba(17,24,39,.12);
}

.new-arrivals-grid .car-card:hover {
  transform: translateY(-7px);
  border-color: rgba(244,124,32,.42);
  box-shadow: 0 24px 62px rgba(17,24,39,.18);
}

.new-arrivals-grid .badge-new {
  background: linear-gradient(135deg, #f47c20, #ff9a3d);
  color: #fff;
  box-shadow: 0 10px 24px rgba(244,124,32,.32);
}

/* ══════════════════════════════════════════════════════════════
   HOME SERVICES SHOWCASE
   ══════════════════════════════════════════════════════════════ */
.home-services-section {
  background: #f6f8fb;
}

.home-services-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  text-align: left;
}

.home-services-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  min-height: 42px;
  padding: .55rem .9rem;
  border: 1px solid #dfe6ee;
  border-radius: 8px;
  color: #18202b;
  font-weight: 850;
  text-decoration: none;
  background: #fff;
}

.home-services-link:hover {
  color: var(--primary);
  border-color: rgba(244,124,32,.35);
  background: #fff7f1;
}

.home-services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.home-service-card {
  overflow: hidden;
  border: 1px solid #dfe6ee;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(17,24,39,.08);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.home-service-card:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--svc-color) 42%, #dfe6ee);
  box-shadow: 0 20px 52px rgba(17,24,39,.14);
}

.home-service-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10.5;
  overflow: hidden;
  background: #edf2f7;
}

.home-service-media::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(180deg, transparent, rgba(9,14,20,.5));
  pointer-events: none;
}

.home-service-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .28s ease;
}

.home-service-card:hover .home-service-media img {
  transform: scale(1.045);
}

.home-service-media span {
  position: absolute;
  right: .8rem;
  bottom: .8rem;
  z-index: 1;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #fff;
  background: var(--svc-color);
  font-size: 1.25rem;
  box-shadow: 0 12px 26px rgba(17,24,39,.24);
}

.home-service-body {
  padding: 1rem;
}

.home-service-body h3 {
  margin: 0 0 .5rem;
  color: #151b24;
  font-size: 1rem;
  font-weight: 900;
}

.home-service-body p {
  min-height: 4.8em;
  margin: 0 0 .85rem;
  color: #627083;
  font-size: .84rem;
  line-height: 1.6;
}

.home-service-body a {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: var(--svc-color);
  font-size: .84rem;
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 991px) {
  .home-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .new-arrivals-header {
    display: block;
  }

  .new-arrivals-link {
    margin-top: 1rem;
  }

  .home-services-header {
    display: block;
  }

  .home-services-link {
    margin-top: 1rem;
  }
}

@media (max-width: 575px) {
  .home-services-grid {
    grid-template-columns: 1fr;
  }

  .home-service-body p {
    min-height: 0;
  }
}

/* ══════════════════════════════════════════════════════════════
   HERO — ENHANCED DECO RING
   ══════════════════════════════════════════════════════════════ */
.hero-deco-ring::after {
  border-color: rgba(244,124,32,.18);
  box-shadow: 0 0 40px rgba(244,124,32,.06);
}

/* ══════════════════════════════════════════════════════════════
   SECTION BADGE — SUBTLE SHIMMER
   ══════════════════════════════════════════════════════════════ */
.section-badge {
  background: linear-gradient(135deg, #fff5f6 0%, #fff9f5 100%);
  border: 1px solid rgba(244,124,32,.22);
  border-radius: 100px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
}

/* ══════════════════════════════════════════════════════════════
   PREMIUM SECTION — BACKGROUND ENHANCEMENT
   ══════════════════════════════════════════════════════════════ */
.premium-section {
  background: linear-gradient(135deg, #f6f8fb 0%, #fff4f0 100%);
}

/* ══════════════════════════════════════════════════════════════
   HERO SLIDER — ÇARPICI GÖRSEL İYİLEŞTİRMELER
   ══════════════════════════════════════════════════════════════ */

/* ── 1. Ken Burns: arka plan ayrı div'de, içerikten bağımsız zoom ── */
.hero-slide-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--hero-bg, url('../images/hero-showroom.png')) center / cover no-repeat;
  transform-origin: 55% 45%;
  will-change: transform;
  transform: scale(1);
}

/* Slide'ın kendi arka planını kapat (bg-img div üstlendi) */
.hero-slide-dynamic {
  background-image: none !important;
  background-color: #090e15 !important;
}

/* ── 2. Sabit, gecikmesiz sinematik overlay ── */
.hero-slide-dynamic::after {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 4 !important;
  background: radial-gradient(ellipse at 85% 12%, rgba(255,255,255,.04) 0%, transparent 42%) !important;
  pointer-events: none !important;
  opacity: 1;
  animation: none !important;
}

/* ── 3. Sol dikey aksan çizgisi ── */
.hero-slide-dynamic::before {
  /* Mevcut overlay gradientleri koru, sadece sol bar ekle */
  background:
    linear-gradient(to top,    rgba(6,9,14,.94) 0%,  rgba(6,9,14,.52) 36%, rgba(6,9,14,.06) 68%, transparent 100%),
    linear-gradient(to right,  rgba(6,9,14,.92) 0%,  rgba(6,9,14,.70) 28%, rgba(6,9,14,.28) 58%, transparent 100%),
    radial-gradient(ellipse at 10% 90%, rgba(244,124,32,.42) 0%, transparent 42%) !important;
}

/* Sol kenar bar — box-shadow ile */
.hero-slide-dynamic {
  box-shadow: inset 4px 0 0 0 var(--primary) !important;
}

/* ── 4. Deco ring — daha belirgin + yavaş dönüş ── */
.hero-deco-ring {
  border-color: rgba(255,255,255,.08) !important;
  animation: hero-ring-rot 70s linear infinite !important;
}

.hero-deco-ring::before {
  border-color: rgba(255,255,255,.05) !important;
}

.hero-deco-ring::after {
  border-color: rgba(244,124,32,.22) !important;
  box-shadow: 0 0 50px rgba(244,124,32,.1) !important;
}

@keyframes hero-ring-rot {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ── 5. Title ve accent glow ── */
.hero-title {
  text-shadow: 0 2px 48px rgba(0,0,0,.7) !important;
}

.hero-accent {
  text-shadow: 0 0 36px rgba(244,124,32,.5) !important;
}

/* ── 6. Slide counter — aktif rakam turuncu ── */
.hsn-cur {
  color: var(--primary) !important;
  text-shadow: 0 0 20px rgba(244,124,32,.4);
}

/* ── 7. Alt çizgi — glow efekti ── */
.hero-bottom-line {
  height: 2px !important;
  background: linear-gradient(90deg,
    var(--primary) 0%,
    #ff9a3d 28%,
    rgba(244,124,32,.35) 60%,
    transparent 100%) !important;
  box-shadow: 0 0 14px rgba(244,124,32,.7), 0 0 32px rgba(244,124,32,.3) !important;
}

/* ── 8. Slider içeriği gecikmesiz görünsün ── */
.carousel-item.active .hero-badge,
.carousel-item.active .hero-title,
.carousel-item.active .hero-subtitle,
.carousel-item.active .hero-stats,
.carousel-item.active .slide-services-grid,
.carousel-item.active .slide-svc-chip,
.carousel-item.active .hero-slide-actions {
  animation: none !important;
  opacity: 1 !important;
  transform: none !important;
}

/* ── 9. Nav butonları — parlak hover glow ── */
.hero-carousel-btn:hover {
  box-shadow: 0 0 0 4px rgba(244,124,32,.25), 0 8px 28px rgba(244,124,32,.55) !important;
}

/* ── Responsive ── */
@media (max-width: 767px) {
  .hero-slide-dynamic {
    box-shadow: inset 3px 0 0 0 var(--primary) !important;
  }
}
