:root {
  --primary: #083b66;
  --secondary: #0b5fa5;
  --accent: #ff8a00;
  --dark: #111827;
  --muted: #6b7280;
  --light: #f5f8fb;
  --success: #16a34a;
  --danger: #d90429;
  --border: #e5e7eb;
  --text: #1f2937;
  --ep-line: #e2e8f0;
  --ep-primary: #083b66;
  --ep-secondary: #0b5fa5;
  --ep-accent: #ff8a00;
  --ep-accent-dark: #ff6500;
  --ep-success: #16a34a;
  --ep-dark: #111827;
  --ep-muted: #64748b;
  --ep-light: #f8fafc;
  --ep-border: #e5e7eb;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--dark);
  background: #fff;
  font-size: 16px;
  line-height: 1.7;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  line-height: 1.2;
}

/* Main Heading */

h1 {
  font-size: 40px;
  font-weight: 800;
}

/* Section Headings */

h2 {
  font-size: 42px;
  font-weight: 700;
}

h3 {
  font-size: 24px;
  line-height: 30px;
}

.brand-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  border-radius: 16px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  transition: all 0.35s ease;
  overflow: hidden;
}

.brand-link:hover {
  transform: translateY(-6px);
  background: #fff;
  border-color: #0d6efd;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.brand-name {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: #fff;
  transition: all 0.35s ease;
}

.brand-arrow {
  font-size: 22px;
  color: #ffc107;
  transition: all 0.35s ease;
}

.brand-link:hover .brand-name {
  color: #083b66;
  transform: translateX(6px);
}

.brand-link:hover .brand-arrow {
  transform: translateX(10px);
  color: #083b66;
}

.brand-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
  transition: 0.6s;
}

.brand-link:hover::before {
  left: 100%;
}

.brand-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  min-height: 85px;
  padding: 18px 22px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.brand-card:hover {
  background: linear-gradient(135deg, #083b66, #0b5fa5);
  border-color: #083b66;
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(8, 59, 102, 0.2);
}

/* Hover on parent card */
.brand-card:hover .brand-name {
  color: #ffc107;
  text-shadow: 0 0 15px rgba(255, 193, 7, 0.35);
  transform: translateX(4px);
}

.brand-card:hover .brand-name {
  color: #ffffff;
}

.brand-card:hover .brand-arrow {
  color: #ffffff;
  transform: translateX(5px);
}

.popular-makes-section {
  position: relative;
  background: url("../images/used-reconditioned-engines.jpg") center
    center/cover no-repeat;
  overflow: hidden;
}

/* Dark Overlay */
.popular-makes-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 59, 102, 0.8);
  z-index: 1;
}

/* Content Above Overlay */
.popular-makes-section .container {
  position: relative;
  z-index: 2;
}

/* Heading */
.popular-makes-section .section-title h2 {
  color: #fff;
}

.popular-makes-section .section-title p {
  color: rgba(255, 255, 255, 0.85);
}

.popular-makes-section .section-title span {
  color: #ffc107;
}

p {
  font-family: "Inter", sans-serif;
  color: #4b5563;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.6);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(22, 163, 74, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(22, 163, 74, 0);
  }
}

a {
  text-decoration: none;
}

.top-strip {
  background: var(--primary);
  color: #fff;
  font-size: 13px;
  line-height: 19px;
  padding: 8px 0;
}

.top-strip a {
  color: #fff;
  font-weight: 600;
}

.site-header {
  background: #fff;
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.08);
  /* position: sticky;
  top: 0;
  z-index: 999; */
}

.navbar-brand img {
  max-height: 58px;
}

.navbar-nav .nav-link {
  color: var(--dark);
  padding: 12px 16px;
}

.navbar-nav .nav-link:hover {
  color: var(--secondary);
}

.btn-orange {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  font-weight: 800;
  border-radius: 999px;
  max-width: 300px;
  padding: 11px 24px;
  box-shadow: 0 10px 22px rgba(255, 138, 0, 0.25);
}

.btn-orange:hover {
  background: #e87900;
  border-color: #e87900;
  color: #fff;
}

.btn-blue {
  background: var(--secondary);
  border-color: var(--secondary);
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  padding: 11px 24px;
}

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

.modern-breadcrumb-wrap {
  background: linear-gradient(135deg, #f8fafc 0%, #eef4ff 100%);
  border: 1px solid #e5eaf5;
  border-radius: 16px;
  padding: 14px 18px;
  margin: 20px 0 28px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.modern-breadcrumb {
  font-size: 15px;
}

.modern-breadcrumb .breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.modern-breadcrumb .breadcrumb-item {
  display: flex;
  align-items: center;
  color: #64748b;
  font-weight: 500;
}

.modern-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "\F285";
  font-family: "bootstrap-icons";
  color: #94a3b8;
  font-size: 13px;
  padding: 0 10px 0 4px;
}

.breadcrumb-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #0057ff;
  text-decoration: none;
  transition: all 0.25s ease;
  font-size: 14px;
}

.breadcrumb-link:hover {
  color: #003bb3;
  text-decoration: underline;
}

.breadcrumb-link i {
  font-size: 14px;
}

.breadcrumb-current {
  color: #0f172a;
  font-size: 14px;
}

.modern-breadcrumb .breadcrumb-item.active {
  color: #0f172a;
}

@media (max-width: 576px) {
  .modern-breadcrumb-wrap {
    padding: 12px 14px;
    margin: 15px 0 22px;
    border-radius: 12px;
  }

  .modern-breadcrumb {
    font-size: 14px;
  }

  .modern-breadcrumb .breadcrumb {
    gap: 4px;
  }

  .modern-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    padding: 0 7px 0 3px;
    font-size: 12px;
  }
}

.quote-card .btn-widget {
  height: 47px;
  line-height: 47px;
  max-width: 300px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.4px;
  margin-bottom: 18px;
}

.hero {
  background: linear-gradient(
    120deg,
    rgba(8, 59, 102, 0.95),
    rgba(11, 95, 165, 0.88)
  );
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 80px 0 70px;
  overflow: hidden;
}

.hero h1 {
  font-size: clamp(26px, 5vw, 40px);
  font-weight: 800;
  line-height: 1.08;
}

.hero p {
  color: #e5eef7;
}

.hero-points i {
  color: #7ef0a2;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-points span {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
}

.quote-card {
  background: #fff;
  color: var(--dark);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.quote-card h2 {
  font-size: 18px;
  line-height: 24px;
  font-weight: 800;
  margin-bottom: 8px;
}

.quote-card p {
  color: var(--muted);
  font-size: 14px;
}

.form-control,
.form-select {
  min-height: 48px;
  border-radius: 12px;
  border: 1px solid #d8e0ea;
  font-size: 15px;
}

.reg-box {
  display: flex;
  align-items: center;
  border: 3px solid #083b66;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 14px;
  background: #ffcf00;
}

.reg-input {
  background-image: url(../images/gb.png);
  background-repeat: no-repeat;
  background-color: #ffcf00;
  border: 0;
  width: 100%;
  min-height: 58px;
  padding: 0 16px;
  text-align: center;
  background-size: contain;
  letter-spacing: 1px;
  text-transform: uppercase;
  outline: none;
  font-weight: 800;
}

/* Stats */

.stats-strip {
  margin-top: -44px;
  position: relative;
  z-index: 5;
}

.stats-box {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.1);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-item {
  text-align: center;
  border-right: 1px solid var(--border);
}

.stat-item:last-child {
  border-right: 0;
}

.stat-item strong {
  display: block;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: var(--primary);
}

.stat-item span {
  color: var(--muted);
  font-size: 14px;
}

.section-padding {
  padding: 75px 0;
}

.section-light {
  background: var(--light);
}

.section-title {
  margin: 0 auto 42px;
  text-align: center;
}

.section-title span {
  display: inline-block;
  color: var(--accent);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1px;
}

/*.section-title h2 {
  font-size: clamp(28px, 4vw, 32px);
  font-weight: 800;
  margin-bottom: 12px;
}*/

.section-title p {
  color: var(--muted);
  margin-bottom: 0;
}

.engine-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  padding: 12px 22px;
  background: linear-gradient(135deg, #0d6efd, #084298);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(13, 110, 253, 0.25);
}

.engine-cta i {
  transition: transform 0.3s ease;
}

.engine-cta:hover {
  background: linear-gradient(135deg, #084298, #052c65);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(13, 110, 253, 0.35);
}

.engine-cta:hover i {
  transform: translateX(4px);
}

.feature-card,
.brand-card,
.engine-card,
.step-card,
.review-card {
  background: #fff;
  border: 1px solid #e7edf4;
  border-radius: 20px;
  padding: 26px;
  height: 100%;
  transition: 0.25s ease;
}

.feature-card:hover,
.brand-card:hover,
.engine-card:hover,
.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.1);
}

