* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px; /* Base font size - 1rem = 16px */
  line-height: 1.6;
  color: #111;
  background-color: #fef5f6;
}

.container {
  max-width: 90%;
  margin: 0 auto;
  padding: 0 2rem;
}

.topbar {
  background-color: #111;
  color: white;
  padding: 0.75rem 0;
  font-size: 1rem;
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-info {
  display: flex;
  gap: 1.5rem;
}

.contact-info span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.slogan {
  font-weight: 500;
}

.navbar {
  background-color: white;
  padding: 1.25rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 2.8125rem;
  right: 0;
  left: 0;
  z-index: 100;
  width: 90%;
  margin: auto;
  border-radius: 2rem;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #e84144;
  font-weight: 700;
  font-size: 1.75rem;
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
}

.logo-image {
  /* width: clamp(24px, 4vw, 40px); */
  height: 2.5rem;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 101;
}

.mobile-menu-toggle span {
  display: block;
  width: 1.5625rem;
  height: 0.1875rem;
  background-color: #111;
  margin: 0.3125rem 0;
  transition: all 0.3s ease;
  border-radius: 0.125rem;
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 1.25rem;
    gap: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: none;
    border-radius: 0 0 20px 20px;
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
  }
}

.nav-links a {
  color: #1e1e1e;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #e84144;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #111;
  font-weight: 500;
  cursor: pointer;
}

.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
  will-change: opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.hero-background.active {
  opacity: 1;
  z-index: 1;
}

.driver-bg {
  background-image: url("assets/bgimg.png");
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(232, 65, 68, 0.3) 70%,
    rgba(232, 65, 68, 0.6) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  min-height: max-content;
  max-width: 87%;
  margin: 0 auto;
  padding: 0;
}

.hero-text h1 {
  font-size: 2.75rem;
  font-weight: 900;
  color: white;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.hero-text p {
  font-size: 1.875rem;
  font-weight: 300;
  color: white;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  line-height: 1.5;
}

.hero-cta {
  margin-bottom: 3rem;
}

.cta-button {
  background-color: transparent;
  color: white;
  border: none;
  padding: 1.25rem 2.5rem;
  border-radius: 999px;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #d63336;
  transform: translateY(-0.125rem);
}

.app-download p {
  color: white;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.app-badges {
  display: flex;
  gap: 1.25rem;
}

.app-badge {
  display: block;
  transition: transform 0.3s ease;
}

.app-badge:hover {
  transform: scale(1.05);
}

.app-badge img {
  height: 3.75rem;
  border-radius: 0.75rem;
  object-fit: scale-down;
}

.hero-text {
  position: relative;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(1.875rem);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  text-align: start;
}

.hero-slide.active {
  position: relative;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.hero-visual {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  right: 12%;
  top: 50%;
  transform: translateY(-50%);
  width: 69.125rem;
  height: 51.8125rem;
}
.section-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
}
.hero-slide-visual {
  position: absolute;
  top: 12rem;
  left: 24rem;
  width: 62.875rem;
  height: 47.1875rem;
  opacity: 0;
  transform: translateX(1.875rem);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide-visual[data-slide="0"],
.hero-slide-visual:first-of-type {
  width: 62.875rem;
  height: 47.1875rem;
}

.hero-slide-visual:last-of-type,
.hero-slide-visual[data-slide="1"] {
  width: 69.125rem;
  height: 51.8125rem;
  left: 20rem;
  top: 9rem;
}
.hero-slide-visual.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.hero-slide-visual img,
.hero-image-bg {
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.4))
    drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));

  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 1024px) {
  .hero-slide-visual img,
  .hero-image-bg {
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
  }
}

@media (max-width: 768px) {
  .hero-slide-visual img,
  .hero-image-bg {
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
    max-width: 100%;
  }
}

.hero-slide-visual[data-slide="0"] img {
  z-index: 2;
}

.hero-slide-visual[data-slide="1"] img {
  z-index: 1;
}

.slider-controls {
  position: relative;
  margin-top: 1.5rem;
  text-align: left;
}

.slider-dots {
  display: flex;
  gap: 0.625rem;
  align-items: center;
  gap: 1.5rem;
  margin-inline-start: 2rem;
}

