/* Google Fonts - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* ===== Design Tokens ===== */
:root {
  --brand-primary: #1db954;
  --brand-primary-hover: #18a048;
  --brand-dark: #121212;
  --brand-light: #ffffff;
  --text-heading: #141414;
  --text-secondary: #747474;
  --text-grey: #8c8c8c;
  --bg-light: #f6faf8;
  --font-primary: 'Poppins', sans-serif;
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  color: var(--text-heading);
  background: var(--brand-light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 90%;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HEADER ===== */
#header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--brand-light);
}

.phone {
  width: 700px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}

/* Logo */
.logo-img {
  height: 35px;
}

/* Nav */
.nav {
  display: flex;
  gap: 48px;
}

.nav-link {
  color: var(--text-heading);
  font-size: 16px;
  font-weight: 400;
  transition: color 0.2s;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-link:hover {
  color: var(--brand-primary);
}

.nav-link.active {
  color: var(--brand-primary);
  border-bottom-color: var(--brand-primary);
}

/* Header right */
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Language selector */
.lang-selector {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-heading);
  cursor: pointer;
}

.lang-flag {
  width: 24px;
  height: 16px;
  border-radius: 2px;
  object-fit: cover;
}

.lang-chevron {
  flex-shrink: 0;
}

/* Contact button */
.contact-btn {
  display: inline-block;
  background: transparent;
  border: 1.5px solid var(--brand-primary);
  color: var(--brand-primary);
  padding: 10px 36px;
  border-radius: 30px;
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-primary);
}

.contact-btn:hover,
.contact-btn.active {
  background: var(--brand-primary);
  color: white;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-heading);
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO SECTION ===== */
.hero {
  padding: 60px 0 80px;
  background: var(--brand-light);
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 60px;
}

.hero-content {
  flex: 1;
  max-width: 500px;
}

.tagline {
  display: inline-block;
  background: rgba(29, 185, 84, 0.1);
  color: var(--brand-primary);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
}

.hero-title {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 16px;
  color: var(--text-heading);
}

.hero-subtitle {
  font-size: 20px;
  color: var(--text-secondary);
  margin: 0 0 32px;
  font-weight: 400;
}

.cta-btn {
  background: var(--brand-primary);
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
  font-family: var(--font-primary);
}

.cta-btn:hover {
  background: var(--brand-primary-hover);
}

.hero-main-photo {
  width: 520px;
  object-fit: contain;
  border-radius: 170px 0 80px 170px;
}

/* ===== PHONE MOCKUPS ===== */
.phone-mockups {
  padding: 60px 0;
  background: var(--brand-light);
}

.phone-mockups .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.phones-wrapper {
  display: flex;
  align-items: flex-end;
  gap: 20px;
}

/* ===== SECTION TITLE (shared) ===== */
.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  margin: 0 0 48px;
  color: var(--text-heading);
}

/* ===== FEATURE HIGHLIGHTS ===== */
.feature-highlights {
  padding: 80px 0;
  background: var(--bg-light);
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

.feature-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.feature-image-wrapper {
  height: 200px;
  overflow: hidden;
}

.feature-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-title {
  font-size: 18px;
  font-weight: 600;
  margin: 20px 20px 8px;
  color: var(--text-heading);
}

.feature-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0 20px 20px;
  line-height: 1.5;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 80px 0;
  background: var(--brand-light);
}

