/* ==========================================================================
   FordPass Premium Section Stylesheet
   Created for Taller Mapuche - Servicio Oficial Ford
   ========================================================================== */

:root {
  --ford-blue: #00095B;
  --ford-blue-light: #0A337E;
  --ford-blue-dark: #000533;
  --ford-orange: #FF5E14;
  --ford-glass-bg: rgba(255, 255, 255, 0.05);
  --ford-glass-border: rgba(255, 255, 255, 0.12);
  --ford-glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  --ford-text-muted: #a3bcc0;
}

/* Base Section Styling */
.fordpass-section {
  position: relative;
  background-image: url('../img/ford-pass.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #fff;
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 120px;
  z-index: 1;
}

.fordpass-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(7, 28, 31, 0.96) 0%, rgba(0, 9, 91, 0.94) 100%);
  z-index: -1;
}

/* Micro-animations */
@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 94, 20, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(255, 94, 20, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 94, 20, 0);
  }
}

/* Main Grid Layout */
.fordpass-grid-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  margin-bottom: 60px;
}

@media (max-width: 991px) {
  .fordpass-grid-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Subtitles & Titles */
.fordpass-section-subtitle {
  font-family: var(--ltn__heading-font);
  font-size: 16px;
  font-weight: 700;
  color: var(--ford-orange);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: block;
}

.fordpass-main-title {
  font-family: var(--ltn__heading-font);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 25px;
}

.fordpass-intro-text {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ford-text-muted);
  margin-bottom: 30px;
}

/* Support Technical Card */
.fordpass-support-card {
  background: rgba(255, 94, 20, 0.08);
  border: 1px solid rgba(255, 94, 20, 0.25);
  border-left: 4px solid var(--ford-orange);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.fordpass-support-card:hover {
  transform: translateX(5px);
  background: rgba(255, 94, 20, 0.12);
  box-shadow: 0 4px 20px rgba(255, 94, 20, 0.15);
}

.fordpass-support-icon {
  font-size: 28px;
  color: var(--ford-orange);
  animation: float 4s ease-in-out infinite;
}

.fordpass-support-content h4 {
  font-family: var(--ltn__heading-font);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.fordpass-support-content p {
  font-size: 15px;
  line-height: 1.5;
  color: #e8edee;
  margin-bottom: 0;
}

.fordpass-support-phone {
  color: var(--ford-orange) !important;
  font-weight: 700;
  font-size: 18px;
  display: inline-block;
  margin-top: 5px;
  transition: color 0.2s;
}

.fordpass-support-phone:hover {
  color: #fff !important;
  text-decoration: underline;
}

/* Glassmorphic Cards (Download Area) */
.fordpass-download-card {
  background: var(--ford-glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--ford-glass-border);
  border-radius: 16px;
  padding: 35px;
  box-shadow: var(--ford-glass-shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
}

.fordpass-download-card h3 {
  font-family: var(--ltn__heading-font);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #fff;
}

/* QR Code & Scanner Box */
.fordpass-qr-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
  position: relative;
}

.fordpass-qr-frame {
  background: #fff;
  padding: 12px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  margin-bottom: 12px;
  transition: transform 0.3s;
  display: inline-block;
}

.fordpass-qr-frame:hover {
  transform: scale(1.05);
}

.fordpass-qr-svg {
  width: 140px;
  height: 140px;
  display: block;
}

.fordpass-qr-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ford-text-muted);
  letter-spacing: 0.5px;
}

/* Store Buttons Grid */
.fordpass-badge-grid {
  display: flex;
  flex-direction: row;
  gap: 15px;
  justify-content: center;
  width: 100%;
}

@media (max-width: 480px) {
  .fordpass-badge-grid {
    flex-direction: column;
    align-items: center;
  }
}

.fordpass-store-btn {
  display: inline-flex;
  align-items: center;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 10px 16px;
  color: #fff !important;
  text-align: left;
  transition: all 0.3s;
  text-decoration: none;
  min-width: 160px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.fordpass-store-btn:hover {
  background: var(--ford-blue-light);
  border-color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(10, 51, 126, 0.4);
}

.fordpass-store-btn svg {
  margin-right: 10px;
  flex-shrink: 0;
}

.fordpass-store-btn-text {
  display: flex;
  flex-direction: column;
}

.fordpass-store-btn-tag {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.8;
  line-height: 1;
}

.fordpass-store-btn-name {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}

/* ==========================================================================
   Tabs Section
   ========================================================================== */
.fordpass-tabs-wrapper {
  margin-top: 40px;
}

.fordpass-tabs-header {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 45px;
  flex-wrap: wrap;
}

.fordpass-tab-btn {
  font-family: var(--ltn__heading-font);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 30px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.fordpass-tab-btn i {
  font-size: 16px;
  color: var(--ford-text-muted);
  transition: color 0.3s;
}

.fordpass-tab-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.25);
}

