/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #ff4500;
  --primary-dark: #cc3600;
  --secondary-color: #f59e0b;
  --accent-color: #10b981;
  --text-primary: #1f2937;
  --text-secondary: #6b7280;
  --background-light: #f8fafc;
  --white: #ffffff;
  --border-color: #e5e7eb;
  --shadow-light: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-large: 0 20px 25px rgba(0, 0, 0, 0.1);
  --border-radius: 8px;
  --border-radius-lg: 12px;
  --transition: all 0.3s ease;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--white);
  scroll-behavior: smooth;
}

html {
  scroll-behavior: smooth;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  box-sizing: border-box;
  position: fixed;
  width: 100%;
  height: 81px;
  left: 0px;
  top: 0px;
  background: #ffffff;
  border-bottom: 1px solid #ebe7e7;
  z-index: 1000;
  display: flex;
  align-items: center;
}

.nav-container {
  box-sizing: border-box;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
  width: 250px;
  font-weight: 700;
  color: var(--primary-color);
}
.logo {
  width: 200px;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-color);
  font-family: "Nunito", sans-serif;
  letter-spacing: -0.5px;
}

.logo-bus {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  margin-left: 0.3rem;
  letter-spacing: 1px;
  font-family: "Inter", sans-serif;
}

.bus-o {
  display: inline-block;
  width: 1.3em;
  height: 1.3em;
  background: var(--primary-color);
  border-radius: 50%;
  text-align: center;
  line-height: 1.3em;
  color: var(--white);
  font-size: 1.2em;
  vertical-align: middle;
  font-weight: 700;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: #333333;
  font-weight: 500;
  transition: var(--transition);
  font-size: 1rem;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.download-app-btn {
  padding: 0.75rem 1.5rem;
  background: var(--primary-color);
  color: #fff5e6;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  white-space: nowrap;
}

.download-app-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  margin: 3px 0;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  padding-top: 40px;
  padding-bottom: 80px;
  background: #ff4500;
  background-image: radial-gradient(
    circle at 70% 50%,
    rgba(204, 85, 0, 0.4) 0%,
    transparent 50%
  );
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* --------------------------------beginning of slide------------------------ */

.carousel-container {
  position: relative;
  width: 100%;
  height: calc(100vh - 60px);
  overflow: hidden;
  padding: 0px 0px 40px;
}

.carousel-wrapper {
  display: flex;
  height: 100%;
  transition: transform 0.6s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-content {
  text-align: center;
  color: white;
  /* padding: 2rem; */
  /* max-width: 800px; */
}



.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.3);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 1rem 1.5rem;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10;
  backdrop-filter: blur(5px);
}

.carousel-control:hover {
  background: rgba(255, 255, 255, 0.5);
}

.carousel-control.prev {
  left: 0px;
  border-radius: 0 8px 8px 0;
}

.carousel-control.next {
  right: 0px;
  border-radius: 8px 0 0 8px;
}

.carousel-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid white;
  cursor: pointer;
  transition: all 0.3s;
}

.indicator.active {
  background: white;
  transform: scale(1.3);
}

.indicator:hover {
  background: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
  nav {
    padding: 0.8rem 1rem;
  }

  nav ul {
    gap: 1rem;
    font-size: 0.9rem;
  }

  .carousel-control {
    font-size: 1.5rem;
    padding: 0.8rem 1rem;
  }

  .carousel-control.prev {
    left: 10px;
  }

  .carousel-control.next {
    right: 10px;
  }

  .carousel-indicators {
    bottom: 20px;
  }
}


@media (max-width: 468px) {
    .carousel-container {
        height: auto;
    }

    .shuttle-wrap {
        justify-content: center;
    }

    .logo-shuttle {
        width: 50px;
    }

    .shuttle-h {
        font-size: 1rem;
    }
}

.shuttle-wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 10px;
}
.logo-shuttle {
    width: 70px;
    margin-bottom: 20px;
}
.shuttle-h {
    font-size: 1.8rem;
    color: #ffffff;
    margin-left: 10px;
    font-weight: 400;
}

/* --------------------------------beginning of slide------------------------ */