.how-it-works .container {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.how-it-works-content {
  flex: 1;
}

.how-it-works-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.how-it-works-image img {
  border-radius: 16px;
}

.how-badge {
  display: inline-block;
  background: var(--brand-primary);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.step {
  display: flex;
  gap: 20px;
  background: white;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.step-number {
  width: 40px;
  height: 40px;
  background: rgba(29, 185, 84, 0.1);
  color: var(--brand-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 18px;
  flex-shrink: 0;
}

.step-title {
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 8px;
  color: var(--brand-primary);
}

.step-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

/* ===== RIDE OPTIONS ===== */
.ride-options {
  padding: 80px 0;
  background: var(--brand-primary);
}

.ride-options .section-title {
  color: white;
}

.ride-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.ride-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
}

.ride-card-text {
  text-align: left;
}

.car-image {
  width: 60%;
  height: auto;
  object-fit: contain;
  align-self: flex-end;
}

.ride-title {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--text-heading);
}

.ride-desc {
  font-size: 16px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 80px 0;
  background: var(--bg-light);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 40px;
}

.testimonials-layout {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.testimonials-left .section-title {
  text-align: left;
  font-size: 40px;
}

.testimonial-subtitle {
  text-align: left;
  color: var(--text-secondary);
  max-width: 400px;
  margin: 0 0 32px;
  font-size: 16px;
  line-height: 1.5;
}

.view-more-testimonials {
  display: inline-block;
  background: var(--brand-primary);
  color: white;
  padding: 12px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}

.view-more-testimonials:hover {
  opacity: 0.9;
}

.testimonials-right {
  position: relative;
}

.testimonial-star-decoration {
  height: 150px;
}

.testimonial-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: white;
  border-radius: 12px;
  padding: 24px;
  border: 2px solid var(--brand-primary);
  border-left: 15px solid var(--brand-primary);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  position: relative;
}

.testimonial-card:nth-child(odd) {
  margin-left: 0;
}

.testimonial-card:nth-child(even) {
  margin-right: 50px;
}

.testimonial-card:nth-child(odd) {
  margin-left: 50px;
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-body {
  flex: 1;
  min-width: 0;
}

.testimonial-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-heading);
  margin: 0 0 2px;
}

.testimonial-role {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0 0 8px;
}

.testimonial-quote-icon {
  font-size: 64px;
  line-height: 1;
  color: #d1d5db;
  font-family: Georgia, serif;
  flex-shrink: 0;
  margin-top: -8px;
}

.quote {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* ===== FAQ ===== */
.faq {
  padding: 80px 0;
  background: var(--brand-light);
}

.faq-layout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.faq-header {
  text-align: left;
  position: sticky;
  top: 100px;
}

.faq-big-text {
  height: 200px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-light);
  border-radius: 12px;
  border: none;
  overflow: hidden;
}

.faq-item[open] {
  background-color: var(--bg-light);
}

.faq-question {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-heading);
  padding: 24px 28px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '\276F';
  font-size: 18px;
  font-weight: 400;
  color: var(--text-secondary);
  transition: transform 0.3s;
  transform: rotate(90deg);
  flex-shrink: 0;
}

.faq-item[open] .faq-question::after {
  transform: rotate(-90deg);
}

.faq-answer {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 0 28px 24px;
  margin: 0;
  line-height: 1.6;
}

/* ===== DOWNLOAD SECTION ===== */
.download-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px;
}

.download-card {
  background: white;
  border: 2px solid var(--brand-primary);
  border-right: 10px solid var(--brand-primary);
  border-bottom: 10px solid var(--brand-primary);
  border-radius: 24px;
  padding: 48px 44px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 24px;
  overflow: hidden;
}

.download-card-reversed {
  border-left: 2px solid var(--brand-primary);
  border-bottom: 10px solid var(--brand-primary);
  border-right: 10px solid var(--brand-primary);
  border-top: 2px solid var(--brand-primary);
}

.download-content h3 {
  font-size: 40px;
  font-weight: 700;
  margin: 0 0 28px;
  line-height: 1.15;
  color: var(--text-heading);
}

.app-buttons {
  display: flex;
  gap: 12px;
}

