/* =========================================
   AUTO CARZ — LIGHT MODERN THEME
   acarz.co.uk | Birmingham
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@300;400;600;700;800;900&family=Saira+Condensed:wght@700;900&display=swap');

:root {
  --red:        #E8311A;
  --red-light:  #FEF0EE;
  --red-mid:    #FDDDD9;
  --orange:     #FF7A00;
  --orange-lt:  #FFF4E6;
  --dark:       #0F1117;
  --dark2:      #1C1F28;
  --white:      #FFFFFF;
  --off-white:  #F8F9FC;
  --light-bg:   #F2F4F8;
  --border:     #E4E8F0;
  --border2:    #CBD2E0;
  --text:       #0F1117;
  --text2:      #3D4461;
  --muted:      #6B7394;
  --font-d:     'Saira Condensed', sans-serif;
  --font-b:     'Exo 2', sans-serif;
  --shadow-sm:  0 2px 8px rgba(15,17,23,0.06);
  --shadow-md:  0 8px 32px rgba(15,17,23,0.10);
  --shadow-lg:  0 20px 60px rgba(15,17,23,0.14);
  --shadow-red: 0 8px 32px rgba(232,49,26,0.18);
  --radius:     12px;
  --radius-lg:  20px;
  --radius-xl:  28px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--white);
  color: var(--text);
  font-family: var(--font-b);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-b); }

/* ── ANIMATIONS ── */
@keyframes fadeUp   { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn   { from { opacity:0; } to { opacity:1; } }
@keyframes slideIn  { from { opacity:0; transform:translateX(-20px); } to { opacity:1; transform:translateX(0); } }
@keyframes float    { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes shimmer  { 0%{background-position:-200% 0} 100%{background-position:200% 0} }
@keyframes pulse-r  { 0%,100%{box-shadow:0 0 0 0 rgba(232,49,26,0.4)} 50%{box-shadow:0 0 0 8px rgba(232,49,26,0)} }
@keyframes spin     { to { transform:rotate(360deg); } }
@keyframes gradMove { 0%,100%{background-position:0% 50%} 50%{background-position:100% 50%} }

.animate-fadeup  { animation: fadeUp  0.6s ease both; }
.animate-fadein  { animation: fadeIn  0.5s ease both; }
.animate-float   { animation: float   4s ease-in-out infinite; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ── CONTAINER ── */
.acarz-container { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
.acarz-container-sm { max-width: 900px; margin: 0 auto; padding: 0 32px; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-d); font-weight: 900; line-height: 1.05; color: var(--text); }
h1 { font-size: clamp(42px, 6vw, 80px); }
h2 { font-size: clamp(32px, 4vw, 52px); }
h3 { font-size: 24px; }
h4 { font-size: 18px; font-family: var(--font-b); font-weight: 700; }
p  { font-size: 16px; color: var(--text2); line-height: 1.75; }

.gradient-text {
  background: linear-gradient(135deg, var(--red), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--red); margin-bottom: 14px;
}
.section-label::before {
  content: ''; display: block; width: 24px; height: 2px;
  background: linear-gradient(90deg, var(--red), var(--orange));
  border-radius: 2px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius);
  font-size: 14px; font-weight: 700; border: none;
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
  position: relative; overflow: hidden; cursor: pointer;
  text-decoration: none;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0; transition: opacity 0.2s;
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: #fff;
  box-shadow: var(--shadow-red);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(232,49,26,0.28); }
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
}
.btn-outline:hover { background: var(--red); color: #fff; transform: translateY(-2px); }

.btn-white {
  background: #fff;
  color: var(--red);
  box-shadow: var(--shadow-md);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn-dark {
  background: var(--dark);
  color: #fff;
}
.btn-dark:hover { background: var(--dark2); transform: translateY(-2px); }

.btn-lg { padding: 16px 36px; font-size: 16px; border-radius: 14px; }
.btn-sm { padding: 9px 18px; font-size: 12px; border-radius: 8px; }
.btn-icon { width: 44px; height: 44px; padding: 0; justify-content: center; border-radius: 50%; }

/* ── HEADER ── */
#acarz-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: all 0.3s ease;
}
#acarz-header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(15,17,23,0.08);
}
#acarz-header.top {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 24px;
}

