:root {
  --bg: #FAFAFA;        /* White Cap (background) */
  --text: #272727;      /* Velvet Black (main text) */
  --muted: #6B7280;     /* Neutral gray for secondary text */
  --accent: #0057B7;    /* Mountain Blue (primary brand color) */
  --accent-2: #FF6C02;  /* Golden Orange (secondary / highlight) */
  --radius: 12px;
  --container: 1100px;
}


@font-face {
  font-family: 'Gilroy';
  src: url('/fonts/Gilroy-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Gilroy';
  src: url('/fonts/Gilroy-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}


    *{box-sizing:border-box}
    html,body{height:100%;margin:0}
    body{
     font-family: 'Gilroy', sans-serif;
      background:var(--bg);
      color:var(--text);
      -webkit-font-smoothing:antialiased;
      -moz-osx-font-smoothing:grayscale;
      line-height:1.45;
    }

    .container{
      max-width:var(--container);
      margin:0 auto;
      padding: 0 20px; /* Consistent horizontal padding for all screen sizes */
    }

    /* Header */
    .site-header{padding:9px 0}
    .header-inner{display:flex;align-items:center;justify-content:space-between;gap:16px}
   

    .nav{display:flex;gap:12px;align-items:center}
    .nav a{font-weight:600;text-decoration:none;padding:8px 14px;border-radius:10px}
   
    /* Base Button */
.btn {
  display: inline-block;
  font-family: inherit;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: var(--radius);
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

/* Primary Button */
.btn-primary {
  background: var(--accent);   /* Mountain Blue */
  color: #fff;
  border: none;
}

.btn-primary:hover {
  background: var(--accent-2); /* Golden Orange on hover */
  color: #fff;
}

/* Outline Button */
.btn-outline {
  border: 2px solid var(--accent);
  color: var(--accent);
  background: transparent;
}

.btn-outline:hover {
  background: var(--accent);
  color: #fff;
}


    /* HERO */
    .hero{
      display:flex;
      align-items:center;
      justify-content:center;
      padding: 40px 0; /* Vertical padding only, let .container handle horizontal */
    }
    .hero-inner{
      max-width:900px;
      text-align:center;
    }
   .hero h1 {
    font-size: 3.5rem;     /* bigger headline */
    font-weight: 800;    /* bold for impact */
   }
   .hero p {
    font-size: 1.4rem;   /* slightly larger subtext */
    font-weight: 400;
   }


    .badges{display:flex;gap:14px;align-items:center;justify-content:center;flex-wrap:wrap}
    .badges img{height:56px;display:block}
    .become-driver{padding:12px 18px;border:2px solid var(--accent);border-radius:12px;color:var(--accent);font-weight:700;text-decoration:none}

    /* Full-bleed hero image */
    .full-bleed-image{width:100vw;margin-left:calc(50% - 50vw);overflow:hidden;border-top:1px solid rgba(15,23,36,0.04);border-bottom:1px solid rgba(15,23,36,0.04)}
    .full-bleed-image img{width:100%;height:auto;display:block}

    /* Responsive */
    @media (max-width:720px){
      .hero{padding:36px 0}
      .hero h1{font-size:1.9rem}
      .badges img{height:48px}
    }

    @media (max-width:420px){
      .badges img{height:40px}
      .logo{width:40px;height:40px}
    }


    /* Split Section */
.why-swift {
  padding: 80px 0; /* Vertical padding only */
  background: #fff;
  color: var(--text);
}

.split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.content {
  flex: 1;
  min-width: 300px;
}

.why-swift h2 {
  font-size: 2rem;
  margin-bottom: 24px;
  font-weight: 700;
  color: var(--accent);
}

.features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 18px;
}

.features li {
  background: #fafafa;
  padding: 16px 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.05);
  font-size: 1rem;
  line-height: 1.5;
}

.features li strong {
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
  color: var(--accent-2);
}

.image {
  flex: 1;
  min-width: 280px;
  display: flex;
  justify-content: center;
}

/* Phone Mockup Style */
.phone-frame {
  width: 280px;
  height: 560px;
  border: 12px solid #272727; /* phone body */
  border-radius: 36px;
  padding: 8px;
  background: #000;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  position: relative;
}

.phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

/* Add a small notch */
.phone-frame::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 12px;
  background: #000;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .split {
    flex-direction: column;
  }
  .image {
    margin-top: 24px;
  }
}

.image img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius); /* optional, keeps design soft */
}

.driver {
  padding: 4rem 0; /* Vertical padding only */
  background: var(--bg);
}

