@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap");

:root {
  --ace-navy: #0c1f3f;
  --ace-navy-light: #142851;
  --ace-navy-mid: #1e3a6a;
  --ace-red: #d50000;
  --ace-red-dark: #b71c1c;
  --ace-red-light: #ef5350;
  --ace-gold: #ffffff;
  --ace-gold-light: #ffc947;
  --ace-white: #ffffff;
  --ace-off-white: #f8faff;
  --ace-light-bg: #f0f4fb;
  --ace-gray: #6b7280;
  --ace-gray-light: #e5e9f2;
  --ace-gray-dark: #374151;
  --ace-text: #1a2332;
  --ace-text-muted: #6b7280;
  --ace-border: #dce3f0;
  --font-display: "Poppins", sans-serif;
  --font-body: "Inter", sans-serif;
  --shadow-sm: 0 2px 8px rgba(12, 31, 63, 0.08);
  --shadow-md: 0 4px 20px rgba(12, 31, 63, 0.12);
  --shadow-lg: 0 8px 40px rgba(12, 31, 63, 0.18);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --radius-pill: 100px;
  --transition: all 0.25s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ace-text);
  background: var(--ace-white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  font-family: inherit;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── TOPBAR ── */
.topbar {
  background: var(--ace-navy);
  padding: 8px 0;
  font-size: 0.78rem;
  border-bottom: 2px solid var(--ace-red);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.topbar-left a,
.topbar-right a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 5px;
}
.topbar-left a:hover,
.topbar-right a:hover {
  color: var(--ace-gray-light);
}
.topbar-left span {
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  gap: 5px;
}
.topbar-right a.social-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}
.topbar-right a.social-icon:hover {
  background: var(--ace-red);
  color: white;
}

/* ── NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 900;
  background: #0a0a0a;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow 0.3s ease;
}
.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}
.navbar .container {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-img {
  height: 25px;
  width: auto;
  object-fit: contain;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.logo-text span {
  color: var(--ace-red);
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}
.nav-links > li {
  position: relative;
}
.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 22px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.2px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: #fff;
}
.nav-links > li > a.active {
  border-bottom: 2px solid var(--ace-red);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  background: #111;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  min-width: 200px;
  padding: 8px 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: all 0.2s ease;
}
.nav-links > li:hover .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  transition: var(--transition);
}
.dropdown a:hover {
  background: rgba(255,255,255,0.06);
  color: white;
  padding-left: 22px;
}
.dropdown a i {
  width: 16px;
  color: var(--ace-red);
  font-size: 0.78rem;
}

.nav-cta {
  flex-shrink: 0;
}
.btn-book-drive {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--ace-red);
  color: white;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  border: 2px solid var(--ace-red);
  transition: var(--transition);
}
.btn-book-drive:hover {
  background: var(--ace-red-dark);
  border-color: var(--ace-red-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(213, 0, 0, 0.35);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: #0a0a0a;
  z-index: 1100;
  box-shadow: -4px 0 32px rgba(0,0,0,0.6);
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  padding: 24px 0 60px;
}
.sidebar.open {
  right: 0;
}
.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12, 31, 63, 0.55);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.sidebar-overlay.show {
  opacity: 1;
  pointer-events: all;
}
.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 16px;
}
.sidebar-header > div { color: white !important; }
.sidebar-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: white;
  cursor: pointer;
}
.sidebar-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.sidebar-links a:hover {
  background: rgba(255,255,255,0.05);
  color: white;
}
.sidebar-sub {
  display: none;
  background: rgba(255,255,255,0.03);
}
.sidebar-sub.open {
  display: block;
}
.sidebar-sub a {
  padding-left: 36px;
  font-size: 0.82rem;
  font-weight: 600;
}
.sidebar-cta {
  padding: 20px;
  margin-top: 12px;
}
.sidebar-cta a {
  display: block;
  text-align: center;
  background: var(--ace-red);
  color: white;
  padding: 14px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.9rem;
}

/* ── HERO SLIDER ── */
.hero-slider {
  position: relative;
  overflow: hidden;
  background: var(--ace-navy);
  height: min(94vh, 700px);
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.hero-slide.active {
  opacity: 1;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-content {
  position: absolute;
  left: 8%;
  bottom: 14%;
  z-index: 10;
  max-width: 600px;
}
.hero-eyebrow {
  display: inline-block;
  background: var(--ace-red);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 600;
  color: white;
  line-height: 1.1;
  margin-bottom: 14px;
}
.hero-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 28px;
  font-weight: 400;
  max-width: 460px;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ace-red);
  color: white;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 700;
  border: 2px solid var(--ace-red);
  transition: var(--transition);
}
.btn-hero-primary:hover {
  background: var(--ace-red-dark);
  border-color: var(--ace-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(213, 0, 0, 0.4);
}
.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: white;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 700;
  border: 2px solid rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}