.dot {
  width: 1.25rem;
  height: 0.3125rem;
  border-radius: 0.125rem;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
}

.dot.active {
  background-color: rgba(255, 255, 255, 0.9);
  transform: scalex(3);
}

.dot:hover {
  background-color: rgba(255, 255, 255, 0.7);
}

.hero:hover .hero-slide,
.hero:hover .hero-slide-visual {
  transition-duration: 0.3s;
}

.phone-mockup {
  width: 15.625rem;
  height: 31.25rem;
  background: linear-gradient(145deg, #f0f0f0, #e0e0e0);
  border-radius: 2.5rem;
  padding: 1.5625rem;
  box-shadow: 0 1.5625rem 3.125rem rgba(0, 0, 0, 0.3);
  position: relative;
}

.phone-1 {
  transform: rotate(-15deg) translateX(-1.5625rem);
  z-index: 2;
}

.phone-2 {
  transform: rotate(5deg) translateX(1.5625rem);
  z-index: 1;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.red-screen {
  background: #ef4444;
  color: white;
}

.app-interface {
  padding: 1.25rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.app-header {
  text-align: center;
  margin-bottom: 1.25rem;
  font-weight: 600;
  color: #111;
}

.store-name {
  font-size: 0.875rem;
}

.create-order-btn {
  background-color: #e84144;
  color: white;
  text-align: center;
  padding: 0.75rem;
  border-radius: 12px;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.active-orders h3 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: #111;
}

.order-item {
  background: #f8f9fa;
  padding: 0.75rem;
  border-radius: 8px;
  margin-bottom: 0.75rem;
}

.order-details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
}

.order-number {
  font-weight: 600;
  color: #e84144;
}

.customer-name,
.location {
  color: #0f172a;
}

.driver-info {
  font-size: 0.6875rem;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.order-total {
  font-weight: 600;
  color: #111;
  margin-bottom: 0.25rem;
}

.payment-method {
  font-size: 0.6875rem;
  color: #059669;
  background: #d1fae5;
  padding: 0.125rem 0.375rem;
  border-radius: 4px;
  display: inline-block;
}

.bottom-nav {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-around;
  background: white;
  padding: 0.75rem 0;
  border-top: 1px solid #e5e7eb;
}

.nav-item {
  font-size: 0.625rem;
  text-align: center;
  color: #0f172a;
}

.nav-item.active {
  color: #e84144;
  font-weight: 600;
}

.logo-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 0.75rem;
}

.logo-screen .logo-icon {
  width: 40px;
  height: 40px;
}

.logo-screen .logo-text {
  font-size: 1rem;
  font-weight: 600;
}

.driver-app-interface {
  padding: 1.25rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.driver-name {
  font-weight: 600;
  color: #111;
}

.driver-status {
  color: #059669;
  font-size: 0.75rem;
  background: #d1fae5;
  padding: 0.125rem 0.5rem;
  border-radius: 12px;
  margin-left: 0.5rem;
}

.earnings-summary {
  background: #f8f9fa;
  padding: 0.75rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.earnings-summary h3 {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  color: #111;
}

.earnings-amount {
  font-size: 1.25rem;
  font-weight: 700;
  color: #059669;
  margin-bottom: 0.25rem;
}

.earnings-breakdown {
  font-size: 0.6875rem;
  color: #0f172a;
}

.earnings-breakdown span {
  display: block;
}

.pickup-location,
.delivery-location,
.distance {
  color: #0f172a;
  font-size: 0.6875rem;
}

.order-value {
  font-weight: 600;
  color: #111;
  margin-bottom: 0.5rem;
}

.accept-order {
  background-color: #e84144;
  color: white;
  border: none;
  padding: 0.375rem 0.75rem;
  border-radius: 6px;
  font-size: 0.6875rem;
  font-weight: 600;
  cursor: pointer;
}

section {
  padding: 3.125rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-label {
  color: #e84144;
  font-size: 1.125rem;
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
  display: block;
}

.section-header h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.section-header p {
  font-size: 1.125rem;
  font-weight: 300;
  color: #5a5a5a;
  max-width: 50%;
  margin: 0 auto;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .section-header p {
    max-width: 95%;
    font-size: 1rem;
  }
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.125rem;
  margin-bottom: 2.5rem;
}

.feature-card {
  background: transparent;
  padding: 3.125rem 0;
  border-radius: 1.25rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}
.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.feature-card p {
  font-size: 1.125rem;
  font-weight: 400;
  color: #0f172a;
  line-height: 1.6;
}

.survey-banner {
  background: #fde2e5;
  padding: 2.5rem 3.125rem;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.survey-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
  justify-content: space-between;
}

.survey-content-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  justify-content: space-between;
}

.survey-icon {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #e84144;
}

.stars {
  color: #f59e0b;
  font-size: 1.125rem;
}

.survey-text h4 {
  font-size: 1.625rem;
  font-weight: 700;
  color: #e84144;
  margin-bottom: 0.5rem;
  display: ruby-text;
}

.survey-text p {
  color: #1e1e1e;
  font-size: 1.25rem;
  font-weight: 400;
}

.survey-button {
  display: inline-block;
  background-color: #e84144;
  color: white;
  border: none;
  padding: 0.625rem 2rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.survey-button:hover {
  background-color: #d63336;
  transform: translateY(-0.125rem);
}

.about-content {
  display: flex;
  flex-direction: row-reverse;
  gap: 2.5rem;
  align-items: center;
  justify-content: space-between;
}
.about-text {
  flex: 1;
}
.about-text .section-label {
  margin-bottom: 1.25rem;
}

.about-text h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  color: #1e1e1e;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.description {
  color: #5a5a5a;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 3rem;
}

.download-section {
  margin-bottom: 2.5rem;
}

.download-section h3 {
  color: #e84144;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.about-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-phone-1 {
  transform: rotate(-10deg) translateX(-2.5rem);
  z-index: 2;
}

.about-phone-2 {
  transform: rotate(8deg) translateX(2.5rem);
  z-index: 1;
}

.background-circle {
  position: absolute;
  width: 25rem;
  height: 25rem;
  background: #ef4444;
  border-radius: 50%;
  opacity: 0.1;
  z-index: 0;
  bottom: -3.75rem;
  right: -3.75rem;
}

.services-section {
  background: #fef5f6;
  padding: 2.5rem 0;
}

.services-tabs {
  width: min-content;

  margin: auto;
  background-color: #fff;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 0.625rem;
}

.tab-button {
  background: white;
  color: #0f172a;
  border: none;
  padding: 0.625rem 2rem;
  border-radius: 999px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  width: max-content;
}

.tab-button.active {
  background-color: #e84144;
  color: white;
}

.tab-button:hover:not(.active) {
  background-color: #f8f9fa;
  color: #111;
}

.services-subsection {
  text-align: center;
  margin-bottom: 3.75rem;
  display: none;
}

.services-subsection.active-content {
  display: block;
}

.services-subheading {
  font-size: 1.75rem;
  font-weight: 700;
  color: #e84144;
  margin-bottom: 1.25rem;
}

.services-description {
  font-size: 1.125rem;
  font-weight: 300;
  color: #5a5a5a;
  max-width: min(700px, 90vw);
  margin: 0 auto;
  line-height: 1.5;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3.75rem;
}

.owners-grid,
.drivers-grid,
.fleet-grid {
  display: none;
}

.owners-grid.active-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.fleet-grid.active-content {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 800px;
  margin: 0 auto;
}

.services-subsection {
  text-align: center;
  margin-bottom: 3.75rem;
  display: none;
}

.services-subsection.active-content {
  display: block;
}

.drivers-content,
.fleet-content {
  display: none;
}

.drivers-content.active-content,
.fleet-content.active-content {
  display: block;
}

.drivers-grid.active-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 3.75rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.iti {
  width: 100%;
}
.service-card {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 1.25rem 2.5rem;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-card img {
  width: 50px;
  height: 50px;
}

.service-card h3 {
  color: #e84144;
  font-size: 1.5rem;
  font-weight: 700;
}

.subtitle {
  color: #666;
  font-size: 1.125rem;
  font-weight: 600;
}

.ideal-for {
  color: #666;
  font-size: 1.125rem;
  line-height: 1.6;
}

.what-you-get {
  margin-bottom: 1.25rem;
}

.what-you-get h4 {
  color: #e84144;
  font-weight: 600;
  font-size: 1.125rem;
}

.what-you-get p {
  color: #666;
  font-size: 1.125rem;
  line-height: 1.6;
}

.key-features h4 {
  color: #e84144;
  font-weight: 600;
  font-size: 1.125rem;
}

.key-features ul {
  list-style: none;
  margin: 0.5rem 0 1.125rem 1.25rem;
}

.key-features li {
  color: #666;
  margin: 0.375rem 0;
  padding-left: 0;
  position: relative;
  font-size: 1.125rem;
  line-height: 1.6;
}

.key-features li::before {
  content: "•";
  position: absolute;
  left: -15px;
  color: #666;
  font-weight: 600;
}

.outcome {
  margin-top: 1.25rem;
}

.outcome h4 {
  color: #e84144;
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.outcome p {
  color: #666;
  font-size: 1.125rem;
  margin-bottom: 0;
  line-height: 1.6;
}

.outcome strong {
  color: #e84144;
  font-weight: 700;
}

.pricing-section {
  background: #fff7f7;
  padding: 2.5rem 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.pricing-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: center;
  position: relative;
  transition: transform 0.25s ease;
  min-height: 640px;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.plan-label {
  background-color: #e84144;
  color: white;
  padding: 0.375rem 0.875rem;
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 1px;
  display: inline-block;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
}

.price {
  font-size: 2.25rem;
  font-weight: 700;
  color: #e84144;
  margin: 1.5rem 0 0.5rem 0;
}

.plan-description {
  color: #5a5a5a;
  font-size: 1.125rem;
  font-weight: 300;
  margin-bottom: 1rem;
  line-height: 1.5;
}
hr {
  margin: 1rem 0;
  border: none;
  height: 1px;
  background-color: #eee;
}

.features-list {
  list-style: none;
  text-align: left;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.features-list li {
  color: #1e1e1e;
  margin: 1rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
}
.features-list li::before {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 20px;
  background: #00bc00;
  border-radius: 3px;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.features-list li::after {
  content: "✓";
  position: absolute;
  left: 4px;
  top: 0;
  color: white;
  font-weight: bold;
  font-size: 0.875rem;
  line-height: 20px;
}

.best-for {
  display: flex;
  align-items: start;
  gap: 0.375rem;
  color: #1e1e1e;
  font-size: 1.125rem;
  font-weight: 400;
  margin-top: auto;
  justify-content: center;
}

.best-for-icon {
  font-size: 1rem;
}

.best-for-text {
  font-weight: 400;
  color: #1e1e1e;
  text-align: start;
}

.pricing-button {
  background-color: #e84144;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  font-size: 1rem;
}

.pricing-button:hover {
  background-color: #d63336;
  transform: translateY(-0.125rem);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.faq-item {
  background: white;
  border-radius: 1.25rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease;
  height: min-content;
}

.faq-item:hover {
  transform: translateY(-0.125rem);
}

.faq-question {
  padding: 2rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  border-bottom: 1px solid #f3f4f6;
}

.faq-question h3 {
  color: #1e1e1e;
  font-size: 1.25rem;
  font-weight: 700;
}

.faq-icon {
  width: 16px;
  height: 16px;
  color: #0f172a;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  color: #1e1e1e;
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  padding: 0;
  margin: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    margin 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  padding: 0 2.5rem 2rem;
}

.faq-answer p {
  margin: 0;
  padding: 0;
  font-size: 1rem;
  font-weight: 400;
  color: #1e1e1e;
  line-height: 1.5;
}

.contact-content {
  display: flex;
  background-color: #fff;
  gap: 2.5rem;
  align-items: center;
  border-radius: 1.5rem;
}

.contact-form {
  flex: 1;
  padding: 3.125rem;
  border-radius: 1.25rem;
  flex: 2;
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  color: #1e1e1e;
  font-size: 1rem;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 0.75rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1.25rem 1.5rem;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  font-size: 0.875rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  background-color: #f9fafb;
  transition: all 0.3s ease;
}

.form-group textarea {
  border-radius: 1.25rem;
  min-height: 9.375rem;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #e84144;
  background-color: white;
  box-shadow: 0 0 0 3px rgba(232, 65, 68, 0.1);
}

.intl-tel-input {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background-color: #f9fafb;
  overflow: hidden;
}

.intl-tel-input.allow-dropdown .selected-flag {
  background-color: #f3f4f6;
  padding: 0 0.75rem;
  border-radius: 999px 0 0 999px;
  cursor: pointer;
}

.intl-tel-input.allow-dropdown .selected-flag .arrow {
  margin-left: 0.375rem;
}

.intl-tel-input input {
  border: none;
  background: transparent;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  color: #111;
}

.intl-tel-input input:focus {
  outline: none;
  background-color: white;
}

.intl-tel-input.allow-dropdown input:focus,
.intl-tel-input.allow-dropdown.iti-sdc-2 input {
  padding-left: 0.375rem;
}

.intl-tel-input .country-list {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 1px solid #e5e7eb;
  max-height: 300px;
  margin-top: 0.25rem;
}

.intl-tel-input .country-list .country {
  padding: 0.5rem 0.75rem;
}

.intl-tel-input .country-list .country:hover {
  background-color: #f9fafb;
}

.intl-tel-input .country-list .country.highlight {
  background-color: #f3f4f6;
}

.intl-tel-input:focus-within {
  box-shadow: 0 0 0 3px rgba(232, 65, 68, 0.1);
  background-color: white;
}

.form-group .intl-tel-input {
  display: block;
}

.submit-button {
  background-color: #e84144;
  color: white;
  border: none;
  padding: 0.75rem 2.5rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.submit-button:hover {
  background-color: #d63336;
  transform: translateY(-0.125rem);
}

.contact-illustration {
  flex: 1;
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.illustration-element {
  position: absolute;
  color: #e84144;
}

.at-symbol {
  font-size: 2.5rem;
  opacity: 0.8;
  transform: rotate(-15deg);
}

.quote-1 {
  top: 20%;
  left: 10%;
  font-size: 1.875rem;
  opacity: 0.6;
}

.quote-2 {
  top: 30%;
  right: 15%;
  font-size: 1.875rem;
  opacity: 0.6;
}

.chat-bubble {
  bottom: 20%;
  right: 20%;
  font-size: 3.75rem;
  opacity: 0.7;
}

.footer {
  background-color: #ffebed;
  padding: 2.5rem 0 1.5rem;
}

.footer-content {
  text-align: center;
  margin-bottom: 3.125rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: #e84144;
  font-weight: 700;
  font-size: 1.75rem;
  margin-bottom: 2rem;
}

.footer-logo .logo-icon {
  width: 2.5rem;
  height: 2.5rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 3.125rem;
}

.footer-links a {
  color: #1e1e1e;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #e84144;
}

.footer-downloads {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 2.5rem;
}

.footer-downloads .download-section {
  text-align: center;
}

.footer-downloads .download-section p {
  color: #e84144;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.social-links {
  text-align: center;
}

.social-links p {
  color: #111;
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
}

.social-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.1);
}

.social-icon.whatsapp {
  background-color: #25d366;
}

.social-icon.twitter {
  background-color: #000000;
}

.social-icon.instagram {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
}

.social-icon.tiktok {
  background-color: #000000;
}

.footer-bottom {
  text-align: center;
  background-color: #e84144;
  padding: 16px 0;
  border-top: 1px solid #e5e7eb;
}

.footer-bottom p {
  color: white;
  font-size: 1rem;
  font-weight: 700;
}

@media (max-width: 1024px) {
  body {
    font-size: 15px; /* Slightly smaller base for tablets */
  }

  .hero {
    /* overflow: hidden; */
  }

  .hero-background {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 3.125rem;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-visual {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    margin-top: 2.5rem;
    width: 21.875rem;
    height: 25rem;
  }

  .hero-slide-visual {
    width: 21.875rem;
    height: 25rem;
  }

  .hero-slide-visual img,
  .hero-image-bg {
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
  }

  .hero-slide-visual[data-slide="0"] img,
  .hero-slide-visual[data-slide="0"] .hero-image-bg {
    max-width: 100%;
    max-height: 100%;
  }

  .hero-slide-visual[data-slide="1"] img,
  .hero-slide-visual[data-slide="1"] .hero-image-bg {
    max-width: 100%;
    max-height: 100%;
  }

  .features-grid,
  .services-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .drivers-grid.active-content {
    grid-template-columns: 1fr;
  }

  .about-content,
  .contact-content {
    flex-direction: column;
    gap: 3.125rem;
  }

  .about-visual {
    order: -1;
  }

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

@media (max-width: 768px) {
  body {
    font-size: 14px; /* Smaller base for mobile */
  }

  .container {
    padding: 0 1.25rem;
  }

  .topbar-content {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  .contact-info {
    flex-direction: column;
    gap: 0.75rem;
  }

  .nav-content {
    flex-direction: row;
    gap: 1.25rem;
    justify-content: space-between;
  }

  .nav-links {
    gap: 1.5rem;
  }

  .language-switcher {
    display: none;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1.125rem;
  }

  .phone-mockup {
    width: 8.75rem;
    height: 22.5rem;
  }

  .phone-1,
  .phone-2 {
    transform: none;
    margin: 0 1rem;
  }

  .slider-controls {
    margin-top: 1.25rem;
  }

  .dot {
    width: 1.5rem;
    height: 0.25rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .feature-card,
  .service-card,
  .pricing-card {
    padding: 2.5rem 1.5rem;
  }

  .owners-grid.active-content,
  .drivers-grid.active-content,
  .fleet-grid.active-content {
    grid-template-columns: 1fr;
  }

  .survey-banner {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .survey-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 1.25rem;
  }

  .app-badges {
    flex-direction: column;
    align-items: center;
  }

  .social-icons {
    flex-wrap: wrap;
  }
}

@media (max-width: 440px) {
  body {
    font-size: 14px; /* Keep smaller base for small mobile */
  }

  .hero-text h1 {
    font-size: 1.75rem;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  .phone-mockup {
    width: 8.75rem;
    height: 15rem;
  }

  .slider-controls {
    margin-top: 1rem;
  }

  .dot {
    width: 1.25rem;
    height: 0.1875rem;
  }

  .feature-card,
  .service-card,
  .pricing-card {
    padding: 1.5rem 1.25rem;
  }

  .contact-form {
    padding: 1.5rem 1.25rem;
  }

  .footer-downloads {
    flex-direction: column;
    gap: 2.5rem;
    text-align: center;
  }

  .services-tabs {
    flex-wrap: wrap;
    padding: 0.75rem;
  }

  .tab-button {
    padding: 0.5rem 1.25rem;
    font-size: 1rem;
  }

  .pricing-card {
    min-height: auto;
  }

  .service-card {
    padding: 1.5rem 1.5rem;
  }

  .topbar-content {
    font-size: 0.875rem;
  }

  .contact-info {
    font-size: 0.875rem;
  }
}

@media (max-width: 768px) {
  .section-header p {
    max-width: 95%;
  }

  .about-content {
    flex-direction: column;
  }

  .about-visual {
    order: -1;
    margin-bottom: 1.25rem;
  }

  .contact-content {
    flex-direction: column;
  }

  .contact-illustration {
    order: -1;
    height: auto;
    margin-bottom: 1.25rem;
  }

  .contact-illustration img {
    max-width: 100%;
    height: auto;
  }

  .about-visual img {
    max-width: 100%;
    height: auto;
  }

  .navbar {
    position: relative;
    width: 100%;
    margin: 0;
    border-radius: 0;
    top: 0;
  }

  .hero {
    margin-top: 0;
    min-height: 100vh;
    /* overflow: hidden; */
  }

  .hero-background {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
  }

  .hero-visual {
    width: 17.5rem;
    height: 21.875rem;
  }

  .hero-slide-visual {
    top: 0;
    width: 17.5rem;
    height: 21.875rem;
  }

  .hero-slide-visual img,
  .hero-image-bg {
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
  }

  .hero-slide-visual:last-of-type {
    top: -3rem;
    left: 0;
  }

  .hero-slide-visual:last-of-type img,
  .hero-slide-visual:last-of-type .hero-image-bg {
    width: 100%;
    max-width: 100%;
  }

  .services-tabs {
    flex-direction: column;
    width: 50%;
    margin: auto;
  }

  .tab-button {
    width: 100%;
  }

  .about-text h2,
  .about-text .subtitle {
    text-align: center;
  }

  .about-text .description {
    text-align: center;
  }
}

@media (max-width: 440px) {
  .container {
    padding: 0 0.75rem;
  }

  .topbar {
    display: none;
  }

  .hero-text h1 {
    font-size: 1.75rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .hero-visual {
    width: 160px;
    height: 200px;
  }

  .hero-slide-visual {
    width: 160px;
    height: 200px;
  }

  .hero-slide-visual img,
  .hero-image-bg {
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
  }

  .cta-button {
    padding: 0.625rem 1.25rem;
    font-size: 0.95rem;
  }

  .app-badge img {
    height: 35px;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  .feature-card h3,
  .service-card h3 {
    font-size: 1.25rem;
  }

  .survey-banner {
    padding: 1.25rem;
  }

  .survey-content {
    flex-direction: column;
    text-align: center;
  }

  .survey-button {
    width: 100%;
  }
}

/* Survey Section Styles */
.survey-section {
  padding: 5rem 0;
  background-color: #fef5f6;
  min-height: 100vh;
}

.breadcrumb {
  margin-bottom: 2.5rem;
  font-size: 1.125rem;
  color: #666;
}

.breadcrumb a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: #e84144;
}

.survey-container {
  max-width: 1047px;
  margin: 0 auto;
  background-color: white;
  border-radius: 20px;
  padding: 3.75rem;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.survey-heading {
  color: #e84144;
  font-size: 1.125rem;
  font-weight: 400;
  margin-bottom: 1.25rem;
  font-family: "Roboto", sans-serif;
}

.survey-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 1.875rem;
  line-height: 1.5;
  font-family: "Roboto", sans-serif;
}

.survey-intro {
  font-size: 1.125rem;
  color: #5a5a5a;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 3.125rem;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
}

.survey-form {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.survey-question {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.question-label {
  font-size: 1rem;
  font-weight: 600;
  color: #1e1e1e;
  font-family: "Open Sans", sans-serif;
}

.question-hint {
  font-size: 0.875rem;
  color: #898989;
  font-style: italic;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  margin-top: -10px;
}

.survey-input {
  width: 100%;
  padding: 1rem 1.875rem;
  border: 1px solid #f1f1f1;
  border-radius: 30px;
  background-color: #f0f0f0;
  font-size: 0.875rem;
  color: #898989;
  font-family: "Open Sans", sans-serif;
  transition: all 0.3s;
}

.textarea-wrapper {
  background-color: #f0f0f0;
  padding: 1.5625rem;
  border-radius: 30px;
}

.survey-textarea {
  width: 100%;
  padding: 1rem 1.875rem;
  border: 1px solid #f0f0f0 !important;
  border-radius: 30px;
  background-color: #ffffff !important;
  font-size: 0.875rem;
  color: #898989;
  font-family: "Open Sans", sans-serif;
  transition: all 0.3s;
  min-height: 100px;
  resize: vertical;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.survey-input:focus {
  outline: none;
  border-color: #e84144;
  background-color: white;
  color: #1e1e1e;
}

.survey-textarea:focus {
  outline: none;
  border-color: #e84144;
  background-color: #ffffff;
  color: #1e1e1e;
}

.radio-group,
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
  background-color: #f0f0f0;
  border: 1px solid #f1f1f1;
  border-radius: 30px;
  padding: 1.5625rem;
}

.radio-label,
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.9375rem;
  cursor: pointer;
  font-size: 0.875rem;
  color: #898989;
  font-family: "Open Sans", sans-serif;
  transition: color 0.3s;
  pointer-events: auto;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.radio-label:hover,
.checkbox-label:hover {
  color: #1e1e1e;
}

.radio-label input[type="radio"],
.checkbox-label input[type="checkbox"] {
  cursor: pointer;
  accent-color: #e84144;
  flex-shrink: 0;
  padding: 0.625rem;
  pointer-events: auto;
}

.radio-label input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  border: 2px solid #898989;
  border-radius: 50%;
  position: relative;
  transition: all 0.3s;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: transparent;
  flex-shrink: 0;
}

.radio-label input[type="radio"]:checked {
  border-color: #e84144;
  background-color: transparent;
}

.radio-label input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background-color: #e84144;
  border-radius: 50%;
  display: block;
}

.checkbox-label input[type="checkbox"] {
  appearance: none;
  border: 2px solid #898989;
  border-radius: 8px;
  position: relative;
  transition: all 0.3s;
}

.checkbox-label input[type="checkbox"]:checked {
  border-color: #e84144;
  background-color: #e84144;
}

.checkbox-label input[type="checkbox"]:checked::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 0.875rem;
  font-weight: bold;
}

.scale-group {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.9375rem;
}

.scale-group .radio-label {
  flex: 1;
  min-width: 60px;
  justify-content: center;
  padding: 0.75rem;
}

.percentage-input-group {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-top: 1rem;
}

.percentage-input {
  max-width: 200px;
  background-color: white !important;
  border: 1px solid #f1f1f1;
  border-radius: 30px;
  padding: 1rem 1.875rem;
  font-size: 0.875rem;
  color: #898989;
  font-family: "Open Sans", sans-serif;
  width: 100%;
}

.percentage-input:focus {
  outline: none;
  border-color: #e84144;
  color: #1e1e1e;
}

.percentage-input::placeholder {
  color: #898989;
}

.percentage-symbol {
  font-size: 0.875rem;
  color: #898989;
  font-family: "Open Sans", sans-serif;
}

.other-input-group {
  margin-top: 1rem;
}

.other-input {
  width: 100%;
  background-color: #ffffff !important;
  border: 1px solid #f0f0f0 !important;
  border-radius: 30px;
  padding: 1rem 1.875rem;
  font-size: 0.875rem;
  color: #898989;
  font-family: "Open Sans", sans-serif;
  box-sizing: border-box;
}

.other-input:focus {
  outline: none;
  border-color: #e84144;
  color: #1e1e1e;
}

.other-input::placeholder {
  color: #898989;
}

.survey-submit-btn {
  background-color: #e84144;
  color: white;
  border: none;
  border-radius: 30px;
  padding: 1rem 5rem;
  font-size: 1.125rem;
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
  cursor: pointer;
  transition: all 0.3s;
  align-self: flex-start;
  margin-top: 1.25rem;
}

.survey-submit-btn:hover {
  background-color: #d63336;
  transform: translateY(-0.125rem);
  box-shadow: 0 4px 12px rgba(232, 65, 68, 0.3);
}

.survey-submit-btn:active {
  transform: translateY(0);
}

/* Responsive Styles for Survey */
@media (max-width: 768px) {
  .survey-container {
    padding: 1.875rem;
    border-radius: 15px;
  }

  .scale-group {
    flex-direction: column;
  }

  .scale-group .radio-label {
    justify-content: flex-start;
  }

  .percentage-input-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .survey-submit-btn {
    width: 100%;
    align-self: stretch;
  }
}
.iti--allow-dropdown .iti__country-container {
  right: auto;
  left: 20px;
}
.iti {
  width: 100%;
  /* padding: 0 1rem; */
}
[dir="rtl"] .iti {
  direction: rtl;
  /* padding-right: 130px; */
}

/* Contact Fields Styles */
.contact-fields-wrapper {
  background-color: #f0f0f0;
  padding: 1.5625rem;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
}

.contact-field-input {
  background-color: #ffffff !important;
  border: 1px solid #f0f0f0 !important;
  border-radius: 30px;
  padding: 1rem 1.875rem;
  font-size: 0.875rem;
  color: #898989;
  font-family: "Open Sans", sans-serif;
  transition: all 0.3s;
}

.contact-field-input:focus {
  outline: none;
  border-color: #e84144 !important;
  background-color: #ffffff !important;
  color: #1e1e1e;
}

.iti--allow-dropdown input.iti__tel-input, .iti--allow-dropdown input.iti__tel-input[type=text], .iti--allow-dropdown input.iti__tel-input[type=tel]{

           padding-inline-end: 115px !important;
               text-align: end;


}

   [dir="rtl"] .iti--allow-dropdown input.iti__tel-input, .iti--allow-dropdown input.iti__tel-input[type=text], .iti--allow-dropdown input.iti__tel-input[type=tel]{

           padding-inline-start: 115px !important;
               text-align: start !important;

}

.btn{gap:1rem !important}