.icon-box {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(11, 95, 165, 0.1);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
}

.feature-card h3,
.engine-card h3,
.step-card h3 {
  font-size: 18px;
  line-height: 24px;
  font-weight: 800;
}

.feature-card p,
.engine-card p,
.step-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.brand-card {
  padding: 18px;
  text-align: center;
  font-weight: 800;
  color: var(--dark);
  border-radius: 16px;
}

.brand-card:hover {
  color: var(--secondary);
}

.cta-band {
  background: linear-gradient(135deg, #0d6efd, #084298);
  color: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(13, 110, 253, 0.25);
}

.cta-band p {
  font-size: 1.05rem;
  opacity: 0.95;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: #fff;
  color: #0d6efd;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.cta-btn:hover {
  transform: translateY(-3px);
  color: #0d6efd;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.cta-trust {
  margin-top: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.cta-trust i {
  margin-right: 5px;
  color: #ffd43b;
}

.cta-band {
  background: linear-gradient(120deg, var(--primary), var(--secondary));
  color: #fff;
  border-radius: 28px;
  padding: 42px;
  position: relative;
  overflow: hidden;
}

.cta-band h2 {
  font-weight: 800;
  font-size: clamp(28px, 4vw, 32px);
}

.cta-band p {
  color: #e5eef7;
  max-width: 700px;
}

.content-block {
  background: #fff;
  border: 1px solid #e7edf4;
  border-radius: 22px;
  padding: 36px;
}

.content-block h2,
.content-block h3 {
  font-weight: 800;
}

.content-block h2:first-child {
  margin-top: 0;
}

.content-block p {
  color: #374151;
}

/* ==========================
   REVIEWS
========================== */

.review-stars {
  color: #f59e0b;
}

.review-card p {
  color: #4b5563;
}

.review-card strong {
  display: block;
  color: var(--dark);
  font-weight: 800;
}

/* ==========================
   MODEL SECTION
========================== */

.engine-models {
  padding: 75px 0;
}

.engine-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 25px;
  height: 100%;
  transition: 0.35s;
}

.engine-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.price {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 20px;
}

/* ==========================
EEAT
========================== */

h2 {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 800;
}

.audi-content-section {
  background: #f8fafc;
}

.content-card {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.content-header h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0f172a;
}

.content-header p {
  max-width: 850px;
  margin: 0 auto;
}

.content-card h3 {
  /* font-size: 1.7rem; */
  margin-bottom: 15px;
  font-weight: 800;
}

.content-card p {
  line-height: 1.8;
  color: #475569;
}

.feature-box {
  background: #fff;
  padding: 25px;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  height: 100%;
  transition: all 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.feature-box i {
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 15px;
}

.feature-box h4 {
  font-size: 18px;
  line-height: 24px;
  font-weight: 800;
}

.engine-table th {
  background: var(--secondary);
  color: #fff;
  border: none;
}

.notice-box {
  background: #eff6ff;
  border-left: 4px solid #0d6efd;
  padding: 20px;
  border-radius: 10px;
  margin-top: 20px;
}

.faq-box h4 {
  margin-top: 25px;
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
}

.cta-panel {
  margin-top: 50px;
  text-align: center;
  background: linear-gradient(135deg, #0d6efd, #084298);
  color: #fff;
  padding: 40px;
  border-radius: 20px;
}

.cta-panel h3 {
  color: #fff;
  margin-bottom: 15px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  padding: 15px 30px;
  background: #fff;
  color: #0d6efd;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-3px);
  color: #0d6efd;
}

@media (max-width: 768px) {
  .content-card {
    padding: 25px;
  }

  .content-header h2 {
    font-size: 1.8rem;
  }

  .content-card h3 {
    font-size: 1.4rem;
  }
}

.ep-model-results {
  padding: 80px 0;
  background:
    radial-gradient(
      circle at top left,
      rgba(11, 95, 165, 0.08),
      transparent 30%
    ),
    linear-gradient(180deg, #f8fafc 0%, #eef4fa 100%);
}

/* Price Summary */

.ep-price-summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--ep-border);
  border-radius: 30px;
  padding: 36px;
  margin-bottom: 36px;
  box-shadow: 0 20px 55px rgba(15, 23, 42, 0.08);
}

/* If left content has long headings/text */
.ep-price-summary > * {
  min-width: 0;
}

/* Tablet */
@media (max-width: 991px) {
  .ep-price-summary {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px;
    border-radius: 26px;
    text-align: left;
  }

  .ep-price-card,
  .ep-price-right {
    width: 100%;
    max-width: 100%;
    justify-self: stretch;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .ep-price-summary {
    padding: 22px;
    gap: 20px;
    border-radius: 22px;
    margin-bottom: 28px;
  }

  .ep-price-content h1,
  .ep-price-left h1 {
    font-size: 30px;
    line-height: 1.15;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .ep-price-content p,
  .ep-price-left p {
    font-size: 15px;
    line-height: 1.7;
  }

  .ep-mini-trust {
    gap: 8px;
  }

  .ep-mini-trust span {
    width: 100%;
    justify-content: flex-start;
    font-size: 13px;
  }

  .ep-price-card,
  .ep-price-right {
    padding: 22px;
    border-radius: 22px;
    width: 100%;
    text-align: center;
  }

  .ep-price-card strong,
  .ep-price-right strong {
    font-size: 34px;
  }
}

/* Very small mobile */
@media (max-width: 380px) {
  .ep-price-summary {
    padding: 18px;
    border-radius: 18px;
  }

  .ep-price-content h1,
  .ep-price-left h1 {
    font-size: 26px;
  }

  .ep-price-card strong,
  .ep-price-right strong {
    font-size: 30px;
  }
}

.ep-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff2df;
  color: var(--ep-accent);
  padding: 8px 15px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.ep-price-content h1 {
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: var(--ep-dark);
  line-height: 1.12;
  margin-bottom: 14px;
}

.ep-price-content p {
  color: var(--ep-muted);
  font-size: 16px;
  line-height: 22px;
}

.ep-mini-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ep-mini-trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #f1f5f9;
  color: #334155;
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.ep-mini-trust i {
  color: var(--ep-success);
}

.ep-price-card {
  min-width: 215px;
  text-align: center;
  background: linear-gradient(135deg, var(--ep-primary), var(--ep-secondary));
  color: #ffffff;
  border-radius: 26px;
  padding: 22px;
}

.ep-price-card span {
  display: block;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  opacity: 0.9;
}

.ep-price-card strong {
  display: block;
  color: #ffcf7a;
  font-size: 32px;
  font-weight: 800;
  line-height: 38px;
}

.ep-price-card small {
  display: block;
  margin-top: 7px;
  font-size: 12px;
  opacity: 0.82;
}

/* Results Heading */

.ep-results-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 24px;
}

.ep-section-label {
  display: inline-block;
  color: var(--ep-accent);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.ep-results-heading h2 {
  font-size: clamp(26px, 4vw, 32px);
  font-weight: 800;
  color: var(--ep-dark);
}

.ep-results-heading p {
  color: var(--ep-muted);
  margin-bottom: 0;
}

.ep-heading-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, var(--ep-accent), var(--ep-accent-dark));
  color: #ffffff;
  padding: 14px 25px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 14px 32px rgba(255, 138, 0, 0.3);
  transition: 0.28s ease;
}

.ep-heading-cta:hover {
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(255, 138, 0, 0.45);
}

/* Table */

.ep-engine-table thead {
  background: linear-gradient(135deg, var(--ep-primary), var(--ep-secondary));
  color: #ffffff;
}

.ep-engine-table thead th {
  border: 0;
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
}

.ep-engine-table tbody td {
  padding: 18px 22px;
  border-color: var(--ep-border);
  vertical-align: middle;
}

.ep-engine-table tbody tr {
  transition: 0.25s ease;
}

.ep-engine-table tbody tr:hover {
  background: #f8fafc;
}

.ep-engine-link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--ep-secondary);
  text-decoration: none;
}