.app-btn {
  background: #2d3436;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s;
  text-align: center;
  font-family: var(--font-primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.app-btn:hover {
  opacity: 0.85;
}

.app-btn-icon {
  font-size: 16px;
}

.download-phones {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.phone-mockup {
  height: 300px;
  object-fit: contain;
}

.qr-caption {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 12px 0 0;
  text-align: center;
}

.qr-section {
  text-align: center;
  flex-shrink: 0;
  justify-self: end;
}

.qr-code {
  width: 180px;
  height: 180px;
  border-radius: 4px;
}

.qr-section p {
  font-size: 13px;
  margin: 8px 0 0;
  color: var(--text-secondary);
}

/* ===== CONTACT CTA ===== */
.contact-cta {
  padding: 80px 0;
  text-align: center;
  background: white;
}

.contact-cta .section-title {
  font-size: 32px;
  margin-bottom: 24px;
}

.contact-cta .section-title span {
  color: var(--brand-primary);
}

.contact-cta-btn {
  background: none;
  color: var(--text-heading);
  border: none;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-primary);
}

.contact-cta-btn:hover {
  opacity: 0.8;
}

.cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--brand-primary);
  color: white;
  border-radius: 50%;
  font-size: 18px;
}

/* ===== FOOTER ===== */
#footer {
  background: var(--bg-light);
  color: black;
  padding: 60px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

.footer-logo-img {
  height: 40px;
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 14px;
  color: black;
  line-height: 1.6;
  max-width: 300px;
}

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

.footer-links a {
  color: black;
  font-size: 14px;
  transition: color 0.2s;
}

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

.footer-contact p {
  font-size: 14px;
  color: black;
  margin: 0 0 12px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: black;
  font-size: 13px;
}

.copyright {
  font-size: 13px;
  color: black;
  margin: 0;
}

/* ===== DRIVER PAGE ===== */
[data-page="driver"] .feature-cards {
  grid-template-columns: repeat(4, 1fr);
  max-width: 1250px;
}

.driver-hero {
  padding: 60px 0 0;
  overflow: hidden;
}

.driver-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 60px;
}

.driver-hero-content {
  color: black;
  flex: 1;
  max-width: 500px;
}

.driver-hero-title {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 20px;
  color: black;
}

.driver-hero-subtitle {
  font-size: 15px;
  color: black;
  line-height: 1.6;
  margin: 0 0 28px;
}

.driver-hero .app-btn {
  background: var(--text-heading);
}

.driver-hero-image {
  width: 520px;
  display: block;
}


/* Earnings & Transparency */
.earnings-section {
  padding: 80px 0;
  background: var(--brand-primary);
}

.earnings-inner {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}

.earnings-section .section-title {
  color: white;
}

.earnings-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin: 0 0 32px;
}

.earnings-btn {
  display: inline-block;
  background: white;
  color: var(--brand-primary);
  border: none;
  padding: 14px 36px;
  border-radius: 32px;
  font-size: 15px;
  font-weight: 600;
  transition: opacity 0.2s;
}

.earnings-btn:hover {
  opacity: 0.9;
}

/* ===== SAFETY PAGE ===== */
.safety-hero {
  position: relative;
  overflow: hidden;
}

.safety-hero-bg {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.safety-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 8%;
  background: linear-gradient(to right, rgba(0,0,0,0.45) 40%, transparent 80%);
}

.safety-hero-overlay h1 {
  font-size: 44px;
  font-weight: 700;
  color: white;
  margin: 0 0 16px;
  max-width: 500px;
  line-height: 1.15;
}

.safety-hero-overlay p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 460px;
  line-height: 1.6;
  margin: 0;
}

/* How PazeX Protects You */
.safety-protects {
  padding: 80px 0;
  background: white;
}

.safety-protects-subtitle {
  text-align: center;
  color: var(--text-secondary);
  max-width: 550px;
  margin: -32px auto 48px;
  font-size: 15px;
  line-height: 1.6;
}

.safety-protects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.safety-protect-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.safety-icon {
  width: 44px;
  height: 44px;
  background: rgba(29, 185, 84, 0.1);
  color: var(--brand-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.safety-protect-item h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-heading);
  margin: 0 0 4px;
}