/* Logo */
.site-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-mark {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--red), var(--orange));
  border-radius: 11px; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(232,49,26,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}
.site-logo:hover .logo-mark { transform: scale(1.05); box-shadow: 0 6px 20px rgba(232,49,26,0.4); }
.logo-text-wrap { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: var(--font-d); font-size: 26px; font-weight: 900;
  letter-spacing: 0.5px; color: var(--text);
}
.logo-name .accent { color: var(--red); }
.logo-tagline { font-size: 9px; font-weight: 600; letter-spacing: 3px; color: var(--muted); text-transform: uppercase; margin-top: 2px; }

/* Nav */
.header-nav { display: flex; align-items: center; gap: 2px; }
.header-nav a {
  padding: 8px 16px; border-radius: 8px;
  font-size: 14px; font-weight: 600; color: var(--text2);
  transition: color 0.2s, background 0.2s;
  position: relative;
}
.header-nav a:hover { color: var(--red); background: var(--red-light); }
.header-nav a.active { color: var(--red); }
.header-nav a.active::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 20px; height: 2px; background: var(--red); border-radius: 2px;
}

/* Header right */
.header-right { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.header-phone {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; color: var(--text);
  padding: 8px 14px; border-radius: 8px; background: var(--light-bg);
}
.live-dot {
  width: 8px; height: 8px; background: #22C55E; border-radius: 50%;
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
  0%,100%{box-shadow:0 0 0 0 rgba(34,197,94,0.5)}
  50%{box-shadow:0 0 0 5px rgba(34,197,94,0)}
}

/* Mobile menu toggle */
.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 8px; cursor: pointer;
}
.menu-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: all 0.3s;
}
.mobile-nav {
  display: none; position: absolute; top: 100%; left: 0; right: 0;
  background: #fff; border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-lg); padding: 16px;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block; padding: 12px 16px; border-radius: 8px;
  font-size: 15px; font-weight: 600; color: var(--text2);
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover { background: var(--red-light); color: var(--red); }

/* ── HERO ── */
.hero-section {
  min-height: 100vh; padding-top: 72px;
  background: var(--white);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}
/* Decorative blobs */
.hero-blob-1 {
  position: absolute; top: -100px; right: -100px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,49,26,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-blob-2 {
  position: absolute; bottom: -80px; left: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,122,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}
/* Dot grid */
.hero-dots {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(15,17,23,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  padding: 80px 0;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red-light); border: 1px solid var(--red-mid);
  border-radius: 100px; padding: 6px 14px 6px 8px;
  font-size: 12px; font-weight: 700; color: var(--red);
  margin-bottom: 20px; letter-spacing: 0.3px;
}
.hero-badge-icon {
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg,var(--red),var(--orange));
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: #fff;
}
.hero-title { margin-bottom: 20px; }
.hero-title .line2 { display: block; color: var(--muted); }
.hero-desc { font-size: 17px; color: var(--text2); margin-bottom: 36px; max-width: 460px; }
.hero-actions { display: flex; align-items: center; gap: 16px; margin-bottom: 48px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 0; }
.hero-stat {
  padding: 0 28px;
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 2px;
}
.hero-stat:first-child { padding-left: 0; }
.hero-stat:last-child { border-right: none; }
.stat-num { font-family: var(--font-d); font-size: 34px; font-weight: 900; }
.stat-num.red { color: var(--red); }
.stat-lbl { font-size: 11px; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; font-weight: 600; }

/* Hero visual */
.hero-visual { position: relative; }
.hero-car-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.hero-car-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--red), var(--orange));
}
.hero-car-badge {
  position: absolute; top: 20px; right: 20px;
  background: linear-gradient(135deg,var(--red),var(--orange));
  color: #fff; border-radius: 10px; padding: 8px 14px;
  font-family: var(--font-d); font-size: 20px; font-weight: 900;
}
.hero-car-badge small { display: block; font-family: var(--font-b); font-size: 9px; opacity: 0.85; letter-spacing: 1px; }
.hero-floating-card {
  position: absolute; bottom: -20px; left: -24px;
  background: #fff; border: 1px solid var(--border);
  border-radius: 14px; padding: 12px 16px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px;
  animation: float 4s ease-in-out infinite;
}
.hfc-icon { width: 36px; height: 36px; border-radius: 9px; background: var(--red-light); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.hfc-text strong { display: block; font-size: 13px; font-weight: 700; color: var(--text); }
.hfc-text span { font-size: 11px; color: var(--muted); }
.hero-floating-card2 {
  position: absolute; top: -16px; right: -20px;
  background: #fff; border: 1px solid var(--border);
  border-radius: 14px; padding: 10px 14px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 10px;
  animation: float 4s ease-in-out infinite 2s;
}
.stars { color: #F59E0B; font-size: 13px; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--light-bg); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); padding: 0;
}
.trust-inner {
  display: grid; grid-template-columns: repeat(4,1fr);
}
.trust-item {
  display: flex; align-items: center; gap: 14px;
  padding: 22px 24px;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: var(--white); }
.trust-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: linear-gradient(135deg,var(--red-light),var(--orange-lt));
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
  transition: transform 0.2s;
}
.trust-item:hover .trust-icon { transform: scale(1.08); }
.trust-text strong { display: block; font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 1px; }
.trust-text span { font-size: 12px; color: var(--muted); }

