/* Main Banner */
.main-banner {
  position: relative;
  width: 100%;
  min-height: 100vh;
  /* Full viewport height */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Background Image */
.main-banner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.main-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* 0.5 = 50% black */
  z-index: 0;
}

/* Banner Text Container */
.banner-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 2;
  padding: 0 20px;
  /* ensures text doesn't touch edges on small screens */
}

/* Title */
.main-banner h1 {
  font-size: 48px;
  color: #fff;
  line-height: 1.2;
  font-weight: 700;
  max-width: 800px;
}

/* Button */
.main-banner button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 235px;
  height: 51px;
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  background: #9c588d;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.main-banner button:hover {
  background: #864a7a;
  transform: translateY(-2px);
}

/* ========================= */
/* 📱 Responsive Design */
/* ========================= */

/* Tablet (≤1024px) */
@media (max-width: 1024px) {
  .main-banner h1 {
    font-size: 38px;
    max-width: 650px;
  }

  .main-banner button {
    width: 210px;
    height: 48px;
    font-size: 15px;
  }
}

/* Large Mobile (≤768px) */
@media (max-width: 768px) {
  .main-banner {
    min-height: 90vh;
    padding: 0 20px;
  }

  .main-banner h1 {
    font-size: 32px;
    max-width: 500px;
  }

  .banner-text {
    gap: 16px;
  }

  .main-banner button {
    width: 190px;
    height: 45px;
    font-size: 14px;
  }
}

/* Small Mobile (≤480px) */
@media (max-width: 480px) {
  .main-banner {
    min-height: 55vh;
  }

  .main-banner h1 {
    font-size: 26px;
    line-height: 1.3;
  }

  .main-banner button {
    width: 170px;
    height: 42px;
    font-size: 13px;
  }

  .banner-text {
    gap: 14px;
  }
}

/* driver cta  */
.driver-cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 50vh;
  border: 1px solid rgba(166, 90, 138, 0.3);
  background: rgba(196, 178, 207, 0.12);
  margin: 100px auto;
  padding: 20px;
  text-align: center;
}

.driver-cta h1 {
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.96px;
  text-transform: capitalize;
  color: var(--text-color, rgba(39, 39, 39, 0.8));
  margin-bottom: 20px;
}

.driver-cta button {
  display: flex;
  width: 228px;
  height: 52px;
  padding: 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  background: var(--l, linear-gradient(270deg, #6a1b9a 0%, #c11d5c 100%));
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

/* ========================
   RESPONSIVE STYLES
======================== */

/* Tablets */
@media (max-width: 992px) {
  .driver-cta {
    height: auto;
    margin: 80px auto;
    padding: 60px 20px;
  }

  .driver-cta h1 {
    font-size: 36px;
  }

  .driver-cta button {
    width: 200px;
    height: 48px;
    font-size: 15px;
  }
}

/* Mobile (under 650px) */
@media (max-width: 650px) {
  .driver-cta {
    margin: 60px auto;
    padding: 50px 16px;
  }

  .driver-cta h1 {
    font-size: 28px;
    line-height: 1.4;
  }

  .driver-cta button {
    width: 180px;
    height: 45px;
    font-size: 14px;
  }
}

/* Extra Small Devices (under 400px) */
@media (max-width: 400px) {
  .driver-cta h1 {
    font-size: 24px;
  }

  .driver-cta button {
    width: 160px;
    height: 42px;
    font-size: 13px;
  }
}

/* why section  */
.why-section {
  max-width: 1200px;
  margin: 50px auto;
  padding: 60px 20px;
}

.why-header {
  text-align: center;
  margin-bottom: 60px;
}

.why-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.why-subtitle {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
}

.why-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.why-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.why-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.why-feature-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why-icon-box {
  background: linear-gradient(135deg, #b76e9e 0%, #9d5b88 100%);
  width: 70px;
  height: 70px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(183, 110, 158, 0.3);
}

.why-icon {
  width: 32px;
  height: 32px;
  stroke: white;
  fill: none;
  stroke-width: 2;
}

.why-feature-content {
  flex: 1;
}

.why-feature-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.why-feature-description {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

@media (max-width: 968px) {
  .why-content {
    grid-template-columns: 1fr;
  }

  .why-title {
    font-size: 2.5rem;
  }

  .why-image-container {
    order: -1;
  }
}

@media (max-width: 640px) {
  .why-title {
    font-size: 2rem;
  }

  .why-feature-title {
    font-size: 1.2rem;
  }

  .why-icon-box {
    width: 60px;
    height: 60px;
  }

  .why-icon {
    width: 28px;
    height: 28px;
  }
}

/* for driver css  */
.verification-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 20px 0;
}

.verification-header {
  text-align: center;
  margin-bottom: 50px;
}

.verification-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.verification-subtitle {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.verification-content {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  min-height: 600px;
}

.verification-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
}

.verification-overlay {
  position: relative;
  z-index: 1;
  padding: 80px 40px 60px;
  margin-top: -200px;
}

.verification-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.verification-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.verification-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.verification-badge {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #b76e9e 0%, #9d5b88 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  box-shadow: 0 8px 20px rgba(183, 110, 158, 0.4);
}

.verification-icon-wrapper {
  margin: 40px 0 25px;
}

.verification-icon {
  width: 50px;
  height: 50px;
  stroke: #b76e9e;
  fill: none;
  stroke-width: 2;
}

.verification-card-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.3;
}

.verification-card-description {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 25px;
}

.verification-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #b76e9e;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: gap 0.3s ease;
}

.verification-link:hover {
  gap: 12px;
}

.verification-arrow {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.verification-link:hover .verification-arrow {
  transform: translateX(3px);
}

@media (max-width: 1024px) {
  .verification-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .verification-card:last-child {
    grid-column: 1 / -1;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .verification-title {
    font-size: 2rem;
  }

  .verification-cards {
    grid-template-columns: 1fr;
  }

  .verification-card:last-child {
    grid-column: 1;
    max-width: 100%;
  }

  .verification-overlay {
    margin-top: 0px;
    padding: 60px 20px 40px;
  }

  .verification-content {
    min-height: auto;
  }
}

@media (max-width: 480px) {
  .verification-title {
    font-size: 1.7rem;
  }

  .verification-subtitle {
    font-size: 1rem;
  }

  .verification-badge {
    width: 70px;
    height: 70px;
    font-size: 1.5rem;
  }

  .verification-card {
    padding: 35px 25px;
  }

  .verification-card-title {
    font-size: 1.2rem;
  }
}