.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: white;
}

/* Slider controls */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.slider-btn:hover {
  background: var(--ace-red);
  border-color: var(--ace-red);
}
.slider-btn.prev {
  left: 20px;
}
.slider-btn.next {
  right: 20px;
}
.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 8px;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  transition: var(--transition);
  cursor: pointer;
}
.slider-dot.active {
  width: 24px;
  border-radius: 4px;
  background: white;
}

/* ── QUICK ACTIONS ── */
.quick-actions {
  background: black;
  padding: 0;
}
.quick-actions .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.qa-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.301);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}
.qa-item:last-child {
  border-right: none;
}
.qa-item:hover {
  background: rgba(255, 255, 255, 0.05);
}
.qa-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(213, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ace-red);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.qa-item:hover .qa-icon {
  background: var(--ace-red);
  color: white;
}
.qa-text {
  flex: 1;
}
.qa-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.qa-title {
  font-size: 0.92rem;
  color: white;
  font-weight: 600;
}

/* ── SECTION COMMON ── */
.section {
  padding: 80px 0;
}
.section-alt {
  padding: 80px 0;
  background: var(--ace-off-white);
}
.section-dark {
  padding: 80px 0;
  background: var(--ace-navy);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ace-red);
  margin-bottom: 12px;
}
.section-tag::before {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: var(--ace-red);
  border-radius: 2px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--ace-navy);
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-title.light {
  color: white;
}
.section-sub {
  font-size: 1rem;
  color: var(--ace-text-muted);
  max-width: 560px;
  line-height: 1.7;
}
.section-sub.light {
  color: rgba(255, 255, 255, 0.65);
}
.section-header {
  margin-bottom: 52px;
}
.section-header.center {
  text-align: center;
}
.section-header.center .section-tag {
  justify-content: center;
}
.section-header.center .section-tag::before {
  display: none;
}
.section-header.center .section-sub {
  margin: 0 auto;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ace-red);
  color: white;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 700;
  border: 2px solid var(--ace-red);
  transition: var(--transition);
}
.btn-primary:hover {
  background: var(--ace-red-dark);
  border-color: var(--ace-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(213, 0, 0, 0.35);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ace-navy);
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 700;
  border: 2px solid var(--ace-navy);
  transition: var(--transition);
}
.btn-outline:hover {
  background: var(--ace-navy);
  color: white;
}
.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: white;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 700;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}
.btn-outline-light:hover {
  background: white;
  color: var(--ace-navy);
  border-color: white;
}
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ace-gold);
  color: var(--ace-navy);
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 700;
  border: 2px solid var(--ace-gold);
  transition: var(--transition);
}
.btn-gold:hover {
  background: var(--ace-gold-light);
  transform: translateY(-2px);
}

/* — Expert Connect & Test Drive (model pages) — */
.btn-ec {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  color: var(--ace-navy);
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  border: 2px solid var(--ace-navy);
  transition: var(--transition);
}
.btn-ec:hover {
  background: var(--ace-navy);
  color: white;
}
.btn-td {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--ace-red);
  color: white;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  border: 2px solid var(--ace-red);
  transition: var(--transition);
}
.btn-td:hover {
  background: var(--ace-red-dark);
  border-color: var(--ace-red-dark);
}
.btn-test-drive {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--ace-red);
  color: white;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  border: 2px solid var(--ace-red);
  transition: var(--transition);
}
.btn-test-drive:hover {
  background: var(--ace-red-dark);
}