/* ── SECTION GENERIC ── */
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.section-dark { background: var(--dark); }
.section-light { background: var(--light-bg); }
.section-white { background: var(--white); }
.section-header { margin-bottom: 52px; }
.section-header.center { text-align: center; }
.section-header p { font-size: 17px; margin-top: 12px; max-width: 560px; }
.section-header.center p { margin: 12px auto 0; }

/* ── STOCK SECTION ── */
.stock-filters {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin-bottom: 32px; padding: 16px 20px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
}
.stock-search {
  flex: 1; min-width: 180px;
  padding: 10px 14px 10px 38px; border-radius: 8px;
  border: 1px solid var(--border); font-family: var(--font-b); font-size: 13px;
  background: var(--light-bg) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236B7394' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3C/svg%3E") no-repeat 12px center;
  outline: none; color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.stock-search:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(232,49,26,0.08); }
.stock-select {
  padding: 10px 32px 10px 12px; border-radius: 8px;
  border: 1px solid var(--border); font-family: var(--font-b); font-size: 13px;
  background: var(--light-bg) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%236B7394' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 10px center;
  appearance: none; outline: none; color: var(--text);
  transition: border-color 0.2s;
  cursor: pointer;
}
.stock-select:focus { border-color: var(--red); }
.stock-count { margin-left: auto; font-size: 13px; color: var(--muted); white-space: nowrap; }
.stock-count strong { color: var(--text); }
.btn-reset-filter {
  padding: 10px 14px; border-radius: 8px; border: 1px solid var(--border);
  background: transparent; color: var(--muted); font-size: 12px; font-weight: 600;
  font-family: var(--font-b); transition: all 0.2s; cursor: pointer;
}
.btn-reset-filter:hover { border-color: var(--red); color: var(--red); }

/* Sort tabs */
.sort-tabs { display: flex; gap: 8px; margin-bottom: 24px; }
.sort-tab {
  padding: 7px 16px; border-radius: 20px; border: 1px solid var(--border);
  font-size: 12px; font-weight: 600; color: var(--muted); background: transparent;
  cursor: pointer; transition: all 0.2s; font-family: var(--font-b);
}
.sort-tab:hover { border-color: var(--red); color: var(--red); background: var(--red-light); }
.sort-tab.active { background: var(--red); color: #fff; border-color: var(--red); box-shadow: var(--shadow-red); }

/* Car Grid */
.car-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(300px,1fr)); gap: 24px; }

/* Car Card */
.car-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  cursor: pointer;
  position: relative;
}
.car-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(232,49,26,0.3);
}
.car-card:hover .car-img-inner { transform: scale(1.03); }