.ep-engine-link:hover {
  color: var(--ep-primary);
}

.ep-engine-title {
  font-weight: 800;
  font-size: 15px;
}

.ep-engine-link small {
  color: var(--ep-muted);
  font-size: 13px;
  font-weight: 500;
}

.ep-engine-size {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  background: #eef6ff;
  color: var(--ep-primary);
  padding: 7px 13px;
  border-radius: 999px;
  font-weight: 800;
}

.ep-year-range {
  color: #334155;
  font-weight: 700;
}

.ep-quote-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: linear-gradient(135deg, var(--ep-accent), var(--ep-accent-dark));
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(255, 138, 0, 0.25);
  transition: 0.25s ease;
}

.ep-quote-btn:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(255, 138, 0, 0.4);
}

.ep-quote-btn i {
  transition: 0.25s ease;
}

.ep-quote-btn:hover i {
  transform: translateX(3px);
}

/* Gallery */

.ep-engine-gallery {
  padding: 80px 0;
  background: #ffffff;
}

.ep-gallery-heading {
  max-width: 780px;
  margin: 0 auto 40px;
  text-align: center;
}

.ep-gallery-heading span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ep-accent);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.ep-gallery-heading h2 {
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--ep-dark);
  margin-bottom: 10px;
}

.ep-gallery-heading p {
  color: var(--ep-muted);
  font-size: 17px;
}

.ep-gallery-card {
  height: 100%;
  background: #ffffff;
  border: 1px solid var(--ep-border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.07);
  transition: 0.28s ease;
}

.ep-gallery-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 52px rgba(15, 23, 42, 0.14);
}

.ep-gallery-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.ep-gallery-caption {
  padding: 18px;
}

.ep-gallery-caption strong {
  display: block;
  font-family: "Poppins", Arial, sans-serif;
  color: var(--ep-dark);
  font-size: 16px;
  margin-bottom: 4px;
}

.ep-gallery-caption span {
  color: var(--ep-muted);
  font-size: 14px;
}

/* Mobile Responsive Table */

@media (max-width: 767px) {
  .ep-model-results {
    padding: 55px 0;
  }

  .ep-price-summary {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .ep-price-card {
    width: 100%;
  }

  .ep-results-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .ep-heading-cta {
    width: 100%;
    justify-content: center;
  }

  .ep-engine-table thead {
    display: none;
  }

  .ep-engine-table,
  .ep-engine-table tbody,
  .ep-engine-table tr,
  .ep-engine-table td {
    display: block;
    width: 100%;
  }

  .ep-engine-table tbody tr {
    padding: 18px;
    border-bottom: 1px solid var(--ep-border);
  }

  .ep-engine-table tbody td {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 10px 0;
    border: 0;
    text-align: right;
  }

  .ep-engine-table tbody td::before {
    content: attr(data-label);
    font-weight: 800;
    color: var(--ep-dark);
    text-align: left;
  }

  .ep-engine-link {
    align-items: flex-end;
  }

  .ep-quote-btn {
    width: 100%;
  }

  .ep-gallery-card img {
    height: 190px;
  }
}

.ep-engine-table-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ep-engine-row {
  display: grid;
  grid-template-columns: 2fr 180px 180px 220px;
  align-items: center;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 15px;
  transition: 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.ep-engine-row:hover {
  border-color: #0d6efd;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.ep-model {
  display: flex;
  align-items: center;
  gap: 18px;
}
.hd_snippet {
  display: none;
}
.ep-engine-name {
  display: block;
  color: #111827;
  text-decoration: none;
  font-size: 14px;
  line-height: 20px;
  font-weight: 800;
}

.ep-engine-name:hover {
  color: #0d6efd;
}

.ep-engine-subtext {
  color: #64748b;
  font-size: 13px;
}

.ep-info-label {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  color: #94a3b8;
  margin-bottom: 8px;
}

.ep-badge,
.ep-year-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  line-height: 19px;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
}

.ep-badge {
  background: #eff6ff;
  color: #2563eb;
}

.ep-year-badge {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #334155;
}

.ep-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 175px;
  font-size: 13px;
  line-height: 19px;
  margin: auto;
  padding: 10px 10px;
  background: #083b66;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  border-radius: 12px;
  transition: 0.3s;
}

.ep-btn:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(13, 110, 253, 0.3);
}

@media (max-width: 992px) {
  .ep-engine-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .ep-size,
  .ep-year {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .ep-action {
    width: 100%;
  }
}

.engine-product-wrap {
  background: #fff;
  border-radius: 28px;
  padding: 25px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.engine-gallery-card {
  display: flex;

  flex-direction: column;

  gap: 15px;
}

.make-logo-card {
  background: #fff;

  border: 1px solid #e5e7eb;

  border-radius: 20px;

  padding: 20px;

  text-align: center;
}

.gallery-thumb {
  border-radius: 20px;

  overflow: hidden;

  border: 1px solid #e5e7eb;

  transition: 0.3s;
}

.gallery-thumb:hover {
  transform: translateY(-5px);

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.engine-content-card {
  height: 100%;
}

.ai-badge {
  display: inline-flex;

  gap: 8px;

  align-items: center;

  padding: 10px 16px;

  border-radius: 999px;

  background: #dcfce7;

  color: #15803d;

  font-size: 12px;

  font-weight: 700;

  text-transform: uppercase;
}

.engine-heading {
  font-weight: 800;
  color: #083b66;
}

.engine-heading span {
  display: block;
  font-size: 16px;
  line-height: 22px;
  color: #ff6500;
}

.spec-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 15px;

  margin-bottom: 25px;
}

.spec-card {
  background: #f3f5f7;
  border-radius: 18px;
  padding: 10px;
}

.spec-card small {
  display: block;
  color: #64748b;
  margin-bottom: 5px;
}

.spec-card strong {
  font-size: 16px;
  color: #083b66;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #eef6ff;
  color: var(--ep-secondary);
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 14px;
}

.trust-row i {
  color: var(--ep-success);
}

.offer-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 15px;

  margin-bottom: 25px;
}

.offer-card {
  background: #f3f5f7;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 15px;
}

.cashback-card h2 {
  font-weight: 800;

  color: #dc2626;

  margin: 0;
}

.feature-list {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 12px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 18px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  transition: 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-4px);
  border-color: #0b5fa5;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.feature-item i {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eef6ff;
  color: #0b5fa5;
  border-radius: 14px;
  font-size: 22px;
}

.feature-item strong {
  display: block;
  color: #083b66;
  margin-bottom: 4px;
  font-size: 15px;
  font-weight: 700;
}

.feature-item span {
  display: block;
  color: #64748b;
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .feature-list {
    grid-template-columns: 1fr;
  }
}

.btn-price {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #ff8a00, #ff6500);
  color: #fff !important;
  padding: 18px 36px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 15px 35px rgba(255, 138, 0, 0.35);
  transition: 0.3s;
}

.btn-price:hover {
  transform: translateY(-3px);
  color: #fff !important;
}

@media (max-width: 768px) {
  .offer-grid,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .spec-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .engine-heading {
    font-size: 30px;
    line-height: 36px;
  }

  .btn-price {
    width: 100%;

    justify-content: center;
  }
}

.about-modern-section {
  background: #f8fafc;
}

.section-badge {
  display: inline-block;
  background: #eef6ff;
  color: #0b5fa5;
  padding: 8px 15px;
  border-radius: 50px;
  font-weight: 700;
}

.section-title {
  color: #083b66;
}

.lead-text {
  font-size: 18px;
  color: #64748b;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 25px;
}

/* .feature-box {
  display: flex;

  align-items: center;

  gap: 12px;

  padding: 15px;

  background: #fff;

  border-radius: 18px;

  border: 1px solid #e5e7eb;
} */