/* ── CARS LINEUP ── */
.cars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.car-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 10px rgba(12, 31, 63, 0.08);
  border: 1px solid #e4eaf5;
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}
.car-card::before {
  content: "";
  display: block;
  height: 3px;
  background: var(--ace-red);
  flex-shrink: 0;
}
.car-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(12, 31, 63, 0.14);
  border-color: #c8d2e8;
}
.car-card-img {
  background: #fff;
  padding: 24px 20px 10px;
  text-align: center;
  position: relative;
  border-bottom: 1px solid #f0f3fa;
}
.car-card-img img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.car-card:hover .car-card-img img {
  transform: scale(1.04);
}
.car-card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--ace-red);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: 4px;
  text-transform: uppercase;
}
.car-card-tag.hybrid {
  background: var(--ace-navy);
}
.car-card-body {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.car-card-name {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--ace-navy);
  margin-bottom: 2px;
}
.car-card-type {
  font-size: 0.72rem;
  color: var(--ace-text-muted);
  margin-bottom: 14px;
}
.car-card-specs {
  display: flex;
  border: 1px solid #e8edf7;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 14px;
}
.car-spec {
  flex: 1;
  text-align: center;
  padding: 9px 4px;
  border-right: 1px solid #e8edf7;
  background: #f7f9fd;
}
.car-spec:last-child {
  border-right: none;
}
.car-spec-val {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ace-navy);
  line-height: 1.2;
}
.car-spec-key {
  font-size: 0.62rem;
  color: var(--ace-text-muted);
  margin-top: 2px;
}
.car-price {
  font-size: 0.74rem;
  color: var(--ace-text-muted);
  margin-bottom: 14px;
  margin-top: auto;
}
.car-price strong {
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--ace-navy);
}
.car-card-btns {
  display: flex;
  gap: 8px;
}
.car-card-btns .btn-ec,
.car-card-btns .btn-td {
  flex: 1;
  justify-content: center;
  font-size: 0.75rem;
  padding: 9px 10px;
  border-radius: 8px;
}
.car-card-btns .btn-ec {
  background: #fff;
  color: var(--ace-navy);
  border: 1.5px solid #d0d9ec;
}
.car-card-btns .btn-ec:hover {
  background: var(--ace-navy);
  color: #fff;
  border-color: var(--ace-navy);
}
.car-card-btns .btn-td {
  background: var(--ace-red);
  color: #fff;
  border: 1.5px solid var(--ace-red);
}
.car-card-btns .btn-td:hover {
  background: var(--ace-red-dark);
  border-color: var(--ace-red-dark);
}

/* ── Offer Modal ── */
.offer-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.offer-modal-overlay.active {
  display: flex;
}
.offer-modal {
  background: #fff;
  border-radius: 16px;
  padding: 48px 44px 44px;
  width: 90%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.2);
  animation: offerSlideIn 0.25s ease;
}
@keyframes offerSlideIn {
  from {
    transform: translateY(24px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.offer-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  color: #777;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  transition: color 0.2s;
}
.offer-modal-close:hover {
  color: var(--ace-red);
}
.offer-modal-eyebrow {
  font-size: 15px;
  color: #444;
  font-weight: 400;
  margin-bottom: 6px;
}
.offer-modal-amount {
  font-family: var(--font-display);
  font-size: 33px;
  font-weight: 600;
  color: var(--ace-navy);
  letter-spacing: 1px;
  line-height: 1.1;
  margin-bottom: 6px;
}
.offer-modal-name {
  font-size: 15px;
  color: #555;
  font-weight: 400;
  margin-bottom: 28px;
}
.offer-modal-divider {
  border: none;
  border-top: 1px solid #e8e8e8;
  margin-bottom: 22px;
}
.offer-modal-benefit {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  color: #333;
  font-weight: 400;
}
.offer-modal-benefit svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: #888;
}
/* Offers badge — matches thecentralhonda .offers-badge */
.offers-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: white;
  border: 1.5px solid var(--ace-red);
  color: var(--ace-red);
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: var(--transition);
  z-index: 2;
  font-family: var(--font-body);
}
.offers-badge svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.offers-badge:hover {
  background: var(--ace-red);
  color: white;
}
.offer-amount {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--ace-red);
  margin-bottom: 6px;
}
.offer-note {
  font-size: 0.76rem;
  color: var(--ace-text-muted);
  margin-bottom: 24px;
}