.driver-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.driver .content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.driver .content ul {
  margin: 1rem 0;
  padding-left: 1.2rem;
  list-style: disc;
  color: var(--muted);
}

.driver .content ul li {
  margin-bottom: 0.5rem;
}

.driver .image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .driver-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .driver .content {
    order: -1; /* content first, image second */
  }

  .driver .content ul {
    text-align: left;
    display: inline-block;
  }
}

.how-it-works {
  padding: 5rem 0; /* Vertical padding only */
  background: #fff;
  text-align: center;
}

.how-it-works h2 {
  font-size: 2.2rem;
  margin-bottom: 3rem;
  color: var(--accent);
  font-weight: 700;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.step {
  background: var(--bg);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.06);
}

.step .number {
  width: 40px;
  height: 40px;
  margin: 0 auto 1rem;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.step h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
}

.step p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
}

.how-it-works .cta .btn {
  padding: 14px 28px;
  font-size: 1.1rem;
}

.about-swift {
  padding: 5rem 0; /* Vertical padding only */
  background: var(--bg);
  color: var(--text);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.about-swift h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--accent);
}

.about-swift p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--muted);
}

.about-swift .image img {
  max-width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .about-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-swift .image {
    margin-top: 1.5rem;
  }
}

.safety {
  padding: 5rem 0; /* Vertical padding only */
  background: #f9f9f9;
  color: var(--text);
  text-align: center;
}

.safety h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--accent);
}

.safety .intro {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  color: var(--muted);
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.safety-item {
  background: #fff;
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.safety-item:hover {
  transform: translateY(-5px);
}

.safety-item .icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.75rem;
}

.team {
  padding: 5rem 0; /* Vertical padding only */
  text-align: center;
  background: #fff;
}

.team h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--accent);
}

.team .intro {
  font-size: 1.1rem;
  margin-bottom: 3rem;
  color: var(--muted);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.team-member {
  background: #fafafa;
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.team-member:hover {
  transform: translateY(-6px);
}

.photo-frame {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  border: 3px solid var(--accent);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.team-member .role {
  font-size: 0.95rem;
  color: var(--muted);
}

.site-footer {
  background: #f9fafb;
  padding: 3rem 0 1.5rem; /* Vertical padding only */
  color: var(--text);
  font-size: 0.95rem;
  border-top: 1px solid #e5e7eb;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  max-width: var(--container);
  margin: 0 auto;
}

.footer-brand {
  flex: 1;
  min-width: 200px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 0.5rem;
}

.footer-brand .tagline {
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-links {
  flex: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.8rem 2rem;
}

.footer-links a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--muted);
}

/* Header Logo */
.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 56px;   /* adjust up/down (56px–64px) to resize */
  width: auto;    /* keeps correct proportions */
  display: block;
}

/* Make logo smaller on mobile */
@media (max-width: 480px) {
  .logo img {
    height: 40px;
  }
}

.site-header {
  padding: 1rem 0;  /* increase top & bottom padding */
}

.contact {
      padding: 5rem 0; /* Vertical padding only */
      background: #fff;
      color: var(--text);
    }

    .contact h2 {
      text-align: center;
      font-size: 2rem;
      margin-bottom: 2rem;
      font-weight: 700;
      color: var(--accent);
    }

    .contact-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      max-width: var(--container);
      margin: 0 auto;
      align-items: start;
    }

    .contact-details {
      font-size: 1rem;
      line-height: 1.6;
      color: var(--muted);
    }

    .contact-details p {
      margin-bottom: 1rem;
    }

    .contact-form {
      background: #fafafa;
      padding: 2rem;
      border-radius: var(--radius);
      box-shadow: 0 4px 14px rgba(0,0,0,0.05);
    }

    .contact-form label {
      display: block;
      font-weight: 600;
      margin-bottom: 0.5rem;
      color: var(--text);
    }

    .contact-form input,
    .contact-form textarea {
      width: 100%;
      padding: 12px;
      margin-bottom: 1.5rem;
      border: 1px solid #ddd;
      border-radius: var(--radius);
      font-family: inherit;
      font-size: 1rem;
    }

    .contact-form textarea {
      resize: vertical;
      min-height: 120px;
    }

    .contact-form button {
      background: var(--accent);
      color: #fff;
      padding: 12px 24px;
      border: none;
      border-radius: var(--radius);
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.25s ease;
    }

    .contact-form button:hover {
      background: var(--accent-2);
    }

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



     .onboarding-section {
      padding: 80px 0; /* Vertical padding only */
      max-width: 1000px;
      margin: auto;
    }
    .onboarding-section h2 {
      text-align: center;
      font-size: 2.5rem;
      margin-bottom: 40px;
    }
    .accordion {
      border-left: 3px solid #28a745;
      margin-left: 20px;
    }
    .accordion-item {
      margin-bottom: 20px;
      position: relative;
      padding-left: 25px;
    }
    .accordion-item::before {
      content: attr(data-step);
      position: absolute;
      left: -40px;
      top: 0;
      background: #28a745;
      color: #fff;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: bold;
    }
    .accordion-header {
      font-size: 1.2rem;
      font-weight: bold;
      cursor: pointer;
      padding: 10px 15px;
      background: #f5f5f5;
      border-radius: 8px;
      transition: background 0.3s ease;
    }
    .accordion-header:hover {
      background: #eaeaea;
    }
    .accordion-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.3s ease;
      background: #fff;
      border-radius: 8px;
      margin-top: 5px;
      padding: 0 15px;
    }
    .accordion-content.open {
      max-height: 500px; /* enough space for text */
      padding: 15px;
    }
    .cta-center {
      text-align: center;
      margin-top: 40px;
    }
    .cta-center a {
      display: inline-block;
      padding: 12px 24px;
      background: #28a745;
      color: #fff;
      text-decoration: none;
      border-radius: 8px;
      font-size: 1.1rem;
      transition: background 0.3s ease;
    }
    .cta-center a:hover {
      background: #218838;
    }