.feature-box i {
  color: #0b5fa5;
  font-size: 22px;
  line-height: 28px;
}

.about-image img {
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* Why Us */

.why-card {
  background: #fff;
  text-align: center;
  padding: 30px;
  border-radius: 24px;
  height: 100%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.why-card i {
  font-size: 42px;
  color: #0b5fa5;
  margin-bottom: 15px;
}

/* Testimonial */

.testimonial-box {
  max-width: 800px;
  margin: auto;
  text-align: center;
  background: #fff;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.stars {
  color: #f59e0b;
  font-size: 24px;
  margin-bottom: 20px;
}

.testimonial-box p {
  font-size: 20px;
  line-height: 1.8;
  color: #334155;
}

.testimonial-box h5 {
  margin-top: 20px;
  color: #083b66;
  font-weight: 700;
}

.about-modern {
  background: #f8fafc;
}

.about-badge {
  display: inline-block;
  color: var(--accent);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.about-title {
  /* font-size: 52px; */
  font-size: clamp(26px, 5vw, 40px);
  font-weight: 800;
  color: #083b66;
  /* margin: 20px 0; */
}

.about-lead {
  font-size: 20px;
  color: #475569;
  line-height: 1.8;
}

/* .about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin: 35px 0;
} */

/* .feature-card {
  display: flex;
  gap: 15px;
  padding: 20px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  transition: 0.3s;
} */

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.feature-card i {
  font-size: 26px;
  color: #0b5fa5;
}

.feature-card h5 {
  color: #083b66;
  margin-bottom: 5px;
  font-weight: 700;
}

.feature-card p {
  margin: 0;
  color: #64748b;
  font-size: 14px;
}

.btn-about {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #ff8a00, #ff6500);
  color: #fff;
  text-decoration: none;
  padding: 16px 30px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 15px 35px rgba(255, 138, 0, 0.3);
}

.btn-about:hover {
  color: #fff;
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.about-floating-card {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.about-floating-card strong {
  display: block;
  font-size: 32px;
  color: #083b66;
}

.section-heading {
  color: #083b66;
}

.section-subtitle {
  color: #64748b;
}

@media (max-width: 768px) {
  .section-heading {
    font-size: 28px;
    line-height: 34px;
  }

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

/* ==========================
   Contact Us page
========================== */

.ep-contact-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(8, 59, 102, 0.95), rgba(11, 95, 165, 0.88)),
    url("images/engine-workshop-banner.jpg");
  color: #ffffff;
}

.ep-contact-hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -140px;
  bottom: -180px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.ep-hero-title {
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.ep-hero-text {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.88);
}

.ep-hero-card {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 28px;
  padding: 18px;
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 60px rgba(16, 24, 40, 0.22);
}

.ep-hero-image {
  border-radius: 24px;
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.26),
    rgba(255, 255, 255, 0.08)
  );
}

.ep-section {
  padding: 70px 0;
}

.ep-section-light {
  background: var(--ep-light);
}

.ep-card {
  border: 1px solid var(--ep-border);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 20px 55px rgba(16, 24, 40, 0.08);
}

.ep-form-card {
  overflow: hidden;
}

.ep-form-head {
  background: linear-gradient(135deg, #101828, #1d2939);
  color: #ffffff;
  padding: 28px;
}

.ep-form-body {
  padding: 32px;
}

.ep-section-title {
  color: var(--ep-dark);
  font-weight: 800;
  letter-spacing: -0.03em;
}

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

.form-label {
  color: var(--ep-dark);
  font-weight: 700;
  margin-bottom: 7px;
}

.form-control {
  min-height: 54px;
  border-radius: 14px;
  border: 1px solid #d0d5dd;
  padding: 12px 15px;
  font-weight: 500;
}

textarea.form-control {
  min-height: 150px;
}

.form-control:focus {
  border-color: var(--ep-primary);
  box-shadow: 0 0 0 0.22rem rgba(13, 110, 253, 0.14);
}

.ep-contact-info {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--ep-border);
}

.ep-contact-info:last-child {
  border-bottom: 0;
}

.ep-icon-box {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0b5fa5;
  background: #eaf2ff;
  font-size: 24px;
}

.ep-value-title {
  color: var(--ep-dark);
  font-weight: 900;
  margin-bottom: 2px;
}

.ep-value-text {
  margin-bottom: 0;
  color: var(--ep-muted);
}

.ep-mini-card {
  padding: 24px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid var(--ep-border);
  height: 100%;
  box-shadow: 0 14px 34px rgba(16, 24, 40, 0.06);
  transition: all 0.25s ease;
}

.ep-mini-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(16, 24, 40, 0.1);
}

.ep-mini-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 18px;
  background: #eaf2ff;
  color: var(--ep-primary);
  font-size: 28px;
  margin-bottom: 16px;
}

.ep-check-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.ep-check-list li {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-weight: 600;
  color: #475467;
}

.ep-check-list i {
  color: var(--ep-success);
}

.ep-captcha-box {
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 10px;
  border: 1px solid #d0d5dd;
  border-radius: 16px;
  background: #f9fafb;
}

.ep-alert-success {
  border: 0;
  border-radius: 28px;
  padding: 42px;
  background:
    radial-gradient(
      circle at top right,
      rgba(22, 163, 74, 0.14),
      transparent 28%
    ),
    #ffffff;
  box-shadow: 0 20px 55px rgba(16, 24, 40, 0.1);
}

.ep-success-icon {
  width: 82px;
  height: 82px;
  border-radius: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #dcfce7;
  color: var(--ep-success);
  font-size: 48px;
  margin-bottom: 20px;
}

.ep-cta-strip {
  background: linear-gradient(120deg, var(--primary), var(--secondary));
  color: #ffffff;
  border-radius: 32px;
  padding: 42px;
}

.ep-cta-strip p {
  color: #e5eef7;
}

.accordion-item {
  border: 1px solid var(--ep-border);
  border-radius: 18px !important;
  margin-bottom: 14px;
  overflow: hidden;
}

.accordion-button {
  font-weight: 800;
  color: var(--ep-dark);
  padding: 20px 22px;
  line-height: 22px;
}

.accordion-button:not(.collapsed) {
  background: #eaf2ff;
  color: var(--ep-primary-dark);
}

.ep-sticky-mobile {
  display: none;
}

@media (max-width: 991px) {
  .ep-form-body {
    padding: 24px;
  }

  .ep-cta-strip {
    padding: 30px;
  }
}

@media (max-width: 767px) {
  .ep-section {
    padding: 56px 0;
  }

  .ep-sticky-mobile {
    display: flex;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 1050;
    gap: 10px;
  }

  .ep-sticky-mobile a {
    flex: 1;
    border-radius: 999px;
    font-weight: 900;
    padding: 13px 10px;
    box-shadow: 0 14px 32px rgba(16, 24, 40, 0.24);
  }
}

/* =========================================================
   Engine Services Modern Section CSS
   Compatible with Bootstrap 5.3 + Bootstrap Icons
   ========================================================= */

:root {
  --ep-primary: #0b5ed7;
  --ep-primary-dark: #083f91;
  --ep-orange: #ff6b00;
  --ep-orange-dark: #e85f00;
  --ep-dark: #101828;
  --ep-muted: #667085;
  --ep-light: #f7faff;
  --ep-soft-blue: #eef5ff;
  --ep-border: rgba(16, 24, 40, 0.1);
  --ep-shadow: 0 18px 50px rgba(16, 24, 40, 0.1);
  --ep-shadow-hover: 0 24px 70px rgba(16, 24, 40, 0.16);
  --ep-radius: 24px;
}

/* Section Badge */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(11, 94, 215, 0.1);
  color: var(--ep-primary);
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(11, 94, 215, 0.14);
}

.section-badge::before {
  content: "\F633";
  font-family: "bootstrap-icons";
  font-size: 15px;
}

/* Benefits List */
.service-benefits {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.service-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 14px;
  border-radius: 16px;
  background: rgba(247, 250, 255, 0.8);
  border: 1px solid rgba(16, 24, 40, 0.06);
  color: #344054;
  font-size: 14px;
  line-height: 20px;
  transition: all 0.22s ease;
}

