/* Pure HTML/CSS conversion - removed all React/Tailwind dependencies */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #000;
  z-index: 50;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo img {
  height: 48px;
  width: auto;
}

.navigation {
  display: flex;
  gap: 32px;
}

.nav-link {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #facc15;
}

/* Hero Section */
.hero {
  padding-top: 80px;
  padding-bottom: 48px;
  background: linear-gradient(to right, #facc15, #fde047);
  margin-top: 80px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  padding: 48px 0;
}

.hero-text h1 {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero-text p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
}

.hero-image {
  display: flex;
  justify-content: flex-end;
}

.hero-image img {
  height: 320px;
  width: auto;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.1));
}

/* App Section */
.app-section {
  padding: 64px 0;
  background-color: #fff;
}

.app-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.phone-mockup {
  display: flex;
  justify-content: center;
}

.phone-frame {
  background-color: #000;
  border-radius: 48px;
  padding: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  width: 256px;
}

.phone-body {
  background-color: #fff;
  border-radius: 40px;
  overflow: hidden;
}

.status-bar {
  background-color: #f3f4f6;
  padding: 8px 16px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
}

.app-body {
  padding: 16px;
  background: linear-gradient(to bottom, #fffbeb, #fff);
  min-height: 384px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.app-header {
  text-align: center;
  margin-bottom: 16px;
}

.app-icon {
  font-size: 32px;
  margin-bottom: 8px;
}

.app-header-title {
  font-size: 12px;
  font-weight: 600;
  color: #4b5563;
}

.app-header-subtitle {
  font-size: 12px;
  color: #9ca3af;
}

.location-card {
  background-color: #fff;
  border-radius: 8px;
  padding: 12px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
}

.location-label {
  font-size: 12px;
  font-weight: 600;
  color: #4b5563;
  margin-bottom: 4px;
}

.location-value {
  font-size: 14px;
  font-weight: 700;
  color: #111;
}

.vehicle-types {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}

.vehicle-type {
  text-align: center;
}

.vehicle-icon {
  background-color: #d1d5db;
  border-radius: 8px;
  padding: 8px 0;
  margin-bottom: 4px;
  font-size: 24px;
}

.vehicle-type p {
  font-size: 12px;
  font-weight: 600;
}

.payment-section {
  text-align: center;
}

.payment-label {
  font-size: 12px;
  color: #4b5563;
  margin-bottom: 12px;
}

.book-btn {
  width: 100%;
  background-color: #facc15;
  color: #000;
  font-weight: 700;
  padding: 8px 0;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.book-btn:hover {
  background-color: #eab308;
}

.app-text h2 {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  margin-bottom: 24px;
}

.highlight {
  color: #facc15;
}

.app-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.app-store-btn {
  display: inline-block;
  background-color: #000;
  color: #fff;
  padding: 12px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
  font-size: 14px;
}

.app-store-btn:hover {
  background-color: #1f2937;
}

.app-description {
  color: #4b5563;
  font-size: 18px;
  line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
  padding: 64px 0;
  background-color: #f9fafb;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
  color: #000;
}

.skyline-image {
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
}

.skyline-image svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Footer */
.footer {
  background-color: #000;
  color: #fff;
  padding: 48px 0;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid #374151;
}

.footer-section h4 {
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-logo {
  height: 48px;
  width: auto;
  margin-bottom: 16px;
  display: block;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-link {
  color: #facc15;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: #fcd34d;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  text-align: center;
}

.footer-links-bottom {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.footer-links-bottom a {
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  transition: color 0.3s ease;
}

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

.footer-links-bottom span {
  color: #6b7280;
}

.copyright {
  font-size: 12px;
  color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header {
    height: auto;
  }

  .header-content {
    height: auto;
    flex-direction: column;
    padding: 12px 0;
  }

  .navigation {
    width: 100%;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
    align-items: center;
  }

  .hero {
    margin-top: 120px;
    padding-top: 20px;
  }

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

  .hero-text h1 {
    font-size: 28px;
  }

  .hero-image {
    justify-content: center;
  }

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

  .app-buttons {
    flex-direction: column;
  }

  .app-text h2 {
    font-size: 24px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

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

  .social-links {
    justify-content: center;
  }

  .footer-links {
    align-items: center;
  }
}
