/* =====================================================================
   SCOPED STYLES — EV Towing & Roadside Rescue section
   Everything below is nested under ".fe-evtow" on purpose. Nothing here
   redefines Bootstrap's global classes (.btn-primary, .card, etc.) or
   any bare tag selectors, so it cannot bleed into the rest of your
   site. Drop this whole <style> block into your stylesheet (or keep it
   inline) and paste the markup anywhere on the page — it's self
   contained.
   ===================================================================== */
.fe-evtow-service-card img {
    height: 220px !important;
    width: 100%;
    /* aspect-ratio: 4 / 2; */
}
.fe-evtow {
  --fe-teal: #00A8BD;
  --fe-teal-dark: #00B4C9;
  --fe-teal-darker: #008C9D;
  --fe-teal-light: #e6f5f3;
  --fe-navy: #10182b;
  --fe-muted: #1b1e23;
  --fe-border: #e8eaef;
  --fe-soft-bg: #f7f9fb;
  --fe-star: #f5a524;
  --fe-radius-lg: 20px;
  --fe-radius-md: 14px;
  --fe-radius-sm: 10px;
  --fe-shadow-sm: 0 2px 10px rgba(16, 24, 43, .05);
  --fe-shadow-md: 0 10px 28px rgba(16, 24, 43, .08);
  color: var(--fe-navy);
  background: #fff;
  overflow: hidden;
}

.fe-evtow * { box-sizing: border-box; }

.fe-evtow h1.fe-evtow-h1,
.fe-evtow h2.fe-evtow-h2,
.fe-evtow h3.fe-evtow-h3,
.fe-evtow .fe-evtow-heading-font {
}

/* ---------- generic helpers ---------- */
.fe-evtow .fe-evtow-teal { color: var(--fe-teal); }
.fe-evtow .fe-evtow-muted { color: var(--fe-muted); }
.fe-evtow .fe-evtow-section { padding-top: 56px; padding-bottom: 56px; }

.fe-evtow .fe-evtow-divider {
  border-top: 1px solid var(--fe-border);
  width: 100%;
}

/* =====================================================================
   HERO
   ===================================================================== */