/* Optional arrow nav */
.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 12px;
  z-index: 5;
  pointer-events: none; /* allow dots to be clickable through */
}
.nav button {
  pointer-events: auto;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: var(--muted);
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: translateY(-2px);
  transition: background 150ms ease, transform 150ms ease;
  backdrop-filter: blur(4px);
}
.nav button:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-4px);
}
.nav button:active {
  transform: translateY(0);
}

/* --------------------------------end of slide------------------------ */

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: -20%;
  width: 60%;
  height: 100%;
  background: radial-gradient(
    ellipse at center,
    rgba(204, 85, 0, 0.3) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero-container {
  max-width: 1440px;
  width: 100%;
  height: auto ;
  margin: 64px 0 auto;
  padding: 60px 20px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.hero-content p {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  opacity: 0.95;
}

.slide-image {
    height: 100%    ;
}

.hero-buttons {
  display: inline-block;
  gap: 1rem;
  margin-bottom: 0;
  padding: 6px;
}

/* Hero image */
.opoobo-section {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: auto;
}
.map-bg img {
  width: 100%;
  height: auto;
  display: block;
}
.phone-mock {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.phone-mock img {
  width: 450px;
  height: auto;
}

.card {
  position: absolute;
  z-index: 3;
  animation: bounce 4s ease-in-out infinite;
}
/* Left Card */
.card-left {
  top: 60%;
  left: 10%;
  animation-delay: 0.5s;
}

.card-left img {
  width: 260px;
  height: auto;
}

/* Right Card */
.card-right {
  top: 10%;
  right: -2%;
}

.card-right img {
  width: 260px;
  height: auto;
}

/* Smooth bounce animation */
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-22px);
  }
}
/* Responsive Design */
@media (max-width: 768px) {
  .phone-mock img {
    width: 420px;
  }

  .card-left {
    top: 65%;
    left: 5%;
  }

  .card-right {
    top: 20%;
    right: 5%;
  }

  .card img {
    width: 230px;
  }
}

/* Responsiveness */
@media (max-width: 425px) {
    .hero-container  {
        height: auto;
    }
  .phone-mock img {
    width: 220px;
  }

  .card-left {
    top: 65%;
    left: 5%;
  }

  .card-right {
    top: 10%;
    right: 5%;
  }

  .card img {
    width: 140px;
  }
}
/* =========================== */

.btn {
  padding: 1rem 2rem;
  border-radius: var(--border-radius-lg);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary {
  background: var(--primary-color);
  color: white;
  box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-large);
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #ffffff;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  width: 230px;
  justify-content: center;
  text-decoration: none;
  color: #333333;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.store-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.store-btn i {
  font-size: 2rem;
  color: #333333;
}

.store-btn div {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.store-btn span {
  font-size: 0.75rem;
  color: #666666;
  line-height: 1.2;
}

.store-btn strong {
  font-size: 1rem;
  font-weight: 600;
  color: #333333;
  line-height: 1.2;
}

.hero-stats {
  display: flex;
  gap: 4rem;
  padding: 10px 0px;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1440px;
  margin: 90px 0px 0px 0px;
  height: 140px;
}
.h-line {
  padding: 1px;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.404);
}

.stat {
  text-align: center;
  padding-top: 20px;
}

.stat h3 {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat p {
  color: #ffffff;
  font-size: 1rem;
  opacity: 0.95;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 1.5rem;
  position: relative;
  flex-wrap: wrap;
}

.hero-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0;
  align-self: flex-start;
}

.phone-mockup {
  position: relative;
  width: 280px;
  height: 560px;
  background: #000000;
  border-radius: 35px;
  padding: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: rotate(-5deg);
}

.app-preview {
  background: white;
  border-radius: 28px;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.app-screen {
  padding: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.app-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 15px;
  background: white;
  font-size: 0.75rem;
  font-weight: 600;
}

.status-icons {
  display: flex;
  gap: 4px;
  font-size: 0.7rem;
  color: #333;
}

.app-header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  background: white;
}

.lang-btn {
  background: #f3f4f6;
  border: none;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #333;
  cursor: pointer;
}

.skip-btn {
  background: transparent;
  border: none;
  color: var(--primary-color);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
}

.app-welcome-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: white;
  text-align: center;
}