/* ── STATS BAR ── */
.stats-bar {
  background: #1a0b0b;
  padding: 16px 0;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.stat-item:last-child {
  border-right: none;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 2.2rem);
  font-weight: 600;
  color: white;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-num span {
  color: var(--ace-gold);
}
.stat-lbl {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
}

/* ── WHY CHOOSE US ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--ace-border);
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--ace-red);
}
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(213, 0, 0, 0.1) 0%,
    rgba(213, 0, 0, 0.05) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--ace-red);
  margin-bottom: 20px;
  transition: var(--transition);
}
.feature-card:hover .feature-icon {
  background: var(--ace-red);
  color: white;
}
.feature-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ace-navy);
  margin-bottom: 8px;
}
.feature-desc {
  font-size: 0.85rem;
  color: var(--ace-text-muted);
  line-height: 1.65;
}

/* ── ABOUT STRIP ── */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img-wrap {
  position: relative;

  overflow: hidden;
}
.about-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.about-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: white;
  border-radius: var(--radius);
  padding: 16px 22px;
  box-shadow: var(--shadow-md);
}
.about-badge-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--ace-red);
  line-height: 1;
}
.about-badge-txt {
  font-size: 0.76rem;
  color: var(--ace-text-muted);
  margin-top: 2px;
}
.about-content .section-sub {
  max-width: 100%;
  margin-bottom: 28px;
}
.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.about-hl {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.about-hl i {
  color: var(--ace-red);
  margin-top: 3px;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.about-hl span {
  font-size: 0.88rem;
  color: var(--ace-gray-dark);
  line-height: 1.55;
}

/* ── TESTIMONIALS ── */
.testimonials-wrap {
  overflow: hidden;
}
.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease;
}
.testimonial-card {
  flex-shrink: 0;
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--ace-border);
  position: relative;
}
.testimonial-card::before {
  content: "\201C";
  font-family: Georgia, serif;
  font-size: 4rem;
  color: var(--ace-red);
  opacity: 0.15;
  position: absolute;
  top: 12px;
  left: 22px;
  line-height: 1;
}
.t-stars {
  color: var(--ace-gold);
  margin-bottom: 12px;
  font-size: 0.9rem;
}
.t-text {
  font-size: 0.88rem;
  color: var(--ace-gray-dark);
  line-height: 1.7;
  margin-bottom: 18px;
}
.t-author {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ace-navy);
}
.t-car {
  font-size: 0.76rem;
  color: var(--ace-text-muted);
  margin-top: 2px;
}
.testimonial-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}
.testimonial-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--ace-border);
  background: white;
  color: var(--ace-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  transition: var(--transition);
}
.testimonial-btn:hover {
  background: var(--ace-navy);
  color: white;
  border-color: var(--ace-navy);
}

/* ── CTA SECTION ── */
.cta-section {
  background:
    linear-gradient(rgba(20, 78, 109, 0.791), rgba(4, 2, 2, 0.744)),
    url("../images/footer-bg1-small1.webp");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  padding: 50px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: white;
  margin-bottom: 14px;
}
.cta-sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  margin-bottom: 36px;
}
.cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── FOOTER ── */
footer {
  background:
    linear-gradient(rgba(255, 0, 0, 0.6), rgba(4, 2, 2, 0.6)),
    url("../images/footer-bg1-small1.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  padding: 60px 0 0;
  color: rgba(255, 255, 255, 0.6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand {
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-logo-h {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--ace-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  color: white;
}
.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
}
.footer-logo-text span {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
}
.footer-desc {
  font-size: 0.82rem;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
  transition: var(--transition);
}
.social-btn:hover {
  background: var(--ace-red);
  border-color: var(--ace-red);
  color: white;
}
.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links li a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.928);
  transition: var(--transition);
}
.footer-links li a:hover {
  color: black;
  padding-left: 4px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-contact-item .icon {
  color: var(--ace-white);
  margin-top: 2px;
  flex-shrink: 0;
  font-size: 0.85rem;
}
.footer-contact-item span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.835);
  line-height: 1.5;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  font-size: 0.76rem;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom-links {
  display: flex;
  gap: 16px;
}
.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.45);
  transition: var(--transition);
}
.footer-bottom-links a:hover {
  color: var(--ace-gold);
}