.fe-evtow-hero { padding-top: 88px; padding-bottom: 16px; }
.fe-evtow-hero {
  position: relative;
  z-index: 0;
  border-radius: var(--fe-radius-lg);
  overflow: hidden;
  padding: 48px 32px;
  margin-top: 85px;

  /* 👉 swap this URL for your real photo */
  background-image: url('../assests/images/towbanner.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* readability overlay — fades from solid white (left, where the text sits)
   to see-through (right, where the photo shows) */

/* keep all real content above the overlay */
.fe-evtow-hero > .row {
  position: relative;
  z-index: 2;
}

.fe-evtow-hero-img {
  background: none;
}

.fe-evtow-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--fe-teal);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.fe-evtow-eyebrow i { font-size: 1rem; }

.fe-evtow-h1 {
  font-weight: 800;
  font-size: 48.256px;
  line-height: 1.12;
  letter-spacing: -.01em;
  color: var(--fe-navy);
  margin-bottom: 18px;
}
.fe-evtow-h1 span { color: var(--fe-teal); display: block; }

.fe-evtow-hero-lead {
  font-size: 1.02rem;
  color: var(--fe-muted);
  line-height: 1.6;
  margin-bottom: 14px;
  max-width: 480px;
}

.fe-evtow-stat-row { margin-top: 28px; margin-bottom: 28px; }
.fe-evtow-stat-row .fe-evtow-stat-item { display: flex; gap: 8px; align-items: flex-start; }
.fe-evtow-stat-row .fe-evtow-stat-icon {
  width: 26px; height: 26px;
  flex: 0 0 26px;
  display: flex; align-items: center; justify-content: center;
  color: var(--fe-teal);
  font-size: 1.1rem;
  margin-top: 1px;
}
.fe-evtow-stat-row .fe-evtow-stat-title { font-weight: 700; font-size: .95rem; color: var(--fe-navy); margin-bottom: 2px; line-height: 1.3; }
.fe-evtow-stat-row .fe-evtow-stat-sub { font-size: .88rem; color: var(--fe-muted); }

/* Get Help Now card */
.fe-evtow-help-card {
  background: #fff;
  border: 1px solid var(--fe-border);
  border-radius: var(--fe-radius-lg);
  box-shadow: var(--fe-shadow-md);
  padding: 26px 28px;
}
.fe-evtow-help-card .fe-evtow-help-title { font-weight: 700; font-size: 1.15rem; margin: 0; }
.fe-evtow-help-card .fe-evtow-help-est { font-size: .85rem; color: var(--fe-muted); }
.fe-evtow-help-card .fe-evtow-help-est strong { color: var(--fe-navy); }

.fe-evtow-input-wrap {
  position: relative;
  flex: 1 1 auto;
}
.fe-evtow-input-wrap input {
  width: 100%;
  height: 50px;
  border: 1px solid var(--fe-border);
  border-radius: var(--fe-radius-sm);
  padding: 0 42px 0 16px;
  font-size: .92rem;
  color: var(--fe-navy);
  background: #fff;
  outline: none;
}
.fe-evtow-input-wrap input::placeholder { color: #98a2b3; }
.fe-evtow-input-wrap input:focus {
  border-color: var(--fe-teal);
  box-shadow: 0 0 0 3px rgba(11,110,116,.12);
}
.fe-evtow-input-wrap i {
  position: absolute;
  right: 14px; top: 50%; transform: translateY(-50%);
  color: var(--fe-teal);
  font-size: 1.05rem;
  pointer-events: none;
}

.fe-evtow-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 50px;
  padding: 0 26px;
  border-radius: var(--fe-radius-sm);
  font-weight: 700;
  font-size: .92rem;
  border: none;
  white-space: nowrap;
  transition: background-color .15s ease, transform .05s ease;
  text-decoration: none;
}
.fe-evtow-btn:active { transform: translateY(1px); }
.fe-evtow-btn-teal { background: #008C9D; color: #fff;border-radius: 999px; }
.fe-evtow-btn-teal:hover { background: var(--fe-teal-dark); color: #fff; }
.fe-evtow-btn-outline {
  background: #fff;
  color: var(--fe-navy);
  border: 1px solid var(--fe-border);
}

.fe-evtow-help-foot { margin-top: 20px; }
.fe-evtow-help-foot .fe-evtow-foot-item {
  display: flex; align-items: center; gap: 8px;
  font-size: .8rem; color: var(--fe-muted);
}
.fe-evtow-help-foot .fe-evtow-foot-item i { color: var(--fe-teal); font-size: 1rem; }

/* Hero media */
.fe-evtow-hero-media { position: relative; height: 100%; min-height: 360px; }
.fe-evtow-hero-img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border-radius: var(--fe-radius-lg);
  background: linear-gradient(135deg, #cfd9df 0%, #e2e8f0 50%, #c9d6dd 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #5b6a78;
  text-align: center;
  padding: 24px;
  overflow: hidden;
}
.fe-evtow-hero-img i { font-size: 2.6rem; margin-bottom: 8px; opacity: .55; }
.fe-evtow-hero-img span { font-size: .78rem; font-weight: 600; opacity: .7; max-width: 220px; }

.fe-evtow-offer-badge {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 260px;
  background: var(--fe-teal);
  color: #fff;
  border-radius: var(--fe-radius-md);
  padding: 20px 22px;
  box-shadow: var(--fe-shadow-md);
}
.fe-evtow-offer-badge .fe-evtow-offer-label {
  display: flex; align-items: center; gap: 8px;
  font-size: .68rem; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 14px;
  opacity: .95;
}
.fe-evtow-offer-badge .fe-evtow-offer-up { font-size: .82rem; opacity: .9; margin-bottom: 2px; }
.fe-evtow-offer-badge .fe-evtow-offer-pct {
  
  font-weight: 800;
  font-size: 1.9rem;
  line-height: 1.15;
  margin-bottom: 10px;
}
.fe-evtow-offer-badge .fe-evtow-offer-desc { font-size: .82rem; line-height: 1.45; opacity: .95; }

/* =====================================================================
   FEATURE STRIP
   ===================================================================== */
.fe-evtow-strip {
  background: var(--fe-soft-bg);
  border-radius: var(--fe-radius-lg);
  padding: 32px 28px;
}
.fe-evtow-strip-item { display: flex; gap: 12px; align-items: flex-start; height: 100%; }
.fe-evtow-strip-item .fe-evtow-strip-icon {
  width: 40px; height: 40px; flex: 0 0 40px;
  display: flex; align-items: center; justify-content: center;
  color: var(--fe-teal);
  font-size: 1.35rem;
}
.fe-evtow-strip-item .fe-evtow-strip-icon i {
    font-size: 2.1rem;
}
.fe-evtow-strip-item .fe-evtow-strip-title { font-weight: 700; font-size: 1.02rem; margin-bottom: 10px; color: #0B93A0; }
.fe-evtow-strip-item .fe-evtow-strip-sub { font-size: .96rem; color: #000; line-height: 1.45; }
.fe-evtow-strip-col { border-left: 1px solid var(--fe-border); padding-left: 24px; }
@media (max-width: 767.98px) {
  .fe-evtow-strip-col { border-left: none; padding-left: 0; }
}

/* =====================================================================
   HOW IT WORKS
   ===================================================================== */
.fe-evtow-steps-row { margin-top: 36px; }
.fe-evtow-step { position: relative; text-align: left; padding-right: 10px; }
.fe-evtow-step-icon {
  position: relative;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--fe-soft-bg);
  display: flex; align-items: center; justify-content: center;
  color: var(--fe-teal);
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.fe-evtow-step-num {
  position: absolute;
  top: -4px; left: -4px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--fe-teal);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.fe-evtow-step-title { font-weight: 700; font-size: .95rem; margin-bottom: 4px; }
.fe-evtow-step-sub { font-size: .82rem; color: var(--fe-muted); line-height: 1.45; max-width: 200px; }
.fe-evtow-step-arrow {
  position: absolute;
  top: 28px;
  right: -14px;
  color: #cfd6e0;
  font-size: 1.1rem;
  display: none;
}
@media (min-width: 992px) {
  .fe-evtow-step-arrow { display: block; }
}

/* =====================================================================
   SERVICES
   ===================================================================== */
.fe-evtow-service-card {
  border: 1px solid var(--fe-border);
  border-radius: var(--fe-radius-md);
  overflow: hidden;
  height: 100%;
  background: #fff;
  transition: box-shadow .15s ease, transform .15s ease;
}
.fe-evtow-service-card:hover { box-shadow: var(--fe-shadow-md); transform: translateY(-2px); }
.fe-evtow-service-thumb {
  height: 150px;
  background: linear-gradient(135deg, #dde4ea, #eef1f4);
  display: flex; align-items: center; justify-content: center;
  color: #7c8a98;
}
.fe-evtow-service-thumb i { font-size: 2rem; opacity: .5; }
.fe-evtow-service-body { padding: 16px 18px 18px; }
.fe-evtow-service-head { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.fe-evtow-service-head .fe-evtow-service-icon {
  width: 26px; height: 26px; flex: 0 0 26px;
  display: flex; align-items: center; justify-content: center;
  color: var(--fe-teal); font-size: 1.05rem;
}
.fe-evtow-service-head .fe-evtow-service-title { font-weight: 700; font-size: .96rem; margin: 0; }
.fe-evtow-service-desc { font-size: .82rem; color: var(--fe-muted); line-height: 1.5; margin: 0; }

/* =====================================================================
   PROVIDERS
   ===================================================================== */
.fe-evtow-link {
  color: var(--fe-teal);
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
}
.fe-evtow-link:hover { text-decoration: underline; color: var(--fe-teal-dark); }

.fe-evtow-provider-card {
  border: 1px solid var(--fe-border);
  border-radius: var(--fe-radius-md);
  background: #fff;
  padding: 22px 22px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--fe-shadow-sm);
}
.fe-evtow-provider-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 16px; }
.fe-evtow-provider-logo { display: flex; align-items: center; gap: 8px; }
.fe-evtow-provider-logo i { font-size: 1.55rem; color: var(--fe-navy); }
.fe-evtow-provider-logo .fe-evtow-logo-text { font-weight: 800; font-size: .92rem; line-height: 1.05; letter-spacing: -.01em; }
.fe-evtow-provider-logo .fe-evtow-logo-text small { display: block; font-size: .92rem; font-weight: 800; color: var(--fe-teal); }

.fe-evtow-pill {
  background: var(--fe-teal-light);
  color: var(--fe-teal);
  font-size: .68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.fe-evtow-provider-name { font-weight: 700; font-size: 1.02rem; margin-bottom: 8px; }
.fe-evtow-stars { display: flex; align-items: center; gap: 5px; margin-bottom: 18px; font-size: .82rem; color: var(--fe-muted); }
.fe-evtow-stars .fe-evtow-star-icons { color: var(--fe-star); font-size: .82rem; letter-spacing: 1px; }

.fe-evtow-provider-stats { display: flex; gap: 28px; margin-bottom: 18px; }
.fe-evtow-provider-stats .fe-evtow-stat-val { font-weight: 700; font-size: .95rem; }
.fe-evtow-provider-stats .fe-evtow-stat-lbl { font-size: .76rem; color: var(--fe-muted); }

.fe-evtow-provider-card .fe-evtow-btn { width: 100%; margin-top: auto; }

.fe-evtow-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--fe-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--fe-navy);
  box-shadow: var(--fe-shadow-sm);
  z-index: 2;
}
.fe-evtow-carousel-nav-prev { left: -10px; }
.fe-evtow-carousel-nav-next { right: -10px; }
@media (max-width: 575.98px) {
  .fe-evtow-carousel-nav { display: none; }
}

/* =====================================================================
   TRUST BANNER
   ===================================================================== */
.fe-evtow-trust {
  background:linear-gradient(95deg, var(--fe-primary) 0%, var(--fe-accent-cyan) 100%);
  border-radius: var(--fe-radius-lg);
  overflow: hidden;
  color: #fff;
}
.fe-evtow-trust-text { padding: 38px 40px; }
.fe-evtow-trust-text h3 { font-weight: 700; font-size: 30px; margin-bottom: 26px;color: #fff; }
.fe-evtow-trust-stat { display: flex; flex-direction: column; gap: 6px; }
.fe-evtow-trust-stat i { font-size: 1.3rem; opacity: .9; margin-bottom: 4px; }
.fe-evtow-trust-stat .fe-evtow-trust-num {  font-weight: 800; font-size: 1.5rem; }
.fe-evtow-trust-stat .fe-evtow-trust-lbl { font-size: .78rem; opacity: .9; }
.fe-evtow-trust-media {
  height: 100%;
  min-height: 220px;
  background: linear-gradient(135deg, rgba(255,255,255,.18), rgba(255,255,255,.06));
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.85);
}
.fe-evtow-trust-media i { font-size: 2.2rem; opacity: .7; }

/* =====================================================================
   FOOTER CTA
   ===================================================================== */
.fe-evtow-cta {
  background: var(--fe-soft-bg);
  border: 1px solid var(--fe-border);
  border-radius: var(--fe-radius-lg);
  padding: 36px 40px;
}
.fe-evtow-cta-icon {
  width: 52px; height: 52px; flex: 0 0 52px;
  border-radius: 50%;
  border: 1.5px solid var(--fe-teal);
  display: flex; align-items: center; justify-content: center;
  color: var(--fe-teal);
  font-size: 1.4rem;
}
.fe-evtow-cta h3 { font-weight: 700; font-size: 1.2rem; margin-bottom: 4px; }
.fe-evtow-cta p { color: var(--fe-muted); font-size: .9rem; margin: 0; }

.fe-evtow-phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 50px;
  padding: 0 20px;
  background: #fff;
  border: 1px solid var(--fe-border);
  border-radius: var(--fe-radius-sm);
  font-weight: 700;
  font-size: .92rem;
  color: var(--fe-navy);
}
.fe-evtow-phone-pill i { color: var(--fe-teal); }

.fe-evtow-hr { border-top: 1px solid var(--fe-border); margin: 28px 0; }

.fe-evtow-trustlogo { display: flex; flex-direction: column; gap: 4px; }
.fe-evtow-trustlogo .fe-evtow-google { font-weight: 700; font-size: 2.05rem; }
.fe-evtow-trustlogo .fe-evtow-google span:nth-child(1) { color: #4285F4; }
.fe-evtow-trustlogo .fe-evtow-google span:nth-child(2) { color: #EA4335; }
.fe-evtow-trustlogo .fe-evtow-google span:nth-child(3) { color: #FBBC05; }
.fe-evtow-trustlogo .fe-evtow-google span:nth-child(4) { color: #4285F4; }
.fe-evtow-trustlogo .fe-evtow-google span:nth-child(5) { color: #34A853; }
.fe-evtow-trustlogo .fe-evtow-google span:nth-child(6) { color: #EA4335; }
.fe-evtow-trustpilot-name {  font-weight: 700; font-size: 2.05rem; color: #00b67a; }
.fe-evtow-trustpilot-name i { margin-right: 4px; }
.fe-evtow-mini-rating { font-size: 1rem; color: var(--fe-muted); }
.fe-evtow-mini-rating .fe-evtow-star-icons { color: var(--fe-star); font-size: .76rem; }

.fe-evtow-badgeitem { display: flex; align-items: center; gap: 10px; justify-content: center; }
.fe-evtow-badgeitem i {
  width: 38px; height: 38px; flex: 0 0 38px;
  border-radius: 50%;
  border: 1.5px solid var(--fe-teal);
  color: var(--fe-teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
}
.fe-evtow-badgeitem .fe-evtow-badge-title { font-weight: 700; font-size: .95rem; text-align: left; }
.fe-evtow-badgeitem .fe-evtow-badge-sub { font-size: .80rem; color: var(--fe-muted); text-align: left; }

@media (max-width: 991.98px) {
  .fe-evtow-h1 { font-size: 2.1rem; }
  .fe-evtow-trust-text { padding: 30px 26px; }
  .fe-evtow-cta { padding: 28px; }
}