.service-benefits li:hover {
  background: #eef5ff;
  border-color: rgba(11, 94, 215, 0.18);
  transform: translateX(4px);
}

.service-benefits li i {
  color: #12b76a;
  font-size: 18px;
  flex: 0 0 auto;
}

/* CTA Card */
.cta-card {
  height: 100%;
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 3.5vw, 40px);
  border-radius: var(--ep-radius);
  background:
    linear-gradient(120deg, rgba(8, 59, 102, 0.95), rgba(11, 95, 165, 0.88)),
    url(../images/engine-workshop-banner.jpg);
  background-size: cover;
  background-position: center;
  color: #ffffff;
  box-shadow: 0 22px 60px rgba(11, 94, 215, 0.25);
}

.cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at top right,
      rgba(255, 255, 255, 0.18),
      transparent 34%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.22));
  pointer-events: none;
}

.cta-card > * {
  position: relative;
  z-index: 2;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cta-badge::before {
  content: "\F4E7";
  font-family: "bootstrap-icons";
  font-size: 15px;
}

/*.cta-card h2 {
  max-width: 520px;
  margin-bottom: 14px;
  color: #ffffff;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.045em;
}*/

.cta-card p {
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.86);
}

.cta-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Service Cards Section */

.service-card {
  height: 100%;
  position: relative;
  overflow: hidden;
  padding: 30px 26px;
  border-radius: var(--ep-radius);
  background: #ffffff;
  border: 1px solid var(--ep-border);
  box-shadow: 0 14px 36px rgba(16, 24, 40, 0.08);
  transition: all 0.25s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(11, 94, 215, 0.07), transparent 42%),
    radial-gradient(
      circle at top right,
      rgba(255, 107, 0, 0.08),
      transparent 34%
    );
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(11, 94, 215, 0.18);
  box-shadow: var(--ep-shadow-hover);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card > * {
  position: relative;
  z-index: 2;
}

/* Service Icon */
.service-icon {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, #eef5ff, #ffffff);
  color: var(--ep-primary);
  font-size: 30px;
  border: 1px solid rgba(11, 94, 215, 0.12);
  box-shadow: 0 12px 26px rgba(11, 94, 215, 0.1);
  transition: all 0.25s ease;
}

.service-card:hover .service-icon {
  background: linear-gradient(
    135deg,
    var(--ep-primary),
    var(--ep-primary-dark)
  );
  color: #ffffff;
  transform: rotate(-4deg) scale(1.05);
}

/* Service Card Text */
.service-card h3 {
  margin-bottom: 10px;
  color: var(--ep-dark);
  font-size: 22px;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: -0.025em;
}

.service-card p {
  margin: 0;
  color: var(--ep-muted);
  font-size: 15.8px;
  line-height: 1.7;
}

/* Better Bootstrap row-gap fallback */
.row-gap-4 {
  row-gap: 1.5rem;
}

/* Accessibility */
.btn-orange:focus-visible,
.service-card:focus-within,
.benefits-card:focus-within,
.cta-card:focus-within {
  outline: 3px solid rgba(255, 107, 0, 0.32);
  outline-offset: 3px;
}

/* Tablet Responsive */
@media (max-width: 991.98px) {
  .services-modern-section {
    text-align: left;
  }

  .benefits-card,
  .cta-card {
    min-height: auto;
  }

  .cta-card {
    background-position: center;
  }

  .cta-buttons {
    justify-content: flex-start;
  }
}