.fordpass-tab-btn.active {
  background: var(--ford-blue);
  border-color: var(--ford-orange);
  box-shadow: 0 4px 20px rgba(0, 9, 91, 0.5);
}

.fordpass-tab-btn.active i {
  color: var(--ford-orange);
}

/* Tab Panes */
.fordpass-tab-pane {
  display: none;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.5s ease;
}

.fordpass-tab-pane.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Step Timeline and Cards
   ========================================================================== */
.fordpass-steps-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
  margin-top: 20px;
}

/* Connecting Line on Desktop */
.fordpass-steps-timeline::after {
  content: '';
  position: absolute;
  top: 30px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 94, 20, 0.1) 0%, rgba(255, 94, 20, 0.8) 50%, rgba(255, 94, 20, 0.1) 100%);
  z-index: 1;
}

@media (max-width: 991px) {
  .fordpass-steps-timeline::after {
    display: none;
  }
}

.fordpass-step-card {
  background: var(--ford-glass-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--ford-glass-border);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  position: relative;
  z-index: 2;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.fordpass-step-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 94, 20, 0.4);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

/* Step Number Bubble */
.fordpass-step-num {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--ford-blue-dark);
  border: 2px solid var(--ford-orange);
  color: #fff;
  font-family: var(--ltn__heading-font);
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 0 10px rgba(255, 94, 20, 0.3);
  transition: all 0.3s;
}

.fordpass-step-card:hover .fordpass-step-num {
  background: var(--ford-orange);
  border-color: #fff;
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(255, 94, 20, 0.6);
}

.fordpass-step-card h5 {
  font-family: var(--ltn__heading-font);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.fordpass-step-card p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ford-text-muted);
  margin-bottom: 0;
}

/* Special Layout for Extra Card on Tab 3 (Mis Turnos) */
.fordpass-extra-info-card {
  background: rgba(10, 51, 126, 0.15);
  border: 1px solid rgba(10, 51, 126, 0.3);
  border-radius: 16px;
  padding: 30px 40px;
  margin: 40px auto 0 auto;
  max-width: 850px;
  display: flex;
  align-items: center;
  gap: 35px;
  text-align: left;
  box-shadow: var(--ford-glass-shadow);
  transition: border-color 0.3s ease;
}

.fordpass-extra-info-card:hover {
  border-color: rgba(255, 94, 20, 0.3);
}

.fordpass-extra-info-img {
  max-height: 180px;
  /* Massively enlarged */
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: block;
}

.fordpass-extra-info-card:hover .fordpass-extra-info-img {
  transform: scale(1.06);
}

.fordpass-extra-info-card i {
  font-size: 36px;
  color: var(--ford-orange);
}

.fordpass-extra-info-text {
  flex: 1;
}