/* ── FLOATING CONTACT ── */
.floating-contact {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 800;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
  border: none;
}
.float-btn:hover {
  transform: scale(1.1);
}
.float-whatsapp {
  background: #25d366;
}
.float-whatsapp:hover {
  background: #1da856;
}
.float-call {
  background: var(--ace-red);
}
.float-call:hover {
  background: var(--ace-red-dark);
}
.prive{
   background:
    linear-gradient(rgba(7, 6, 6, 0.64), rgb(0 0 0)),
    url(../images/privacy.jpeg) !important;
}
/* ── PAGE HERO ── */
.page-hero {
  background:
    linear-gradient(rgba(7, 6, 6, 0.64), rgb(0 0 0)),
    url(../images/footer-bg1-small1.webp);

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  padding: 50px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 80% 50%,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 60%
  );
  pointer-events: none;
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero-breadcrumb {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.page-hero-breadcrumb a {
  color: var(--ace-gold);
}
.page-hero-breadcrumb::after {
  content: "/";
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 2.5rem);
  font-weight: 600;
  color: white;
  line-height: 1.15;
  margin-bottom: 14px;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  max-width: 560px;
}

/* ── POPUP (Test Drive / Enquiry) ── */
.pop-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 14, 17, 0.72);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.pop-overlay.open {
  display: flex;
}
.pop-box {
  background: white;
  border-radius: var(--radius);
  width: 100%;
  max-width: 500px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.pop-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 24px 20px;
  border-bottom: 1px solid var(--ace-border);
  background: var(--ace-off-white);
}
.pop-head h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ace-navy);
}
.pop-head p {
  font-size: 0.78rem;
  color: var(--ace-text-muted);
  margin-top: 2px;
}
.pop-x {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--ace-gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--ace-gray-dark);
  flex-shrink: 0;
}
.pop-body {
  padding: 24px;
}
.pg {
  margin-bottom: 14px;
}
.pg label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ace-gray-dark);
  margin-bottom: 6px;
}
.pg input,
.pg select,
.pg textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--ace-border);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-family: inherit;
  color: var(--ace-text);
  outline: none;
  transition: border-color 0.2s;
  background: white;
}
.pg input:focus,
.pg select:focus,
.pg textarea:focus {
  border-color: var(--ace-navy);
}
.pg2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.pop-note {
  font-size: 0.72rem;
  color: var(--ace-text-muted);
  padding: 14px 24px;
  background: var(--ace-off-white);
  display: flex;
  align-items: center;
  gap: 7px;
}
.pop-note i {
  color: var(--ace-red);
}

/* ── FAQ ACCORDION ── */
.faq-item {
  border-bottom: 1px solid var(--ace-border);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ace-navy);
  transition: var(--transition);
}
.faq-q:hover {
  color: var(--ace-red);
}
.faq-q i {
  transition: transform 0.3s;
  flex-shrink: 0;
  color: var(--ace-text-muted);
  font-size: 0.78rem;
}
.faq-item.open .faq-q i {
  transform: rotate(180deg);
  color: var(--ace-red);
}
.faq-a {
  display: none;
  padding: 0 0 18px;
  font-size: 0.88rem;
  color: var(--ace-text-muted);
  line-height: 1.7;
}
.faq-item.open .faq-a {
  display: block;
}