/* Progress Bar */
.progressbar { display: flex; margin-bottom: 30px; counter-reset: step; padding: 0; }
.progressbar li {
  list-style-type: none;
  width: 25%;
  position: relative;
  text-align: center;
  color: #ccc;
  font-weight: 600;
}
.progressbar li::before {
  content: counter(step);
  counter-increment: step;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border: 2px solid #ccc;
  display: block;
  text-align: center;
  margin: 0 auto 10px auto;
  border-radius: 50%;
  background-color: white;
}
.progressbar li::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: #ccc;
  top: 15px;
  left: -50%;
  z-index: -1;
}
.progressbar li:first-child::after { content: none; }
.progressbar li.active { color: #4a90e2; }
.progressbar li.active::before { border-color: #4a90e2; }
.progressbar li.active + li::after { background: #4a90e2; }

/* Form and Inputs */
form { display: flex; flex-direction: column; }
.form-step { display: none; }
.form-step.active { display: block; }
label { margin-bottom: 5px; font-weight: 500; color: #555; display: block; }
input:not([type="file"]), select { width: 100%; padding: 10px 12px; margin-bottom: 15px; border-radius: 6px; border: 1px solid #ccc; }
input:focus, select:focus, button:focus { outline: none; border-color: #4a90e2; box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2); }

/* Buttons */
.btns { display: flex; justify-content: space-between; margin-top: 20px; }
button {
  padding: 10px 20px; border: none; border-radius: 6px; cursor: pointer;
  font-weight: 600; transition: all 0.3s ease;
}
button.next { background: #4a90e2; color: white; }
button.next:hover { background: #357ab8; }
button.prev { background: #ccc; color: #333; }
button.prev:hover { background: #aaa; }

/* Modern File Upload Styles */
input[type="file"] {
  display: none;
}
.file-upload-box {
  border: 2px dashed #ccc;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.file-upload-box:hover {
  border-color: #4a90e2;
  background-color: #f0f7ff;
}
.upload-icon {
  font-size: 3rem;
  font-weight: 300;
  color: #888;
  line-height: 1;
  user-select: none;
}
.upload-text {
  font-size: 0.9rem;
  color: #888;
  margin-top: 5px;
}
.preview-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 4px;
}
.file-upload-box.has-file {
  border-style: solid;
  border-color: #4a90e2;
}
.file-upload-box .upload-icon, .file-upload-box .upload-text {
  transition: opacity 0.3s ease;
}
.file-upload-box.has-file .upload-icon, .file-upload-box.has-file .upload-text {
  display: none;
}
.file-upload-box.has-document .upload-icon {
  font-size: 3rem;
}
.file-upload-box.has-document .preview-image {
  display: none !important;
}

/* Media Queries for Responsiveness */
@media(max-width: 768px){
  /* Container already handles padding, so this isn't needed anymore */
  /* .container {
    padding: 20px;
    margin: 20px;
  } */
}
@media(max-width: 480px){
  .btns { flex-direction: column; gap: 10px; }
  button { width: 100%; }
  .header-inner { flex-direction: column; }
  .nav { margin-top: 10px; }
  .nav a { margin: 0 5px; }
  .footer-links { flex-direction: column; text-align: center; }
}