.welcome-illustration {
  position: relative;
  width: 150px;
  height: 150px;
  margin-bottom: 20px;
}

.illustration-woman {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #ffd700, #ffa500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 3rem;
  color: white;
}

.illustration-icons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.icon-circle {
  position: absolute;
  width: 30px;
  height: 30px;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 0.8rem;
}

.icon-circle:nth-child(1) {
  top: 10px;
  left: 20px;
}
.icon-circle:nth-child(2) {
  top: 20px;
  right: 10px;
}
.icon-circle:nth-child(3) {
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}

.shuttle-bus-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.welcome-text h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}

.brand-name {
  color: var(--primary-color);
}

.welcome-text p {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 20px;
}

.welcome-dots {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd;
}

.dot.active {
  background: var(--primary-color);
}

.welcome-buttons {
  display: flex;
  gap: 10px;
  width: 100%;
}

.btn-next {
  flex: 1;
  padding: 12px;
  background: white;
  border: 2px solid var(--primary-color);
  border-radius: 25px;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
}

.btn-get-started {
  flex: 1;
  padding: 12px;
  background: var(--primary-color);
  border: none;
  border-radius: 25px;
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
}

.info-card {
  background: white;
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.route-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.route-card > i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.route-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  width: 100%;
  position: relative;
  padding-left: 1.5rem;
}

.route-info::before {
  content: "";
  position: absolute;
  left: 0.75rem;
  top: 1.5rem;
  bottom: 1.5rem;
  width: 2px;
  border-left: 2px dashed var(--primary-color);
}

.route-from,
.route-to {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

.route-from i,
.route-to i {
  font-size: 1rem;
  position: relative;
  z-index: 2;
  background: white;
  padding: 2px;
}

.route-price {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.5rem 0;
  padding-left: 0.5rem;
}

.equals {
  color: #333;
  font-size: 1.2rem;
}

.price {
  color: #10b981;
  font-weight: 700;
  font-size: 1.1rem;
}

.locations-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.location-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #333;
  font-weight: 500;
}

.flag {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
}

.flag-nigeria {
  background: linear-gradient(
    to right,
    #008751 0%,
    #008751 33.33%,
    #ffffff 33.33%,
    #ffffff 66.66%,
    #008751 66.66%
  );
}

.flag-togo {
  background: linear-gradient(
    to bottom,
    #006a4e 0%,
    #006a4e 20%,
    #ffce00 20%,
    #ffce00 40%,
    #d21034 40%,
    #d21034 60%,
    #ffce00 60%,
    #ffce00 80%,
    #006a4e 80%,
    #006a4e 100%
  );
  position: relative;
}

.flag-togo::before {
  content: "★";
  position: absolute;
  top: 2px;
  left: 2px;
  color: white;
  font-size: 8px;
}

.flag-benin {
  background: linear-gradient(
    to right,
    #008751 0%,
    #008751 33.33%,
    #fcd116 33.33%,
    #fcd116 66.66%,
    #e8112d 66.66%
  );
}

.flag-ghana {
  background: linear-gradient(
    to bottom,
    #ce1126 0%,
    #ce1126 33.33%,
    #fcd116 33.33%,
    #fcd116 66.66%,
    #ce1126 66.66%
  );
  position: relative;
}

.flag-ghana::before {
  content: "★";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #000;
  font-size: 10px;
}

.flag-ivory-coast {
  background: linear-gradient(
    to right,
    #f77f00 0%,
    #f77f00 33.33%,
    #ffffff 33.33%,
    #ffffff 66.66%,
    #009639 66.66%
  );
}