/* ── SECTION EYEBROW (model page compat) ── */
.sec-eyebrow {
  margin-bottom: 8px;
}
.sec-eyebrow span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ace-red);
}
.sec-hd {
  text-align: center;
  margin-bottom: 48px;
}
.sec-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--ace-navy);
  margin-bottom: 10px;
}
.sec-sub {
  font-size: 0.92rem;
  color: var(--ace-text-muted);
  max-width: 560px;
  margin: 0 auto;
}
.other-section {
  padding: 60px 0;
  background: var(--ace-off-white);
}
.other-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.other-card {
  background: white;
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  border: 1px solid var(--ace-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.other-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.other-card img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  margin-bottom: 14px;
}
.other-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ace-navy);
  margin-bottom: 4px;
}
.other-card p {
  font-size: 0.82rem;
  color: var(--ace-text-muted);
  margin-bottom: 16px;
}
.oc-btns {
  display: flex;
  gap: 8px;
}
.oc-btns .btn-ec,
.oc-btns .btn-td,
.oc-btns a {
  flex: 1;
  text-align: center;
  justify-content: center;
  font-size: 0.75rem;
  padding: 9px 10px;
}

/* ── SPEC TICKER ── */
.spec-ticker {
  background: var(--ace-navy);
  overflow: hidden;
}
.spec-ticker-inner {
  display: flex;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.st-item {
  flex: 1;
  text-align: center;
  padding: 18px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.st-item:last-child {
  border-right: none;
}
.st-val {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}
.st-key {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── FADE-UP ANIMATION ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: none;
}
.fade-up.delay-1 {
  transition-delay: 0.1s;
}
.fade-up.delay-2 {
  transition-delay: 0.2s;
}
.fade-up.delay-3 {
  transition-delay: 0.3s;
}
.fade-up.delay-4 {
  transition-delay: 0.4s;
}
.fade-up.delay-5 {
  transition-delay: 0.5s;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .about-strip {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .about-img-wrap img {
    height: 320px;
  }
  .cars-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .section,
  .section-alt,
  .section-dark {
    padding: 52px 0;
  }
  .quick-actions .container {
    grid-template-columns: 1fr 1fr;
  }
  .stats-row {
    grid-template-columns: 1fr 1fr;
  }
  .stat-item:nth-child(2n) { border-right: none; }
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.15); }
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .other-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .cars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-slider {
    height: min(60vw, 440px);
  }
  .section-title {
    font-size: 1.4rem;
  }
  .brochure-grid {
    flex-wrap: wrap;
  }
  .brochure-item {
    flex: 1 1 calc(50% - 8px);
    min-width: 0;
  }
  .deal-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .about-strip {
    gap: 28px;
  }
}

@media (max-width: 540px) {
  .quick-actions .container {
    grid-template-columns: 1fr 1fr;
  }
  .qa-item {
    padding: 14px 12px;
    gap: 8px;
    flex-direction: column;
    align-items: flex-start;
    border-right: none;
    border-bottom: none;
  }
  .qa-item:nth-child(1),
  .qa-item:nth-child(3) {
    border-right: 1px solid rgba(255,255,255,0.08);
  }
  .qa-item:nth-child(1),
  .qa-item:nth-child(2) {
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .qa-icon {
    width: 38px;
    height: 38px;
    font-size: 0.95rem;
    border-radius: 10px;
  }
  .qa-title {
    font-size: 0.8rem;
    line-height: 1.3;
  }
  .qa-item > i:last-child {
    display: none;
  }
  .stats-row {
    grid-template-columns: 1fr 1fr;
  }
  .cars-grid {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .pg2 {
    grid-template-columns: 1fr;
  }
  .section,
  .section-alt,
  .section-dark {
    padding: 40px 0;
  }
  .container {
    padding: 0 16px;
  }
  .section-title {
    font-size: 1.25rem;
  }
  .section-sub {
    font-size: 0.83rem;
  }
  .deal-grid {
    grid-template-columns: 1fr !important;
  }
  .brochure-item {
    flex: 1 1 100%;
  }
  .hero-slider {
    height: 52vw;
    min-height: 200px;
  }
  .offer-modal {
    padding: 36px 24px 28px;
  }
  .offer-modal-amount {
    font-size: 36px;
  }
  .spec-ticker-inner {
    flex-wrap: wrap;
  }
  .st-item {
    flex: 0 0 50%;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .quick-actions .container {
    grid-template-columns: 1fr 1fr;
  }
  .qa-item {
    padding: 14px 10px;
    gap: 8px;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    border-right: none;
    border-bottom: none;
  }
  .qa-item:nth-child(1),
  .qa-item:nth-child(3) {
    border-right: 1px solid rgba(255,255,255,0.08);
  }
  .qa-item:nth-child(1),
  .qa-item:nth-child(2) {
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .qa-icon {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
    border-radius: 8px;
  }
  .qa-title {
    font-size: 0.78rem;
    line-height: 1.3;
    white-space: normal;
  }
  .qa-item > i:last-child {
    display: none;
  }
  .deal-grid {
    grid-template-columns: 1fr !important;
  }
  .brochure-grid {
    flex-direction: column;
  }
  .brochure-item {
    flex: 1 1 100%;
  }
}

/* 2-column grid override — responsive */
.grid-2col { grid-template-columns: repeat(2, 1fr) !important; }
@media (max-width: 640px) { .grid-2col { grid-template-columns: 1fr !important; } }

/* Deal-in grid */
.deal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Deal card */
.deal-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: white;
  border-radius: var(--radius);
  padding: 24px 22px;
  border: 1px solid var(--ace-border);
  border-top: 3px solid var(--ace-red);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: var(--transition);
}
.deal-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--ace-red);
  border-top-color: var(--ace-red);
}
.deal-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(213, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--ace-red);
  flex-shrink: 0;
  transition: var(--transition);
}
.deal-card:hover .deal-card-icon {
  background: var(--ace-red);
  color: white;
}
.deal-card-body {
  flex: 1;
  min-width: 0;
}
.deal-card-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ace-navy);
  margin-bottom: 6px;
}
.deal-card-desc {
  font-size: 0.8rem;
  color: var(--ace-text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}
.deal-card-link {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ace-red);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* ── Press Release Carousel ─────────────────────── */
.pr-carousel-wrap {
  position: relative;
  padding: 0 52px;
}
.pr-carousel-viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.pr-carousel-track {
  display: flex;
  gap: 0;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.pr-card {
  flex: 0 0 100%;
  background: var(--ace-red);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-sizing: border-box;
  min-height: 160px;
}
.pr-card-date {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.pr-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}
.pr-card-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
  flex: 1;
}
.pr-card-link {
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 2px;
  width: fit-content;
}
.pr-card-link:hover {
  border-color: #fff;
}
.pr-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--ace-navy);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.pr-arrow:hover {
  background: var(--ace-red);
}
.pr-prev {
  left: 0;
}
.pr-next {
  right: 0;
}
@media (max-width: 600px) {
  .pr-carousel-wrap {
    padding: 0 40px;
  }
  .pr-card {
    padding: 28px 20px;
  }
}