/* Mobile Responsive */
@media (max-width: 767.98px) {
  .stats-box {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-modern-section {
    text-align: center;
  }

  .section-description {
    margin-left: auto;
    margin-right: auto;
  }

  .benefits-card,
  .cta-card,
  .service-card {
    border-radius: 20px;
    padding: 24px 20px;
  }

  .benefits-card h2,
  .cta-card h2 {
    text-align: center;
  }

  .service-benefits li {
    text-align: left;
    padding: 13px;
  }

  .cta-buttons {
    justify-content: center;
  }

  .service-card {
    text-align: center;
  }

  .service-icon {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Small Mobile */
@media (max-width: 420px) {
  .cta-card h2 {
    font-size: 28px;
  }

  .service-card h3 {
    font-size: 20px;
  }

  .service-benefits li {
    font-size: 14.5px;
  }
}

/* ==========================
   About Us Page
========================== */

.hero-card {
  background: linear-gradient(
    120deg,
    rgba(8, 59, 102, 0.95),
    rgba(11, 95, 165, 0.88)
  );

  color: #333;
  padding: 35px;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.hero-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-card li {
  padding: 10px 0;
}

.hero-card i {
  color: #28a745;
  margin-right: 8px;
}

/* ==========================
 Content Image Frame
========================== */

.seo-image-frame {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  position: sticky;
  top: 120px;
}

.seo-image-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: 0.4s ease;
}

.seo-image-frame:hover img {
  transform: scale(1.03);
}

/* ==========================
  Terms & Conditions
========================== */

.cardx {
  background: #fff;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.term-item {
  display: flex;
  gap: 15px;
  padding: 18px;
  border-bottom: 1px solid #e5e7eb;
}

.term-item i {
  color: #22c55e;
}

/* ==========================
  Faq's SECTION
========================== */

.faq .accordion-item {
  border: 1px solid #e7edf4;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 14px;
}

.faq .accordion-button {
  border-radius: 16px;
  line-height: 22px;
}

.sticky-vrm-bar {
  position: sticky;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #ffffff;
  padding: 12px;
  border-top: 1px solid #e5e7eb;
  box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.08);
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.sticky-vrm-bar.hide {
  opacity: 0;
  visibility: hidden;
  transform: translateY(100%);
}

.vrm-box {
  display: flex;
  flex: 1;
  max-width: 450px;
  border: 3px solid #083b66;
  border-radius: 12px;
  overflow: hidden;
  background: #ffcf00;
}

.vrm-country {
  width: 55px;
  background: #083b66;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.vrm-box input {
  flex: 1;
  border: 0;
  background-image: url(../images/gb.png);
  background-repeat: no-repeat;
  background-color: #ffcf00;
  background-size: contain;
  min-height: 56px;
  text-align: center;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  outline: none;
}

.sticky-cta {
  background: linear-gradient(135deg, #ff8a00, #ff6b00);
  color: #fff;
  min-width: 260px;
  height: 62px;
  border-radius: 14px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(255, 138, 0, 0.35);
  transition: 0.3s;
}

.sticky-cta:hover {
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 18px 40px rgba(255, 138, 0, 0.45);
}

.cta-text {
  display: block;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.sticky-cta small {
  display: block;
  font-size: 11px;
  opacity: 0.9;
}

.sticky-cta i {
  font-size: 24px;
}

.invalid-vrm-card {
  max-width: 1180px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 32px;
  padding: 36px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
}

.error-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff1f2;
  color: #e60e22;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 16px;
}

.reg-search-card {
  background: linear-gradient(135deg, #083b66, #0b5fa5);
  color: #ffffff;
  border-radius: 28px;
  padding: 32px;
  margin-bottom: 34px;
  overflow: hidden;
  position: relative;
}

.reg-copy {
  position: relative;
  z-index: 1;
}

.mini-label {
  display: inline-block;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.reg-copy h4 span {
  color: #ffcf7a;
}

.reg-copy p {
  color: #e5eef7;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 0;
}

.reg-plate-box {
  position: relative;
  z-index: 1;
  display: flex;
  overflow: hidden;
  border: 2px solid #0b1220;
  border-radius: 18px;
  background: #ffd500;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.reg-country {
  width: 62px;
  background: #0057b8;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  letter-spacing: 1px;
}

.reg-plate-box input {
  flex: 1;
  border: 0;
  outline: 0;
  background-image: url(../images/gb.png);
  background-color: #ffd500;
  background-size: contain;
  background-repeat: no-repeat;
  color: #111827;
  height: 68px;
  text-align: center;
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.btn-reg-submit {
  width: 100%;
  max-width: 200px;
  margin-top: 16px;
  border: 0;
  border-radius: 999px;
  min-height: 58px;
  background: linear-gradient(135deg, #ff8a00, #ff6500);
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 14px 34px rgba(255, 138, 0, 0.34);
  transition: 0.28s ease;
}

.btn-reg-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 46px rgba(255, 138, 0, 0.46);
}

.manual-heading {
  margin-bottom: 30px;
}

.manual-heading h3 {
  color: #334155;
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
}

.manual-heading a {
  color: #0b5fa5;
  text-decoration: none;
}

.manual-heading a:hover {
  color: #ff6500;
}

.manual-widget {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 28px;
  padding: 32px;
}

.manual-badge {
  display: inline-block;
  background: #eef6ff;
  color: #0b5fa5;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.select-card label {
  display: block;
  color: #083b66;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 8px;
}

.btn-manual-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 260px;
  min-height: 58px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #0b5fa5, #083b66);
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 14px 34px rgba(8, 59, 102, 0.22);
  transition: 0.28s ease;
}

.btn-manual-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 46px rgba(8, 59, 102, 0.33);
}

/* Responsive */

@media (max-width: 991px) {
  .invalid-vrm-card {
    padding: 26px;
    border-radius: 26px;
  }

  .reg-search-card {
    padding: 26px;
  }
}

@media (max-width: 575px) {
  .invalid-vrm-modern {
    padding: 30px 0 !important;
  }

  .invalid-vrm-card {
    padding: 20px;
    border-radius: 22px;
  }

  .reg-search-card {
    padding: 22px;
    border-radius: 22px;
  }

  .reg-plate-box input {
    height: 62px;
    font-size: 20px;
  }

  .reg-country {
    width: 54px;
  }

  .manual-widget {
    padding: 22px;
    border-radius: 22px;
  }

  .btn-manual-submit {
    width: 100%;
    min-width: 100%;
  }
}

.terms-modern-section {
  background:
    radial-gradient(
      circle at top left,
      rgba(11, 95, 165, 0.08),
      transparent 32%
    ),
    linear-gradient(180deg, #f8fafc 0%, #eef4fa 100%);
}

.terms-hero {
  max-width: 900px;
  margin: 0 auto 34px;
}

.terms-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eef6ff;
  color: #0b5fa5;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.terms-hero h1 {
  color: #083b66;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 14px;
}

.terms-hero p {
  color: #64748b;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 0;
}

.terms-intro-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 28px;
  padding: 32px;
  margin-bottom: 28px;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.06);
}

.terms-small-badge {
  display: inline-block;
  background: #fff2df;
  color: #ff8a00;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.terms-intro-card h2 {
  color: #083b66;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 900;
  margin-bottom: 12px;
}

.terms-intro-card p {
  color: #64748b;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 0;
}

.terms-highlight-box {
  background: linear-gradient(135deg, #083b66, #0b5fa5);
  color: #ffffff;
  border-radius: 22px;
  padding: 24px;
  height: 100%;
  box-shadow: 0 18px 42px rgba(8, 59, 102, 0.22);
}

.terms-highlight-box i {
  font-size: 34px;
  color: #ffcf7a;
  margin-bottom: 12px;
  display: block;
}

.terms-highlight-box strong {
  display: block;
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 6px;
}

.terms-highlight-box span {
  display: block;
  color: #dbeafe;
  line-height: 1.6;
}

.terms-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 30px;
  padding: 34px;
  box-shadow: 0 20px 55px rgba(15, 23, 42, 0.08);
}

.terms-card-header {
  margin-bottom: 26px;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 20px;
}

.terms-card-header p {
  color: #64748b;
  font-size: 16px;
  margin-bottom: 0;
}

.terms-list {
  counter-reset: terms-counter;
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-list > li {
  counter-increment: terms-counter;
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid #edf2f7;
}

.terms-list > li:last-child {
  border-bottom: 0;
}

.terms-list > li::before {
  content: counter(terms-counter);
  width: 44px;
  height: 44px;
  background: #eef6ff;
  color: #0b5fa5;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 16px;
}

.term-content {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 18px 20px;
  transition: 0.25s ease;
}

.terms-list > li:hover .term-content {
  background: #ffffff;
  border-color: rgba(11, 95, 165, 0.35);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.07);
}

.term-content p {
  color: #475569;
  font-size: 15.5px;
  line-height: 1.85;
  margin-bottom: 0;
}

/* Mobile */
@media (max-width: 767px) {
  .terms-intro-card,
  .terms-card {
    padding: 22px;
    border-radius: 22px;
  }

  .terms-list > li {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 16px 0;
  }

  .terms-list > li::before {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .term-content {
    padding: 16px;
    border-radius: 16px;
  }

  .term-content p {
    font-size: 14.5px;
    line-height: 1.8;
  }
}

.site-header {
  background: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid rgba(226, 232, 240, 0.86);
  backdrop-filter: blur(18px);
}

.header-badges {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.main-shell {
  padding: 34px 0 34px;
}

.top-trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--ep-line);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.055);
}

.strip-item i {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: var(--ep-red);
  background: var(--ep-soft);
}

.strip-item strong {
  display: block;
  color: var(--ep-ink);
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1.2;
}
.strip-item span {
  display: block;
  color: var(--ep-muted);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.25;
  margin-top: 2px;
}

.quote-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.96);
  border-radius: var(--ep-radius);
  background: var(--ep-card);
  box-shadow: var(--ep-shadow);
}

.form-side {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 42px;
  background: rgba(255, 255, 255, 0.97);
}

.form-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.form-head h2 {
  margin: 0 0 8px;
  line-height: 1.08;
  letter-spacing: -0.048em;
  font-weight: 950;
}

.form-head p {
  margin: 0;
  color: var(--ep-muted);
  line-height: 1.62;
  max-width: 650px;
}

.completion-box {
  margin-bottom: 20px;
  padding: 14px;
  border: 1px solid var(--ep-line);
  border-radius: 20px;
  background: #f8fafc;
}

.completion-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 9px;
  color: var(--ep-text);
  font-size: 0.86rem;
  font-weight: 900;
}

.completion-track {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: #e2e8f0;
}

.completion-bar {
  width: 0%;
  height: 100%;
  border-radius: inherit;
  /* background: linear-gradient(90deg, var(--ep-red), var(--ep-red-2)); */
  background: linear-gradient(90deg, #e63946, #ff4d5a);
  transition: width 0.25s ease;
}

.field-card {
  height: 100%;
  padding: 14px;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.055);
}

.form-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
  color: #334155;
  font-size: 0.88rem;
  font-weight: 900;
}

.input-shell {
  position: relative;
}

.input-icon {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  z-index: 2;
  color: #94a3b8;
  font-size: 1.08rem;
}

.form-control {
  min-height: 58px;
  padding: 14px 48px 14px 45px;
  border: 1px solid var(--ep-line);
  border-radius: 17px;
  background: #f8fafc;
  color: var(--ep-ink);
  font-size: 0.98rem;
  box-shadow: none !important;
  transition:
    border-color 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease;
}

.form-control:hover {
  background: #fff;
  border-color: #cbd5e1;
}
.form-control:focus {
  background: #fff;
  border-color: rgba(230, 14, 34, 0.76);
  box-shadow: 0 0 0 0.24rem rgba(230, 14, 34, 0.105) !important;
}

.alert-message h3,
.error-text {
  margin: 0 0 18px;
  padding: 14px 16px;
  color: #991b1b;
  background: #fff1f2;
  border: 1px solid #fecaca;
  border-radius: 18px;
  font-size: 0.95rem;
  font-weight: 850;
}

.session-message {
  margin-bottom: 18px;
  padding: 14px 16px;
  color: #166534;
  background: #dcfce7;
  border: 1px solid #bbf7d0;
  border-radius: 18px;
  font-weight: 850;
}
.form-check-input:checked {
  background-color: var(--ep-red);
  border-color: var(--ep-red);
}
.cta-btn {
  position: relative;
  width: 100%;
  max-width: 320px;
  min-height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
  font-size: 1.09rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    filter 0.18s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
  color: #fff;
  filter: saturate(1.05);
}