.car-img-wrap { position: relative; height: 210px; overflow: hidden; background: var(--light-bg); }
.car-img-inner {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  padding: 20px 16px 8px;
  transition: transform 0.4s ease;
}
.car-img-gradient {
  position: absolute; bottom: 0; left: 0; right: 0; height: 60px;
  background: linear-gradient(to top, rgba(242,244,248,0.8), transparent);
}
.car-badges-wrap {
  position: absolute; top: 12px; left: 12px;
  display: flex; flex-direction: column; gap: 5px;
}
.cbadge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 9px; border-radius: 6px;
  font-size: 10px; font-weight: 700; backdrop-filter: blur(8px);
}
.cbadge-hpi    { background: rgba(34,197,94,0.92); color: #fff; }
.cbadge-diesel { background: rgba(37,99,235,0.88); color: #fff; }
.cbadge-petrol { background: rgba(22,163,74,0.88); color: #fff; }
.cbadge-hybrid { background: rgba(139,92,246,0.88); color: #fff; }
.cbadge-body   { background: rgba(255,255,255,0.88); color: var(--text2); border: 1px solid var(--border); }

.car-price-bubble {
  position: absolute; bottom: 12px; right: 12px;
  background: linear-gradient(135deg,var(--red),var(--orange));
  color: #fff; border-radius: 10px; padding: 7px 13px;
  box-shadow: 0 4px 16px rgba(232,49,26,0.3);
}
.car-price-bubble .price-main { font-family: var(--font-d); font-size: 22px; font-weight: 900; display: block; }
.car-price-bubble .price-mo   { font-size: 10px; opacity: 0.88; display: block; }

/* Card body */
.car-card-body { padding: 18px 20px 20px; }
.car-make-tag { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; color: var(--red); text-transform: uppercase; margin-bottom: 4px; }
.car-card-title { font-family: var(--font-d); font-size: 21px; font-weight: 900; color: var(--text); line-height: 1.1; margin-bottom: 14px; }
.car-specs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 16px; }
.cs-item { display: flex; flex-direction: column; gap: 1px; }
.cs-lbl { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; }
.cs-val { font-size: 13px; font-weight: 700; color: var(--text); }
.colour-pip { display: inline-block; width: 11px; height: 11px; border-radius: 50%; margin-right: 5px; vertical-align: middle; border: 1px solid rgba(0,0,0,0.1); }
.card-divider { border: none; border-top: 1px solid var(--border); margin: 0 0 14px; }
.car-card-actions { display: flex; gap: 10px; }
.card-btn-enquire {
  flex: 1; padding: 11px; border-radius: 9px; border: none;
  background: linear-gradient(135deg,var(--red),var(--orange));
  color: #fff; font-weight: 700; font-size: 13px; font-family: var(--font-b);
  transition: opacity 0.2s, transform 0.15s; cursor: pointer;
  box-shadow: 0 4px 14px rgba(232,49,26,0.22);
}
.card-btn-enquire:hover { opacity: 0.9; transform: translateY(-1px); }
.card-btn-call {
  padding: 11px 16px; border-radius: 9px; border: 1px solid var(--border);
  background: var(--light-bg); color: var(--text); font-weight: 600; font-size: 13px;
  font-family: var(--font-b); transition: all 0.2s; cursor: pointer;
}
.card-btn-call:hover { border-color: var(--red); color: var(--red); background: var(--red-light); }

/* No results */
.no-cars { grid-column: 1/-1; text-align: center; padding: 80px 20px; }
.no-cars-icon { font-size: 52px; margin-bottom: 16px; }
.no-cars h3 { font-size: 22px; margin-bottom: 8px; }
.no-cars p { color: var(--muted); }

/* ── FINANCE CALCULATOR ── */
.finance-calc {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
  position: relative; overflow: hidden;
}
.finance-calc::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg,var(--red),var(--orange));
}
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.calc-field { margin-bottom: 24px; }
.calc-label { display: flex; justify-content: space-between; align-items: center; font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.calc-value { font-size: 14px; font-weight: 900; color: var(--red); }
.calc-slider {
  width: 100%; -webkit-appearance: none; appearance: none;
  height: 5px; border-radius: 5px; outline: none; cursor: pointer;
  background: linear-gradient(to right, var(--red) 0%, var(--red) 50%, var(--border) 50%, var(--border) 100%);
  transition: background 0.1s;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg,var(--red),var(--orange));
  cursor: pointer; box-shadow: 0 2px 10px rgba(232,49,26,0.4);
  border: 3px solid #fff; transition: transform 0.15s;
}
.calc-slider::-webkit-slider-thumb:hover { transform: scale(1.15); }
.calc-result {
  background: linear-gradient(135deg,var(--dark),var(--dark2));
  border-radius: var(--radius-lg); padding: 32px;
  color: #fff; text-align: center;
}
.calc-monthly-label { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 8px; letter-spacing: 1px; text-transform: uppercase; }
.calc-monthly-val { font-family: var(--font-d); font-size: 64px; font-weight: 900; line-height: 1; margin-bottom: 4px; }
.calc-monthly-val .unit { font-size: 36px; }
.calc-per-mo { font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 24px; }
.calc-breakdown { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.calc-row { display: flex; justify-content: space-between; font-size: 13px; }
.calc-row span:first-child { color: rgba(255,255,255,0.55); }
.calc-row span:last-child { font-weight: 700; }
.calc-divider-line { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin: 4px 0; }
.calc-disclaimer { font-size: 11px; color: rgba(255,255,255,0.35); line-height: 1.5; margin-top: 16px; }

/* ── WHY CHOOSE US ── */
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.why-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 28px;
  transition: all 0.3s;
  position: relative; overflow: hidden;
}
.why-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg,var(--red),var(--orange));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why-card:hover::after { transform: scaleX(1); }
.why-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--red-light); display: flex; align-items: center;
  justify-content: center; font-size: 26px; margin-bottom: 20px;
  transition: transform 0.2s;
}
.why-card:hover .why-icon { transform: scale(1.1); }
.why-card h3 { font-size: 20px; margin-bottom: 10px; font-family: var(--font-b); font-weight: 700; }
.why-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── REVIEWS ── */
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.review-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  transition: all 0.3s;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review-stars { color: #F59E0B; font-size: 15px; margin-bottom: 14px; }
.review-text { font-size: 14px; color: var(--text2); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg,var(--red),var(--orange));
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: #fff;
  font-family: var(--font-d);
}
.review-name { font-size: 14px; font-weight: 700; color: var(--text); }
.review-date { font-size: 11px; color: var(--muted); }
.google-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--light-bg); border: 1px solid var(--border);
  border-radius: 8px; padding: 8px 14px; font-size: 12px; font-weight: 600;
  color: var(--text2); margin-top: 8px;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--dark) 0%, #1a0a06 100%);
  border-radius: var(--radius-xl); padding: 60px;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,49,26,0.15) 0%, transparent 70%);
}
.cta-banner::after {
  content: ''; position: absolute; bottom: -30%; left: -5%;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,122,0,0.1) 0%, transparent 70%);
}
.cta-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-text h2 { color: #fff; margin-bottom: 12px; }
.cta-text p  { color: rgba(255,255,255,0.6); font-size: 16px; }
.cta-actions { display: flex; gap: 14px; flex-shrink: 0; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-form-wrap {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 40px;
  box-shadow: var(--shadow-md);
}
.form-field { margin-bottom: 20px; }
.form-label { display: block; font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 12px 16px; border-radius: 10px;
  border: 1.5px solid var(--border); font-family: var(--font-b); font-size: 14px;
  color: var(--text); background: var(--light-bg); outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--red); background: #fff;
  box-shadow: 0 0 0 3px rgba(232,49,26,0.08);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.ci-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--red-light); display: flex; align-items: center;
  justify-content: center; font-size: 22px; flex-shrink: 0;
}
.ci-text strong { display: block; font-size: 15px; font-weight: 700; margin-bottom: 3px; }
.ci-text span { font-size: 14px; color: var(--muted); }
.hours-table { width: 100%; border-collapse: collapse; margin-top: 8px; }
.hours-table td { padding: 4px 0; font-size: 13px; color: var(--text2); }
.hours-table td:last-child { text-align: right; font-weight: 600; }
.map-wrap {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); height: 200px;
  background: var(--light-bg); display: flex; align-items: center;
  justify-content: center; margin-top: 20px;
}
.map-placeholder { text-align: center; color: var(--muted); }
.map-placeholder .map-icon { font-size: 36px; margin-bottom: 8px; }
.map-placeholder a { color: var(--red); font-size: 13px; font-weight: 600; }