.safety-protect-item p {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

/* What Riders Should Do */
.safety-riders {
  padding: 80px 0;
  background: var(--bg-light);
}

.safety-riders-subtitle {
  text-align: center;
  color: var(--text-secondary);
  max-width: 450px;
  margin: -32px auto 48px;
  font-size: 15px;
  line-height: 1.6;
}

.safety-tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.safety-tip {
  display: flex;
  align-items: center;
  gap: 12px;
}

.safety-tip-icon {
  width: 32px;
  height: 32px;
  background: rgba(29, 185, 84, 0.1);
  color: var(--brand-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.safety-tip p {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-heading);
  margin: 0;
}

/* Driver Safety Guidelines */
.safety-guidelines {
  padding: 80px 0;
  background: white;
}

.safety-guidelines-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}

.safety-guidelines-subtitle {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
  margin: -32px auto 36px;
}

.safety-guidelines-list {
  list-style: none;
  text-align: left;
}

.safety-guidelines-list li {
  font-size: 15px;
  color: var(--text-secondary);
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  line-height: 1.5;
}

.safety-guidelines-list li:last-child {
  border-bottom: none;
}

/* ===== CONTACT PAGE ===== */
.contact-page {
  padding: 80px 0;
  background: white;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  align-items: start;
}

.contact-image {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 32px;
}

.contact-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  background: rgba(29, 185, 84, 0.1);
  color: var(--brand-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-heading);
  margin: 0;
}

.contact-info-value {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0;
}

.contact-socials p {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-heading);
  margin: 0 0 12px;
}

.contact-social-icons {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 36px;
  height: 36px;
  background: var(--brand-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  transition: opacity 0.2s;
}

.social-icon:hover {
  opacity: 0.8;
}

.contact-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-heading);
  margin: 0 0 12px;
  line-height: 1.2;
}

.contact-title span {
  color: var(--brand-primary);
}

.contact-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  margin: 0 0 32px;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-heading);
}

.form-group input,
.form-group textarea {
  border: 1.5px solid #ddd;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  font-family: var(--font-primary);
  color: var(--text-heading);
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--brand-primary);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #bbb;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-submit {
  background: var(--brand-primary);
  color: white;
  border: none;
  padding: 14px 36px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-primary);
  transition: opacity 0.2s;
  align-self: flex-start;
}