.cta-btn:hover::before {
  transform: translateX(120%);
}
.cta-btn:disabled {
  opacity: 0.82;
  cursor: not-allowed;
  transform: none;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.proof-tile {
  padding: 14px 10px;
  border-radius: 20px;
  border: 1px solid var(--ep-line);
  background: #fff;
  text-align: center;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.proof-tile i {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 9px;
  border-radius: 14px;
  color: var(--ep-red);
  background: var(--ep-soft);
  font-size: 1.15rem;
}

.proof-tile i::before {
  color: var(--secondary);
}

.proof-tile span {
  display: block;
  color: #475569;
  font-size: 0.79rem;
}

.mobile-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.91);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--ep-line);
}

.site-footer {
  border-top: 1px solid var(--ep-line);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
}

.swal-title {
  font-size: 17px !important;
  font-weight: 900 !important;
}
.swal-text {
  font-size: 14px !important;
  text-align: center;
}
.swal-icon--warning {
  border-color: var(--ep-red) !important;
}
.swal-button {
  border-radius: 999px;
  background: var(--ep-red);
}
.swal-button:not([disabled]):hover {
  background: var(--ep-red-dark);
}

.form-vehicle-title-card {
  position: relative;
  margin-bottom: 22px;
  padding: 20px 22px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(230, 14, 34, 0.16);
  background:
    linear-gradient(
      135deg,
      rgba(255, 241, 242, 0.96),
      rgba(255, 255, 255, 0.98)
    ),
    radial-gradient(circle at 100% 0, rgba(230, 14, 34, 0.12), transparent 32%);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.065);
}

.form-vehicle-eyebrow {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  padding: 7px 11px;
  border-radius: 999px;
  color: #991b1b;
  background: #ffe4e6;
  border: 1px solid #fecdd3;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.form-vehicle-title {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--ep-ink);
  font-size: clamp(1.45rem, 2.55vw, 2rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
  font-weight: 950;
  overflow-wrap: anywhere;
}

@media (max-width: 767.98px) {
  .form-vehicle-title-card {
    padding: 16px;
    border-radius: 20px;
    margin-bottom: 18px;
  }

  .form-vehicle-title {
    font-size: clamp(1.28rem, 6.6vw, 1.9rem);
  }
}

@media (max-width: 420px) {
  .form-vehicle-title-card {
    padding: 14px;
  }

  .form-vehicle-eyebrow {
    font-size: 0.72rem;
    padding: 6px 9px;
  }
}

.header-spacer {
  min-width: 1px;
}
.header-badges {
  justify-self: end;
}

.site-header {
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.045);
}

.main-shell {
  padding-top: 30px;
}

.top-trust-strip {
  margin-inline: auto;
  margin-bottom: 18px;
}

.strip-item {
  min-height: 74px;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.strip-item:hover {
  transform: translateY(-2px);
  border-color: rgba(230, 14, 34, 0.2);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.09);
}

.quote-frame {
  max-width: 1280px;
  margin-inline: auto;
  background: #fff;
}

.form-side {
  padding: clamp(30px, 3.2vw, 48px);
}

.form-head {
  margin-bottom: 18px;
}