.fordpass-extra-info-text h6 {
  font-family: var(--ltn__heading-font);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.fordpass-extra-info-text p {
  font-size: 14px;
  color: #e8edee;
  margin-bottom: 0;
  line-height: 1.6;
}

@media (max-width: 991px) {
  .fordpass-extra-info-card {
    flex-direction: column;
    text-align: center;
    padding: 24px;
    gap: 20px;
  }

  .fordpass-extra-info-img {
    max-height: 140px;
  }
}

/* ==========================================================================
   CSS Phone Mockups / Illustrations for Steps
   ========================================================================== */
.fordpass-mockup-wrapper {
  width: 100%;
  height: 230px;
  /* Increased by another 20% */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

/* Minimalist CSS SmartPhone Mockup */
.fordpass-mock-phone {
  width: 80px;
  height: 290px;
  border-radius: 12px;
  border: 3px solid #1a2c3a;
  background: #070d14;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Notch */
.fordpass-mock-phone::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 35px;
  height: 6px;
  background: #1a2c3a;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  z-index: 10;
}

/* Screen Contents based on steps */
.fordpass-mock-screen {
  width: 100%;
  height: 100%;
  padding: 10px 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Screen 1-1 (Ford Logo Login) */
.ford-logo-screen {
  background: linear-gradient(180deg, #001040 0%, #000315 100%);
}

.ford-logo-screen .mini-oval-logo {
  width: 45px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid #fff;
  background: #002C76;
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  font-style: italic;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
}

.ford-logo-screen .mini-input-bar {
  width: 80%;
  height: 6px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  margin-top: 15px;
}

.ford-logo-screen .mini-btn {
  width: 80%;
  height: 10px;
  background: #fff;
  border-radius: 5px;
  margin-top: 5px;
}

/* Screen 1-2 (VIN Scanner) */
.vin-scanner-screen {
  background: #0c1a24;
}

.vin-scanner-screen .viewfinder {
  width: 50px;
  height: 50px;
  border: 1px dashed var(--ford-orange);
  border-radius: 4px;
  position: relative;
  animation: pulse-glow 2s infinite;
}

.vin-scanner-screen .laser-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: red;
  box-shadow: 0 0 5px red;
}

.vin-scanner-screen .vin-text {
  font-size: 7px;
  color: #fff;
  margin-top: 10px;
  font-family: monospace;
}

/* Screen 1-3 (Connect Vehicle) */
.connect-vehicle-screen {
  background: #081020;
}

.connect-vehicle-screen .car-silhouette {
  font-size: 24px;
  color: #0073e6;
  margin-bottom: 8px;
  filter: drop-shadow(0 0 5px rgba(0, 115, 230, 0.5));
}

.connect-vehicle-screen .mini-btn-connect {
  width: 90%;
  height: 16px;
  background: #0073e6;
  border-radius: 8px;
  color: #fff;
  font-size: 7px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(0, 115, 230, 0.3);
}

/* Screen 1-4 (Start Vehicle) */
.start-vehicle-screen {
  background: #070d14;
}

.start-vehicle-screen .power-icon {
  font-size: 20px;
  color: #ff3333;
  margin-bottom: 8px;
  animation: pulse-glow 1.5s infinite;
  border-radius: 50%;
  padding: 4px;
}

.start-vehicle-screen .mini-btn-start {
  width: 90%;
  height: 16px;
  background: #ff3333;
  border-radius: 8px;
  color: #fff;
  font-size: 7px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Screen 1-5 (SYNC Permitir) */
.fordpass-mock-screen.dashboard-sync {
  width: 140px;
  height: 80px;
  border-radius: 8px;
  border: 3px solid #222;
  background: #111;
  padding: 6px;
}

.dashboard-sync .sync-title {
  font-size: 8px;
  font-weight: 700;
  color: #888;
  margin-bottom: 4px;
}

.dashboard-sync .sync-box {
  width: 100%;
  background: #1c1c1c;
  border: 1px solid #333;
  border-radius: 4px;
  padding: 5px;
  text-align: center;
}

.dashboard-sync .sync-prompt {
  font-size: 6px;
  color: #fff;
  margin-bottom: 6px;
}

.dashboard-sync .sync-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.dashboard-sync .sync-btn-yes {
  padding: 2px 6px;
  background: #0073e6;
  color: #fff;
  font-size: 6px;
  font-weight: 700;
  border-radius: 2px;
}

.dashboard-sync .sync-btn-no {
  padding: 2px 6px;
  background: #333;
  color: #ccc;
  font-size: 6px;
  border-radius: 2px;
}

/* Screen 2-1 (Servicios Tab) */
.services-tab-screen {
  background: #0a111a;
}

.services-tab-screen .tab-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background: #141b25;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.services-tab-screen .tab-item {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #555;
}

.services-tab-screen .tab-item.active {
  background: var(--ford-orange);
}

.services-tab-screen .screen-content-icon {
  font-size: 24px;
  color: var(--ford-orange);
}

/* Screen 2-2 (Seleccion Favorito) */
.favorite-screen {
  background: #0a111a;
}

.favorite-screen .fav-heart {
  font-size: 24px;
  color: #ccc;
}

.favorite-screen .mini-card {
  width: 90%;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 6px;
  margin-top: 10px;
}

.favorite-screen .mini-card-btn {
  width: 100%;
  height: 12px;
  background: var(--ford-orange);
  border-radius: 4px;
  color: #fff;
  font-size: 6px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Screen 2-3 (List Concesionarios) */
.dealership-list-screen {
  background: #0a111a;
}

.dealership-list-screen .search-bar {
  width: 90%;
  height: 12px;
  background: #1c2635;
  border-radius: 6px;
  margin-bottom: 8px;
}

.dealership-list-screen .dealer-items {
  width: 90%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dealership-list-screen .dealer-item {
  height: 18px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  border-left: 2px solid var(--ford-orange);
}

/* Screen 2-4 (Seleccionar Favorito Check) */
.dealer-fav-check-screen {
  background: #0a111a;
}

.dealer-fav-check-screen .star-icon {
  font-size: 28px;
  color: gold;
  animation: pulse-glow 2s infinite;
  border-radius: 50%;
}

.dealer-fav-check-screen .mini-btn-fav {
  width: 90%;
  height: 16px;
  background: #00095B;
  border: 1px solid #fff;
  border-radius: 8px;
  color: #fff;
  font-size: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Screen 2-5 (Listo Favorito) */
.fav-done-screen {
  background: #081a18;
}

.fav-done-screen .success-icon {
  font-size: 32px;
  color: #28a745;
  filter: drop-shadow(0 0 8px rgba(40, 167, 69, 0.4));
}

.fav-done-screen .success-text {
  font-size: 8px;
  color: #fff;
  font-weight: 700;
  margin-top: 8px;
}

/* Screen 3-1 (Agendar Online Btn) */
.agendar-online-screen {
  background: #0a111a;
}

.agendar-online-screen .dealer-header {
  font-size: 8px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 6px;
}

.agendar-online-screen .mini-btn-agendar {
  width: 90%;
  height: 20px;
  background: var(--ford-blue-light);
  border-radius: 10px;
  color: #fff;
  font-size: 7px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(10, 51, 126, 0.5);
}

/* Screen 3-2 (Pickup & Delivery) */
.pickup-screen {
  background: #0a111a;
}

.pickup-screen .delivery-icons {
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
}

.pickup-screen .delivery-icon-box {
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--ford-orange);
}

.pickup-screen .delivery-icon-box.active {
  border: 1px solid var(--ford-orange);
  background: rgba(255, 94, 20, 0.15);
}

.pickup-screen .mini-text-line {
  width: 80%;
  height: 4px;
  background: #333;
  margin-top: 4px;
}

/* Screen 3-3 (Servicio Seleccion) */
.services-selection-screen {
  background: #0a111a;
}

.services-selection-screen .mini-select-box {
  width: 90%;
  height: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  margin-bottom: 6px;
}

.services-selection-screen .mini-checklist {
  display: flex;
  flex-direction: column;
  gap: 3px;
  width: 90%;
}

.services-selection-screen .mini-checklist-item {
  height: 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
  border-left: 2px solid var(--ford-blue-light);
}

/* Screen 3-4 (Calendario Agenda) */
.calendar-screen {
  background: #0a111a;
}

.calendar-screen .mini-cal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  width: 90%;
  margin-bottom: 8px;
}

.calendar-screen .mini-cal-day {
  height: 12px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
}

.calendar-screen .mini-cal-day.selected {
  background: var(--ford-orange);
}

.calendar-screen .mini-time-bar {
  width: 90%;
  height: 12px;
  background: var(--ford-blue);
  border-radius: 4px;
}

/* Screen 3-5 (Turno Confirmado) */
.confirm-screen {
  background: #05140e;
}

.confirm-screen .confirm-check {
  font-size: 28px;
  color: #28a745;
  animation: float 3s ease-in-out infinite;
}

.confirm-screen .confirm-box {
  width: 90%;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  padding: 4px;
  margin-top: 8px;
  border: 1px solid rgba(40, 167, 69, 0.2);
}

/* ==========================================================================
   Responsive adjustments for Timelines in Mobile View
   ========================================================================== */
@media (max-width: 991px) {
  .fordpass-tabs-header {
    gap: 8px;
    margin-bottom: 30px;
  }

  .fordpass-tab-btn {
    font-size: 15px;
    padding: 12px 20px;
    width: 100%;
    justify-content: center;
  }

  .fordpass-steps-timeline {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 25px;
    padding-top: 10px;
    gap: 20px;
    scrollbar-width: thin;
    scrollbar-color: var(--ford-orange) rgba(255, 255, 255, 0.1);
  }

  /* Styling scrollbars for modern web experience */
  .fordpass-steps-timeline::-webkit-scrollbar {
    height: 6px;
  }

  .fordpass-steps-timeline::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
  }

  .fordpass-steps-timeline::-webkit-scrollbar-thumb {
    background: var(--ford-orange);
    border-radius: 3px;
  }

  .fordpass-step-card {
    flex: 0 0 280px;
    /* Sized beautifully for mobile swipes */
    scroll-snap-align: center;
  }

  .fordpass-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .fordpass-main-title {
    font-size: 34px;
  }
}

/* Step images styling */
.fordpass-step-img {
  max-width: 100%;
  max-height: 236px;
  /* Increased by another 20% */
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: block;
}

.fordpass-step-card:hover .fordpass-step-img {
  transform: scale(1.06);
}