.contact-submit:hover {
  opacity: 0.9;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  /* Header */
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 16px 24px;
    gap: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .nav.open {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .lang-selector {
    display: none;
  }

  .contact-btn {
    padding: 8px 20px;
    font-size: 14px;
  }

  /* Hero */
  .hero {
    padding: 40px 0 60px;
  }

  .hero .container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-main-photo {
    width: 100%;
    height: auto;
    border-radius: 80px 0 40px 80px;
  }

  /* Phone Mockups */
  .phone {
    width: 100%;
    max-width: 400px;
  }

  .phone-mockups .container {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .phones-wrapper {
    justify-content: center;
  }

  /* Section Title */
  .section-title {
    font-size: 24px;
  }

  /* Feature Highlights */
  .feature-highlights {
    padding: 60px 0;
  }

  .feature-cards,
  [data-page="driver"] .feature-cards {
    grid-template-columns: 1fr;
    max-width: 100%;
    gap: 20px;
  }

  .feature-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 0 16px 0 0;
  }

  .feature-image-wrapper {
    height: 120px;
    width: 120px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
  }

  .feature-title {
    margin: 0 0 4px;
    font-size: 16px;
  }

  .feature-desc {
    margin: 0;
    font-size: 13px;
  }

  /* How It Works */
  .how-it-works {
    padding: 60px 0;
  }

  .how-it-works .container {
    flex-direction: column;
  }

  .how-it-works-image {
    order: -1;
  }

  .how-it-works-image img {
    max-width: 280px;
    margin: 0 auto;
  }

  .how-it-works-content .section-title {
    text-align: center;
    font-size: 22px;
  }

  .how-badge {
    display: block;
    text-align: center;
    width: fit-content;
    margin: 0 auto 24px;
  }

  .step {
    padding: 16px;
  }

  /* Ride Options */
  .ride-options {
    padding: 60px 0;
  }

  .ride-cards {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 400px;
  }

  .ride-card {
    min-height: auto;
    padding: 24px;
  }

  /* Testimonials */
  .testimonials {
    padding: 60px 0;
  }

  .testimonial-star-decoration {
    height: 80px;
  }

  .testimonials-layout {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }

  .testimonials-left .section-title {
    text-align: center;
    font-size: 24px;
  }

  .testimonial-subtitle {
    text-align: center;
    max-width: 100%;
    margin: 0 auto 24px;
  }

  .view-more-testimonials {
    margin-bottom: 8px;
  }

  .testimonial-card {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .testimonial-card:nth-child(odd),
  .testimonial-card:nth-child(even) {
    margin-left: 0;
    margin-right: 0;
  }

  .testimonial-quote-icon {
    display: none;
  }

  /* FAQ */
  .faq {
    padding: 60px 0;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .faq-header {
    text-align: center;
    position: static;
  }

  .faq-big-text {
    height: 100px;
  }

  .faq-question {
    font-size: 14px;
    padding: 18px 20px;
  }

  .faq-answer {
    font-size: 13px;
    padding: 0 20px 18px;
  }

  /* Download */
  .download-section {
    padding: 60px 16px;
    gap: 32px;
  }

  .download-card,
  .download-card-reversed {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 32px 24px;
    gap: 24px;
    border-width: 2px;
    border-right-width: 6px;
    border-bottom-width: 6px;
  }

  .download-card-reversed {
    border-width: 2px;
    border-right-width: 6px;
    border-bottom-width: 6px;
  }

  .download-content h3 {
    font-size: 28px;
  }

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

  .qr-section {
    justify-self: center;
  }

  .phone-mockup {
    height: 240px;
  }

  .qr-code {
    width: 160px;
    height: 160px;
  }

  .qr-caption {
    margin-top: 8px;
  }

  /* Contact CTA */
  .contact-cta {
    padding: 60px 0;
  }

  .contact-cta .section-title {
    font-size: 24px;
  }

  /* Contact Page */
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-left {
    order: 1;
  }

  .contact-right {
    order: 0;
  }

  .contact-title {
    font-size: 28px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-submit {
    align-self: stretch;
  }

  /* Safety Page */
  .safety-hero-bg {
    height: 280px;
  }

  .safety-hero-overlay {
    align-items: center;
    text-align: center;
    padding: 0 24px;
    background: rgba(0, 0, 0, 0.4);
  }

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

  .safety-hero-overlay p {
    font-size: 14px;
  }

  .safety-protects,
  .safety-riders,
  .safety-guidelines {
    padding: 60px 0;
  }

  .safety-protects-grid {
    grid-template-columns: 1fr;
  }

  .safety-tips-grid {
    grid-template-columns: 1fr;
  }

  /* Driver Page */
  .driver-hero {
    padding: 40px 0 0;
  }

  .driver-hero-inner {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }

  .driver-hero-title {
    font-size: 28px;
  }

  .driver-hero-subtitle {
    font-size: 14px;
  }

  .driver-hero .app-buttons {
    justify-content: center;
  }

  .earnings-section {
    padding: 60px 0;
  }

  .earnings-desc {
    font-size: 14px;
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-desc {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }

  .ride-cards {
    grid-template-columns: 1fr;
  }

  .feature-card {
    flex-direction: column;
    padding: 0;
  }

  .feature-image-wrapper {
    width: 100%;
    height: 180px;
  }

  .feature-title {
    margin: 16px 16px 4px;
  }

  .feature-desc {
    margin: 0 16px 16px;
  }
}