.completion-box {
  margin-bottom: 18px;
  background: linear-gradient(180deg, #f8fafc, #ffffff);
}

.field-card {
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.field-card:hover {
  transform: translateY(-1px);
  border-color: rgba(230, 14, 34, 0.18);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.075);
}

.form-control {
  background: #f8fafc;
}

.form-control::placeholder {
  color: #475569;
  opacity: 0.95;
}

.consent-box {
  margin-top: 22px !important;
  background: linear-gradient(180deg, #fff7ed, #fffaf5);
}

.cta-btn {
  margin-top: 4px;
}

.proof-grid {
  margin-top: 24px;
}

.proof-tile {
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.proof-tile:hover {
  transform: translateY(-2px);
  border-color: rgba(230, 14, 34, 0.18);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.alert-message:empty,
.alert-message h3:empty,
.error-text:empty {
  display: none !important;
}

@media (max-width: 991.98px) {
  .form-head h2 {
    font-size: clamp(1.65rem, 4vw, 2.25rem);
  }
}

@media (max-width: 767.98px) {
  .quote-frame {
    box-shadow: 0 20px 58px rgba(15, 23, 42, 0.13);
  }

  .form-side {
    padding: 24px 20px 28px;
  }

  .form-head h2,
  .form-head p {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .top-trust-strip {
    margin-bottom: 12px;
  }
  .visual-side,
  .form-side {
    padding: 18px;
  }
  .vehicle-summary {
    padding: 12px;
  }
  .field-card {
    padding: 11px;
  }
}

.quote-frame,
.strip-item,
.field-card,
.proof-tile,
.completion-box {
  isolation: isolate;
}

.visual-side,
.form-side {
  min-width: 0;
}

.form-head h2 {
  overflow-wrap: anywhere;
}

.vehicle-meta span {
  max-width: 100%;
  white-space: normal;
}

.form-control {
  width: 100%;
  appearance: none;
}

.form-control[type="tel"],
.form-control[type="email"],
.form-control[type="text"] {
  font-size: 16px; /* prevents iOS zoom on focus */
}

.mobile-cta .cta-btn {
  min-height: 58px;
}

@media (min-width: 1400px) {
  .form-side {
    padding: 25px;
  }
}

@media (max-width: 1299.98px) {
  .form-side {
    padding: 36px;
  }
}

@media (max-width: 1099.98px) {
  .top-trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .visual-side,
  .form-side {
    padding: 30px;
  }
  .process-item {
    grid-template-columns: 40px 1fr;
  }
  .process-icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }
}

@media (max-width: 991.98px) {
  .main-shell {
    padding: 22px 0 92px;
  }

  .quote-frame {
    border-radius: 26px;
  }

  .form-head {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
  }

  .mobile-cta {
    display: block;
    position: fixed;
  }
}

@media (max-width: 767.98px) {
  .site-header {
    padding-block: 10px !important;
  }

  .top-trust-strip {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 2px 2px 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .top-trust-strip::-webkit-scrollbar {
    height: 4px;
  }
  .top-trust-strip::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 999px;
  }

  .strip-item {
    flex: 0 0 82%;
    scroll-snap-align: start;
  }

  .quote-frame {
    border-radius: 23px;
    overflow: hidden;
  }

  .visual-side,
  .form-side {
    padding: 22px;
  }

  .hero-kicker {
    font-size: 0.78rem;
    padding: 7px 11px;
  }

  .form-head {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 16px;
  }

  .completion-box {
    padding: 12px;
    border-radius: 17px;
  }

  .field-card {
    padding: 12px;
    border-radius: 19px;
  }

  .form-control {
    min-height: 56px;
    padding-left: 42px;
    padding-right: 43px;
    border-radius: 15px;
  }

  .input-icon {
    left: 14px;
  }

  .consent-box {
    padding: 13px;
    border-radius: 17px;
  }

  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .proof-tile {
    min-height: 96px;
    padding: 12px 8px;
    border-radius: 18px;
  }

  .proof-tile i {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    margin-bottom: 7px;
  }
}

@media (max-width: 480px) {
  .main-shell {
    padding-top: 14px;
  }

  .form-side {
    padding: 18px;
  }

  .quote-frame {
    border-radius: 20px;
  }

  .strip-item {
    flex-basis: 88%;
  }

  .strip-item i {
    flex-basis: 34px;
    width: 34px;
    height: 34px;
    border-radius: 12px;
  }

  .strip-item strong {
    font-size: 0.82rem;
  }
  .strip-item span {
    font-size: 0.72rem;
  }

  .vehicle-summary-title {
    font-size: 0.92rem;
  }

  .process-item {
    grid-template-columns: 36px 1fr;
    gap: 11px;
  }

  .process-icon {
    width: 36px;
    height: 36px;
  }

  .process-item strong,
  .form-label {
    font-size: 0.85rem;
  }

  .process-item span {
    font-size: 0.84rem;
  }

  .form-head h2 {
    font-size: clamp(1.32rem, 7vw, 1.78rem);
  }

  .form-head p {
    font-size: 0.92rem;
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }

  .proof-tile {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 11px;
    min-height: auto;
    text-align: left;
  }

  .proof-tile i {
    margin-bottom: 0;
    flex: 0 0 34px;
  }

  .cta-btn {
    min-height: 58px;
    font-size: 1rem;
  }

  .mobile-cta {
    padding: 9px 10px calc(9px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 360px) {
  .form-side {
    padding: 15px;
  }

  .hero-kicker {
    font-size: 0.72rem;
  }

  .form-control {
    min-height: 54px;
    padding-left: 39px;
    padding-right: 40px;
  }

  .input-icon {
    left: 12px;
  }
}

@media (max-width: 1199.98px) {
  .top-trust-strip,
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .main-shell {
    padding-top: 24px;
  }

  .form-head {
    flex-direction: column;
  }
}

@media (max-width: 575.98px) {
  .main-shell {
    padding: 18px 0 12px;
  }
  .quote-frame {
    border-radius: 24px;
  }

  .top-trust-strip,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .mobile-cta {
    display: block;
  }
}

/* ===================================
   Modern Pagination
=================================== */

.pagination-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pagination-list a {
  text-decoration: none;
}

.blog-paging {
  min-width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  background: #ffffff;
  color: #475569;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.05),
    0 8px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.pagination-list a:hover .blog-paging {
  background: #0f172a;
  color: #fff;
  border-color: #0f172a;
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(15, 23, 42, 0.18);
}

.pagination-list a.active .blog-paging {
  background: linear-gradient(135deg, #0ea5e9, #14b8a6);
  color: #fff;
  border: none;
  box-shadow: 0 12px 25px rgba(20, 184, 166, 0.35);
}
.pagination-list a.active .blog-paging {
  width: 50px;
  min-width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #06b6d4, #14b8a6);
  color: #fff;
  font-weight: 700;
}

.blog-paging.nav-btn {
  padding: 0 22px;
  font-weight: 700;
}

@media (max-width: 576px) {
  .pagination-list {
    gap: 6px;
  }

  .blog-paging {
    width: 42px;
    height: 42px;
    min-width: 42px;
    font-size: 14px;
    border-radius: 10px;
    padding: 0 12px;
  }

  .blog-paging.nav-btn {
    width: auto;
  }
}

/* ===================================
  Thank You Page [signup2]
=================================== */

.ep-confirm-page {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at top left,
      rgba(11, 94, 215, 0.16),
      transparent 30%
    ),
    radial-gradient(
      circle at 85% 10%,
      rgba(255, 107, 0, 0.13),
      transparent 28%
    ),
    linear-gradient(135deg, #f8fbff 0%, #eef5ff 52%, #ffffff 100%);
}

.ep-hero-wrap {
  position: relative;
  z-index: 2;
  padding: clamp(34px, 5vw, 62px) 0 clamp(38px, 6vw, 76px);
}

.ep-success-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--ep-shadow);
  border-radius: var(--ep-radius);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.ep-success-content {
  padding: clamp(26px, 4vw, 52px);
}

.ep-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(18, 183, 106, 0.12);
  color: #027a48;
  font-weight: 800;
  font-size: 14px;
  border: 1px solid rgba(18, 183, 106, 0.18);
}

.ep-title {
  font-size: clamp(26px, 5vw, 40px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  font-weight: 800;
  margin: 18px 0 18px;
}

.ep-title span {
  color: var(--ep-primary);
}
.ep-trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.ep-trust-item {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 13px;
  border-radius: 18px;
  border: 1px solid var(--ep-border);
  background: rgba(255, 255, 255, 0.74);
}

.ep-trust-item i {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #eef5ff;
  color: #0b5fa5;
  font-size: 18px;
  flex: 0 0 auto;
}

.ep-trust-item strong {
  display: block;
  font-size: 14px;
  line-height: 1.2;
}

.ep-trust-item span {
  color: var(--ep-muted);
  font-size: 12px;
}

.ep-section {
  position: relative;
  z-index: 2;
  padding: 0 0 clamp(34px, 6vw, 70px);
}

.ep-step-card,
.ep-help-card,
.ep-summary-card {
  height: 100%;
  background: #fff;
  border: 1px solid var(--ep-border);
  border-radius: 24px;
  box-shadow: 0 14px 34px rgba(16, 24, 40, 0.07);
  padding: 24px;
  transition: 0.22s ease;
}

.ep-help-card:hover,
.ep-summary-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 46px rgba(16, 24, 40, 0.11);
}

.ep-help-card h3,
.ep-summary-card h3 {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.ep-help-card p,
.ep-summary-card p {
  color: var(--ep-muted);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 767.98px) {
  h3 {
    font-size: 20px;
    line-height: 26px;
  }

  .ep-success-content {
    text-align: center;
  }

  .ep-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .ep-trust-strip {
    grid-template-columns: 1fr;
  }

  .ep-sticky-inner {
    min-height: 98px;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: center;
  }

  .ep-sticky-inner .ep-btn-primary {
    width: 100%;
    min-height: 48px;
  }
}

/* ===================================
   Privacy policy
=================================== */

.policy-card,
.toc-card {
  height: 100%;
  border: 1px solid var(--ep-border);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(16, 24, 40, 0.07);
}

.toc-card {
  position: sticky;
  top: 20px;
  padding: 24px;
}

.toc-card h2 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ep-dark);
  margin-bottom: 16px;
}

.toc-card a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 0;
  color: #475467;
  font-weight: 700;
  border-bottom: 1px solid #eef2f7;
}

.toc-card a:hover {
  color: var(--ep-primary);
}

.policy-card {
  padding: 34px;
  margin-bottom: 24px;
  scroll-margin-top: 20px;
}
.policy-card p,
.policy-card li {
  color: #475467;
}

.policy-card ol,
.policy-card ul {
  padding-left: 1.4rem;
}

.policy-card li {
  margin-bottom: 8px;
}

.policy-note {
  padding: 18px 20px;
  border-left: 4px solid var(--ep-primary);
  background: #eaf2ff;
  border-radius: 16px;
  color: var(--ep-dark);
  font-weight: 700;
}

@media (max-width: 991px) {
  .privacy-hero {
    padding: 72px 0;
  }
  .toc-card {
    position: static;
    margin-bottom: 28px;
  }
}

@media (max-width: 767px) {
  .policy-card {
    padding: 24px;
  }
  .privacy-cta-box {
    padding: 30px;
  }
}

/* ===================================
   Footer
=================================== */

.footer {
  background: #081d33;
  color: #cbd5e1;
  padding: 55px 0 22px;
}

.footer h4 {
  color: #fff;
}

.footer a {
  display: block;
  color: #cbd5e1;
}

.footer a:hover {
  color: #fff;
}

.social-link {
  display: flex;
  gap: 12px;
}

.social-link {
  border-radius: 14px;
  text-decoration: none;
  color: #fff;
  font-size: 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.social-link:hover {
  transform: translateY(-4px);
  color: #fff;
}

/* Brand Colors */
.facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
  box-shadow: 0 10px 25px rgba(24, 119, 242, 0.35);
}

.twitter:hover {
  background: #000;
  border-color: #000;
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.15);
}

.linkedin:hover {
  background: #0a66c2;
  border-color: #0a66c2;
  box-shadow: 0 10px 25px rgba(10, 102, 194, 0.35);
}

.youtube:hover {
  background: #ff0000;
  border-color: #ff0000;
  box-shadow: 0 10px 25px rgba(255, 0, 0, 0.35);
}

@media (max-width: 991px) {
  .hero {
    padding: 54px 0;
  }

  .cta-band {
    padding: 30px;
  }
}

@media (max-width: 575px) {
  .top-strip {
    text-align: center;
  }

  .ep-hero-title,
  .hero h1,
  .engine-heading {
    font-size: 22px;
    line-height: 28px;
  }

  .hero-points {
    gap: 8px;
  }

  .hero-points span {
    font-size: 13px;
  }

  .quote-card {
    padding: 22px;
    border-radius: 18px;
  }

  .section-padding {
    padding: 55px 0;
  }

  .content-block {
    padding: 24px;
  }
}

@media (max-width: 768px) {
  .vrm-wrap {
    flex-direction: column;
  }

  .sticky-cta {
    width: 100%;
    min-width: 100%;
  }
}