/* Features Section */
.features {
  padding: 80px 0;
  background: var(--white);
}

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

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.section-header p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-light);
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.feature-icon i {
  font-size: 2rem;
  color: white;
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* App Types Section */
.app-types {
  padding: 80px 0;
  background: var(--background-light);
}

.apps-grid {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.app-types .app-card {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 29px 27px;
  gap: 20px;
  width: 466px;
  min-height: 426px;
  background: #ffffff;
  border: 1px solid #e2dedb;
  border-radius: 12px;
}

.app-types .app-icon {
  width: 90px;
  height: 90px;
  border-radius: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.app-types .app-icon.passenger {
  background: #ffe5db;
}

.app-types .app-icon.driver {
  background: #e8e5ff;
}

.app-types .app-icon i {
  font-size: 68px;
  color: #333;
}

.app-types .app-icon.passenger i {
  color: #8b4513;
}

.app-types .app-icon.driver i {
  color: #4a90e2;
}

.app-types .app-card h3 {
  width: 100%;
  height: 32px;
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 33px;
  line-height: 32px;
  color: #050201;
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
  margin: 0;
}

.app-types .app-card p {
  width: 364px;
  height: auto;
  min-height: 48px;
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #555454;
  flex: none;
  order: 2;
  flex-grow: 0;
  margin: 0;
}

.app-types .app-card ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 14px;
  width: 100%;
  height: auto;
  flex: none;
  order: 3;
  align-self: stretch;
  flex-grow: 0;
  list-style: none;
  margin: 0;
}

.app-types .app-card li {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0;
  gap: 13px;
  width: 100%;
  height: 24px;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: #4d4e50;
}

.app-types .app-card li i {
  width: 24px;
  height: 24px;
  flex: none;
  order: 0;
  flex-grow: 0;
  color: #ff4500;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Download Section */
.download {
  position: relative;
  width: 100%;
  min-height: 602px;
  padding: 0;
  overflow: hidden;
  display: flex;
}

.download-container {
  width: 100%;
  display: flex;
  margin: 0 auto;
  padding: 0;
  position: relative;
  height: 602px;
  background: #FF5414;
  overflow: hidden  ;

}

.download-container2 {
  width: 100%;
  display: flex;
  margin: 0 auto;
  padding: 0;
  position: relative;
  height: 602px;
  background: #ff4500;
  overflow: hidden  ;

}
@media (max-width: 468px) {
  .download {
    display: block;
  }
}
.download-content {
  display: flex;
  align-items: flex-start;
  padding: 6rem 60px;
  gap: 0;
  height: 100%;
  position: relative;
}

.download-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 23px;
  width: 560px;
  z-index: 2;
}

.download-text h2 {
  width: 534px;
  height: 114px;
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 44px;
  line-height: 57px;
  text-transform: capitalize;
  color: #ffffff;
  margin: 0;
}

.download-text p {
  width: 491px;
  height: 64px;
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  color: #dedede;
  margin: 0;
}

.download-buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 19px;
  width: 347px;
  height: 135px;
}

.store-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 15px 24px;
  gap: 14px;
  background: #ffffff;
  border-radius: 58px;
  text-decoration: none;
  transition: var(--transition);
  border: none;
}

.store-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.store-btn.google-play-btn {
  width: 249px;
  height: 58px;
}

.store-btn.app-store-btn {
  width: 292px;
  height: 58px;
}

.store-btn i {
  width: 24px;
  height: 24px;
  font-size: 24px;
  color: #ff4500;
}

.store-btn.app-store-btn i {
  width: 28px;
  height: 28px;
  font-size: 28px;
  color: #000000;
}

.store-btn span {
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 28px;
  color: #ff4500;
}

.download-image {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  z-index: 1;
}

.download-phones {
   position: absolute;
  right: -200px;
  bottom: -11px;
  z-index: 1;
}
.download-hand {
   position: absolute;
  right: -170px;
  bottom: 0px;
  z-index: 1;
}

.download-ellipses {
  position: absolute;
  right: -180px;
  top: 210px;
  pointer-events: none;
  z-index: 0;
}

.download-ellipses2 {
  position: absolute;
  right: -380px;
  top: 210px;
  pointer-events: none;
  z-index: 0;
}

@media (max-width: 468px) {
  .download-phone {
    display: block;
  }

  .download-phone {

  }
}