/* ── FOOTER ── */
.site-footer {
  background: var(--dark); color: #fff;
  padding: 64px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.75; margin: 16px 0 24px; max-width: 280px; }
.footer-socials { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px; border-radius: 9px;
  border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center;
  justify-content: center; font-size: 14px; font-weight: 700; color: rgba(255,255,255,0.5);
  transition: all 0.2s;
}
.social-link:hover { border-color: var(--red); color: var(--red); background: rgba(232,49,26,0.1); }
.footer-col h5 { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 20px; font-family: var(--font-b); }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--orange); }
.footer-contact-item { display: flex; flex-direction: column; gap: 3px; margin-bottom: 16px; }
.fci-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.35); font-weight: 700; }
.fci-val { font-size: 14px; color: rgba(255,255,255,0.75); }
.fci-val a { color: rgba(255,255,255,0.75); transition: color 0.2s; }
.fci-val a:hover { color: var(--orange); }
.footer-bottom {
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; color: rgba(255,255,255,0.3);
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-legal a:hover { color: var(--orange); }

/* ── MODAL / ENQUIRY ── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(15,17,23,0.6); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: #fff; border-radius: var(--radius-xl);
  padding: 40px; max-width: 520px; width: 100%;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px); transition: transform 0.3s;
  position: relative;
}
.modal-overlay.open .modal-box { transform: translateY(0); }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--border);
  background: var(--light-bg); color: var(--muted); font-size: 16px;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: all 0.2s;
}
.modal-close:hover { background: var(--red); color: #fff; border-color: var(--red); }
.modal-car-title { font-family: var(--font-d); font-size: 22px; font-weight: 900; margin-bottom: 4px; }
.modal-car-price { font-size: 18px; font-weight: 900; color: var(--red); margin-bottom: 24px; }

/* ── NOTIFICATION / TOAST ── */
.toast {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  background: var(--dark); color: #fff; border-radius: 12px;
  padding: 14px 20px; font-size: 14px; font-weight: 600;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-lg); transform: translateY(80px);
  opacity: 0; transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  max-width: 340px;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast-icon { font-size: 20px; }
.toast-success { border-left: 4px solid #22C55E; }
.toast-error   { border-left: 4px solid var(--red); }

/* ── SCROLL TO TOP ── */
.scroll-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 500;
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg,var(--red),var(--orange));
  color: #fff; font-size: 18px; border: none;
  box-shadow: var(--shadow-red); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(12px);
  transition: all 0.3s; pointer-events: none;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.scroll-top:hover { transform: translateY(-2px); }

/* ── ELEMENTOR OVERRIDES ── */
.elementor-page #acarz-header { position: fixed !important; }
.elementor-section { position: relative; }
.elementor-widget-wrap { position: relative; }
body.elementor-editor-active .hero-dots { display: none; }

/* Page hero (inner pages) */
.page-hero-wrap {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, var(--light-bg) 0%, #fff 100%);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.page-hero-wrap::before {
  content:''; position:absolute; top:-40px; right:-60px;
  width:300px; height:300px; border-radius:50%;
  background: radial-gradient(circle, rgba(232,49,26,0.06) 0%, transparent 70%);
}
.page-hero-wrap h1 { font-size: clamp(36px,5vw,60px); margin-bottom: 8px; }
.page-hero-wrap p  { font-size: 16px; color: var(--muted); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .calc-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .acarz-container { padding: 0 16px; }
  .header-nav, .header-phone { display: none; }
  .menu-toggle { display: flex; }
  .trust-inner { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .hero-stat { border-right: none; border-bottom: 1px solid var(--border); padding: 0 0 16px; }
  .hero-stat:last-child { border-bottom: none; padding-bottom: 0; }
  .section { padding: 60px 0; }
  .finance-calc { padding: 24px; }
  .contact-form-wrap { padding: 24px; }
  .cta-banner { padding: 36px 24px; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .stock-filters { flex-direction: column; align-items: stretch; }
  .stock-count { margin-left: 0; }
}
@media (max-width: 480px) {
  .trust-inner { grid-template-columns: 1fr; }
  .car-grid { grid-template-columns: 1fr; }
}