/* ── BROCHURE DROPDOWN ─────────────────── */
.brochure-panel {
  display: none;
  background: #fff;
  border-top: 3px solid var(--ace-red);
  box-shadow: 0 12px 40px rgba(12, 31, 63, 0.14);
  padding: 28px 0 32px;
}
.brochure-panel.open {
  display: block;
}
.brochure-panel-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ace-text-muted);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.brochure-panel-title i {
  color: var(--ace-red);
}
.brochure-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.brochure-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  border: 1.5px solid #e4eaf5;
  border-radius: 12px;
  background: #f8faff;
  text-decoration: none;
  flex: 1;
  min-width: 130px;
  transition: all 0.2s ease;
}
.brochure-item:hover {
  border-color: var(--ace-red);
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(213, 0, 0, 0.1);
}
.brochure-item img {
  width: 100%;
  max-width: 120px;
  height: 70px;
  object-fit: contain;
}
.brochure-name {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ace-navy);
  text-align: center;
}
.brochure-dl {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ace-red);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ── PRESS INFORMATION (Editorial) ────── */
.press-section {
  background:
    linear-gradient(rgba(0, 0, 0, 0.832), rgba(0, 0, 0, 0.67)),
    url("../images/footer-bg1-small1.webp");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;

  padding: 72px 0;
}
.press-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}
.press-label {
  display: inline-block;
  background: rgba(213, 0, 0, 0.2);
  color: var(--ace-red);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.press-heading {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}
.press-heading span {
  color: var(--ace-red);
}
.press-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 2px;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}
.press-view-all:hover {
  color: #fff;
}
.press-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 20px;
}
/* Featured */
.press-featured {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.press-featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}
.press-feat-img {
  background: #f0f3fa;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.press-feat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 16px;
  transition: transform 0.4s ease;
}
.press-featured:hover .press-feat-img img {
  transform: scale(1.04);
}
.press-feat-body {
  padding: 24px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.press-feat-body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ace-navy);
  line-height: 1.35;
}
.press-feat-body p {
  font-size: 0.85rem;
  color: var(--ace-gray);
  line-height: 1.7;
  flex: 1;
}
/* Category tag */
.press-cat {
  display: inline-block;
  background: var(--ace-red);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
  width: fit-content;
}
.press-date-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--ace-text-muted);
  font-weight: 600;
  margin-top: 4px;
}
.press-date-tag i {
  color: var(--ace-red);
}
/* Sidebar mini articles */
.press-sidebar {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.press-mini {
  display: flex;
  gap: 14px;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px 16px;
  text-decoration: none;
  transition:
    background 0.2s,
    border-color 0.2s;
  flex: 1;
}
.press-mini:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(213, 0, 0, 0.4);
}
.press-mini-img {
  width: 72px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}