.ellipse {
  box-sizing: border-box;
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.ellipse-1 {
  width: 614px;
  height: 614px;
  left: 128px;
  top: 44px;
}

.ellipse-2 {
  width: 502px;
  height: 502px;
  left: 184px;
  top: 100px;
}

.ellipse-3 {
  width: 342px;
  height: 342px;
  left: 264px;
  top: 180px;
}

.ellipse-4 {
  width: 178px;
  height: 178px;
  left: 346px;
  top: 262px;
}

.book-header {
  background: var(--primary-color);
  padding: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: -12px -12px 8px -12px;
}

.book-logo {
  display: flex;
  align-items: center;
  gap: 4px;
}

.book-logo .logo-text {
  font-size: 1rem;
  font-weight: 700;
  color: white;
}

.book-logo .logo-bus {
  font-size: 0.7rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
}

.book-icon {
  width: 32px;
  height: 32px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
}

.book-icon i {
  color: white;
  font-size: 0.9rem;
}

.book-subtitle {
  color: white;
  font-size: 0.7rem;
  margin: -8px -12px 12px -12px;
  padding: 0 12px 8px;
  background: var(--primary-color);
}

.book-form {
  padding: 0;
}

.book-form h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
  text-align: center;
  color: #333;
}

.form-field {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f8f9fa;
  padding: 8px 12px;
  border-radius: 8px;
  margin-bottom: 8px;
}

.form-field i {
  color: var(--primary-color);
  font-size: 0.8rem;
}

.form-field input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 0.75rem;
  color: #333;
}

.swap-icon {
  text-align: center;
  margin: 4px 0;
}

.swap-icon i {
  color: var(--primary-color);
  font-size: 0.9rem;
}

.search-btn {
  width: 100%;
  padding: 12px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 8px;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: var(--background-light);
}

.contact-grid {
  width: 200px;
  margin: 0 auto;
  /* display: grid; */
  /* grid-template-columns: 1fr ; */
  gap: 4rem;
  /* align-items: center; */
}

.contact-info {
  width: 280px;
  margin: 0 auto;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-item i {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.contact-item h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.contact-item p {
  color: var(--text-secondary);
}

.contact-form {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-medium);
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Footer */
.footer {
  background: var(--text-primary);
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-logo i {
  font-size: 2rem;
  color: var(--primary-color);
}

.footer-section p {
  margin-bottom: 1.5rem;
  opacity: 0.8;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
}

.footer-section h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.footer-section ul li a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 2rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
  }

  .nav-links.nav-active {
    display: flex;
    transform: translateX(0);
  }

  .download-app-btn {
    display: none;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
    padding: 1rem 0;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 20px 20px;
  }

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

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-image {
    flex-direction: column;
    align-items: center;
  }

  .phone-mockup {
    transform: rotate(0deg);
    margin-bottom: 2rem;
  }

  .hero-info-cards {
    width: 100%;
    max-width: 400px;
  }

  .hero-stats {
    flex-direction: row;
    gap: 1.5rem;
    padding: 10px 0px;
    margin: 50px 0;
    height: 120px;
    justify-content: center;
  }

  .stat h3 {
    font-size: 1.5rem;
  }

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

  .apps-grid {
    flex-direction: column;
    align-items: center;
  }

  .app-types .app-card {
    width: 100%;
    max-width: 466px;
  }

  .download {
    min-height: auto;
  }

  .download-container {
    height: auto;
  }

  .download-content {
    flex-direction: column;
    padding: 60px 20px;
    align-items: center;
  }

  .download-text {
    width: 100%;
    max-width: 560px;
    align-items: center;
    text-align: center;
  }

  .download-text h2 {
    width: 100%;
    height: auto;
    font-size: 2rem;
    line-height: 1.3;
  }

  .download-text p {
    width: 100%;
    height: auto;
    font-size: 1.1rem;
  }

  .download-buttons {
    width: 100%;
    justify-content: center;
  }

  .download-image {
    display: none;
    position: relative;
    width: 100%;
    height: 400px;
    margin-top: 20px;
  }

  .download-phones {
    position: relative;
    display: none;
  }

  .download-ellipses {
    z-index: 0;
  }

  .contact-grid {
    /* grid-template-columns: fr; */
    display: grid;
    width: 100%;
    margin: 0 auto;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .store-btn {
    flex: 1;
    min-width: 200px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }

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

  .phone-mockup {
    width: 250px;
    height: 500px;
  }

  .phones-mockup .phone {
    width: 150px;
    height: 300px;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-card,
.app-card {
  animation: fadeInUp 0.6s ease forwards;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading animation for buttons */
.btn:active {
  transform: scale(0.98);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus states for accessibility */
button:focus,
input:focus,
textarea:focus,
a:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}