.press-mini-img img {
  width: 60px;
  height: 40px;
  object-fit: contain;
}
.press-mini-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.press-mini-body h4 {
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}
.press-mini .press-date-tag {
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 960px) {
  .press-layout {
    grid-template-columns: 1fr;
  }
  .press-sidebar {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .press-mini {
    flex: 1 1 calc(50% - 6px);
  }
}
@media (max-width: 600px) {
  .press-mini {
    flex: 1 1 100%;
  }
  .press-heading {
    font-size: 1.5rem;
  }
  .brochure-grid {
    flex-direction: column;
  }
}

/* ── Press / Blog Cards ─────────────────────────────── */
.press-card{background:white;border:1.5px solid var(--ace-border);border-radius:var(--radius-lg,20px);overflow:hidden;box-shadow:var(--shadow-sm);transition:var(--transition)}
.press-card:hover{box-shadow:var(--shadow-lg,0 16px 48px rgba(12,31,63,.14));transform:translateY(-4px)}
.press-card-img{height:160px;overflow:hidden;background:var(--ace-off-white)}
.press-card-img img{width:100%;height:100%;object-fit:cover;transition:transform .4s}
.press-card:hover .press-card-img img{transform:scale(1.06)}
.press-card-body{padding:20px}
.press-date{font-size:.68rem;color:var(--ace-text-muted);font-weight:600;text-transform:uppercase;letter-spacing:.5px;margin-bottom:8px}
.press-title{font-family:var(--font-display);font-size:.95rem;font-weight:700;color:var(--ace-navy);margin-bottom:8px;line-height:1.4}
.press-excerpt{font-size:.78rem;color:var(--ace-text-muted);line-height:1.65;margin-bottom:14px}
.press-tag{display:inline-block;background:var(--ace-off-white);border:1px solid var(--ace-border);border-radius:20px;font-size:.65rem;padding:3px 10px;color:var(--ace-gray-dark);margin-bottom:10px;font-weight:600}
.press-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
@media(max-width:900px){.press-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:580px){.press-grid{grid-template-columns:1fr}}
@media(max-width:768px){#homePresGrid{grid-template-columns:repeat(2,1fr) !important}}
@media(max-width:540px){#homePresGrid{grid-template-columns:1fr !important}}
