/* ========================================================================
   UWAY CAR RENTAL — Premium Design System
   Clean White + Brand Green (#5DB816) Aesthetic
   ======================================================================== */

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

/* --- CSS Custom Properties --- */
:root {
  /* Brand Colors */
  --green-primary: #5DB816;
  --green-light: #79D435;
  --green-dark: #3D8A0A;
  --green-subtle: #EDF9E0;
  --green-gradient: linear-gradient(135deg, #5DB816 0%, #79D435 100%);

  /* Neutrals */
  --charcoal: #1A1A2E;
  --text-dark: #222222;
  --text-medium: #555555;
  --text-light: #888888;
  --border: #E8E8E8;
  --bg-white: #FFFFFF;
  --bg-light: #F8F9FA;
  --bg-section: #FAFBFC;

  /* Accent */
  --gold: #D4A843;
  --gold-light: #F5ECD7;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-pad: 100px;
  --section-pad-mobile: 56px;
  --container-max: 1200px;
  --container-pad: 24px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 50%;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.10);
  --shadow-green: 0 8px 32px rgba(93, 184, 22, 0.22);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 0.3s;
  --duration-slow: 0.6s;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--bg-white);
  overflow-x: hidden;
  max-width: 100%;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--duration) var(--ease);
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--charcoal);
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

h3 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
}

h4 {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
}

p {
  color: var(--text-medium);
  line-height: 1.8;
}

/* --- Layout --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section {
  padding: var(--section-pad) 0;
}

.section--light {
  background: var(--bg-light);
}

.section--green {
  background: var(--green-subtle);
}

.section--dark {
  background: var(--charcoal);
  color: #fff;
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: #fff;
}

.section--dark p {
  color: rgba(255, 255, 255, 0.75);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.section-header .label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-primary);
  margin-bottom: 12px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.05rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  text-decoration: none;
  line-height: 1;
}

.btn--primary {
  background: var(--green-gradient);
  color: #fff;
  box-shadow: var(--shadow-green);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(93, 184, 22, 0.30);
}

.btn--outline {
  background: transparent;
  color: var(--green-primary);
  border: 2px solid var(--green-primary);
}

.btn--outline:hover {
  background: var(--green-primary);
  color: #fff;
}

.btn--white {
  background: #fff;
  color: var(--charcoal);
  box-shadow: var(--shadow-md);
}

.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--dark {
  background: var(--charcoal);
  color: #fff;
}

.btn--dark:hover {
  background: #2a2a42;
  transform: translateY(-2px);
}

.btn--lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}

.btn--sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all var(--duration) var(--ease);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
  border-bottom: 1px solid var(--border);
}

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

.navbar__logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.navbar__links a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-dark);
  position: relative;
  padding: 4px 0;
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-primary);
  transition: width var(--duration) var(--ease);
}

.navbar__links a:hover::after,
.navbar__links a.active::after {
  width: 100%;
}

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

.navbar__action-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius-md);
  transition: all var(--duration) var(--ease);
  white-space: nowrap;
}

.navbar__action-link:hover {
  color: var(--green-primary);
  background: var(--green-subtle);
}

.navbar__action-link svg {
  flex-shrink: 0;
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: all var(--duration) var(--ease);
  border-radius: 2px;
}

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

.navbar__toggle.active span:nth-child(2) {
  opacity: 0;
}

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

/* Mobile-only Login link in hamburger menu — hidden on desktop */
.navbar__mobile-login {
  display: none;
}

/* --- Hero --- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
  background: var(--bg-white);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0.3) 100%);
  z-index: 1;
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: 48px;
  align-items: stretch;
  padding: 40px 0;
}

.hero__content {
  max-width: 640px;
  display: flex;
  flex-direction: column;
}

.hero__content .btn-group {
  margin-top: auto;
}

.hero__form {
  width: 100%;
  max-width: 440px;
  position: relative;
  height: 600px;
  overflow: visible;
  flex-shrink: 0;
}

.hero__form iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 600px;
  /* form ~460px + calendar ~280px = fits fully, no clipping */
  border: none;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-subtle);
  color: var(--green-primary);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
  border: 1px solid rgba(93, 184, 22, 0.15);
}

.hero__badge svg {
  width: 16px;
  height: 16px;
}

.hero h1 {
  margin-bottom: 20px;
  font-weight: 800;
}

.hero h1 .highlight {
  color: var(--green-primary);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.hero__desc {
  font-size: 1.15rem;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero__stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.hero__stat {
  display: flex;
  flex-direction: column;
}

.hero__stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--green-primary);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 4px;
}

/* --- Trust Bar --- */
.trust-bar {
  padding: 40px 0;
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.trust-bar__label {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-light);
  margin-bottom: 24px;
}

.trust-bar__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-bar__logos span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--text-light);
  opacity: 0.4;
  transition: opacity var(--duration) var(--ease);
}

.trust-bar__logos span:hover {
  opacity: 0.7;
}

/* --- About UWAY Section (Premium) --- */
.about-section {
  background: var(--bg-white);
  overflow: hidden;
}

.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 72px;
}

.about-hero__image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-hero__image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}

.about-hero__image:hover img {
  transform: scale(1.03);
}

.about-hero__image-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--green-gradient);
  color: #fff;
  padding: 16px 24px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
}

.about-hero__badge-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.about-hero__badge-text {
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.about-hero__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-hero__content .label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-primary);
}

.about-hero__content h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.25;
}

.about-hero__content p {
  font-size: 0.95rem;
  line-height: 1.8;
}

.about-mini-stats {
  display: flex;
  gap: 32px;
  padding: 24px 0;
  margin-top: 8px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-mini-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.about-mini-stat__number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--green-primary);
  line-height: 1;
}

.about-mini-stat__label {
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 500;
}

.about-hero__actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  flex-wrap: wrap;
}

/* About Pillar Cards */
.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-pillar {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: all var(--duration) var(--ease);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-pillar:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(93, 184, 22, 0.2);
}

.about-pillar__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--green-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-primary);
  transition: all var(--duration) var(--ease);
}

.about-pillar:hover .about-pillar__icon {
  background: var(--green-primary);
  color: #fff;
}

.about-pillar__icon svg {
  width: 26px;
  height: 26px;
}

.about-pillar__content h4 {
  margin-bottom: 6px;
  font-weight: 700;
}

.about-pillar__content p {
  font-size: 0.92rem;
  line-height: 1.7;
}

.about-pillar__accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--green-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.about-pillar:hover .about-pillar__accent {
  transform: scaleX(1);
}

/* --- Featured USP Cards (Hero Cards with Images) --- */
.usp-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}

.usp-featured-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--duration) var(--ease);
  display: flex;
  flex-direction: column;
}

.usp-featured-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(93, 184, 22, 0.2);
}

.usp-featured-card__image {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.usp-featured-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.usp-featured-card:hover .usp-featured-card__image img {
  transform: scale(1.05);
}

.usp-featured-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.4) 100%);
  pointer-events: none;
}

.usp-featured-card__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  background: var(--green-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 16px rgba(93, 184, 22, 0.35);
}

.usp-featured-card__badge svg {
  width: 26px;
  height: 26px;
}

.usp-featured-card__badge--shield {
  background: linear-gradient(135deg, #4CAF50, #2E7D32);
  box-shadow: 0 4px 16px rgba(46, 125, 50, 0.35);
}

.usp-featured-card__content {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.usp-featured-card__content h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--charcoal);
}

.usp-featured-card__content p {
  font-size: 0.95rem;
  line-height: 1.7;
}

.usp-featured-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.usp-featured-card__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
}

.usp-featured-card__list li svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--green-primary);
}

/* --- USP Cards (Standard 4-column grid) --- */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.usp-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
}

.usp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--green-gradient);
  transition: height var(--duration-slow) var(--ease);
  border-radius: 0 0 4px 0;
}

.usp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(93, 184, 22, 0.15);
}

.usp-card:hover::before {
  height: 100%;
}

.usp-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--green-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--green-primary);
}

.usp-card__icon svg {
  width: 28px;
  height: 28px;
}

.usp-card h4 {
  margin-bottom: 8px;
  font-weight: 700;
}

.usp-card p {
  font-size: 0.92rem;
  line-height: 1.6;
}

/* --- Services Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--duration) var(--ease);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(93, 184, 22, 0.15);
}

.service-card__image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.service-card:hover .service-card__image img {
  transform: scale(1.06);
}

/* Keep old icon styles for backward compat */
.service-card__icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: var(--green-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-primary);
}

.service-card__icon svg {
  width: 32px;
  height: 32px;
}

.service-card__content {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card__content h4 {
  margin-bottom: 8px;
}

.service-card__content p {
  font-size: 0.92rem;
  line-height: 1.7;
}

.service-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.service-card__features span {
  font-size: 0.78rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 50px;
  background: var(--green-subtle);
  color: var(--green-dark);
}

/* --- Why Choose Section --- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.why-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.why-item__check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  background: var(--green-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-primary);
  margin-top: 2px;
}

.why-item__check svg {
  width: 16px;
  height: 16px;
}

.why-item h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.why-item p {
  font-size: 0.9rem;
}

/* --- Fleet Section --- */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.fleet-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--duration) var(--ease);
}

.fleet-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.fleet-card__image {
  height: 200px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow: hidden;
}

.fleet-card__image img {
  max-height: 100%;
  object-fit: contain;
}

.fleet-card__body {
  padding: 24px;
}

.fleet-card__category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--green-primary);
  margin-bottom: 8px;
}

.fleet-card h4 {
  margin-bottom: 6px;
}

.fleet-card p {
  font-size: 0.88rem;
}

.fleet-card__specs {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.fleet-card__spec {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-light);
}

.fleet-card__spec svg {
  width: 16px;
  height: 16px;
  color: var(--green-primary);
}

/* --- Stats Section --- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item {
  padding: 20px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--green-light);
  line-height: 1;
  margin-bottom: 8px;
}

.section--dark .stat-number {
  color: var(--green-light);
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.9;
}

.stat-divider {
  width: 40px;
  height: 3px;
  background: var(--green-primary);
  margin: 12px auto 0;
  border-radius: 3px;
  opacity: 0.5;
}

/* --- Split Feature (Women Safety / EV) --- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split--reverse {
  direction: rtl;
}

.split--reverse>* {
  direction: ltr;
}

.split__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.split__image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

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

.split__content .label {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-primary);
}

.split__content h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.split__features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}

.split__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--text-dark);
}

.split__feature svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--green-primary);
}

/* --- How It Works --- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  width: 75%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-step__number {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  background: var(--bg-white);
  border: 2px solid var(--green-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--green-primary);
  transition: all var(--duration) var(--ease);
}

.process-step:hover .process-step__number {
  background: var(--green-primary);
  color: #fff;
  transform: scale(1.05);
}

.process-step h4 {
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.88rem;
}

/* --- Cities Grid --- */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.city-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--duration) var(--ease);
}

.city-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(93, 184, 22, 0.15);
}

.city-card__icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  background: var(--green-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.6rem;
}

.city-card h4 {
  margin-bottom: 4px;
  font-size: 1.1rem;
}

.city-card p {
  font-size: 0.82rem;
}

/* --- Testimonials --- */
.testimonials-container {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s var(--ease);
}

.testimonial-card {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0 40px;
}

.testimonial-card__inner {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 20px;
  color: var(--gold);
}

.testimonial-stars svg {
  width: 20px;
  height: 20px;
}

.testimonial-quote {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 24px;
}

.testimonial-author {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.testimonial-role {
  font-size: 0.88rem;
  color: var(--text-light);
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  padding: 0;
}

.testimonial-dot.active {
  background: var(--green-primary);
  width: 32px;
  border-radius: 6px;
}

/* --- FAQ --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
  gap: 16px;
}

.faq-question svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--green-primary);
  transition: transform var(--duration) var(--ease);
}

.faq-item.active .faq-question svg {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}

.faq-answer p {
  font-size: 0.95rem;
  line-height: 1.8;
}

/* --- CTA Banner --- */
.cta-banner {
  background: var(--green-gradient);
  border-radius: var(--radius-xl);
  padding: 72px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.cta-banner h2 {
  color: #fff;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.cta-banner .btn-group {
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* --- Contact Form Section --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

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

.contact-item__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--green-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-primary);
}

.contact-item__icon svg {
  width: 24px;
  height: 24px;
}

.contact-item h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.contact-item p,
.contact-item a {
  font-size: 0.92rem;
  color: var(--text-medium);
}

.contact-item a:hover {
  color: var(--green-primary);
}

.contact-form {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: border-color var(--duration) var(--ease);
  background: var(--bg-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-primary);
  background: var(--bg-white);
}

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

/* --- Footer --- */
.footer {
  background: var(--charcoal);
  color: #fff;
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
  margin-top: 16px;
  margin-bottom: 24px;
  max-width: 320px;
}

.footer-brand__logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.95);
  padding: 8px 16px;
  border-radius: 8px;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--duration) var(--ease);
}

.footer-social a:hover {
  background: var(--green-primary);
  border-color: var(--green-primary);
  color: #fff;
}

.footer-col h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: all var(--duration) var(--ease);
}

.footer-col ul li a:hover {
  color: var(--green-light);
  padding-left: 4px;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a:hover {
  color: var(--green-light);
}

/* --- Scroll Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered children */
.stagger-children .reveal:nth-child(1) {
  transition-delay: 0.05s;
}

.stagger-children .reveal:nth-child(2) {
  transition-delay: 0.10s;
}

.stagger-children .reveal:nth-child(3) {
  transition-delay: 0.15s;
}

.stagger-children .reveal:nth-child(4) {
  transition-delay: 0.20s;
}

.stagger-children .reveal:nth-child(5) {
  transition-delay: 0.25s;
}

.stagger-children .reveal:nth-child(6) {
  transition-delay: 0.30s;
}

.stagger-children .reveal:nth-child(7) {
  transition-delay: 0.35s;
}

.stagger-children .reveal:nth-child(8) {
  transition-delay: 0.40s;
}

/* --- Technology Section --- */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tech-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--duration) var(--ease);
}

.tech-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.tech-card__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background: var(--green-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--green-primary);
}

.tech-card__icon svg {
  width: 28px;
  height: 28px;
}

.tech-card h4 {
  margin-bottom: 8px;
}

.tech-card p {
  font-size: 0.88rem;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .usp-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid::before {
    display: none;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-hero {
    gap: 40px;
  }

  .about-hero__image img {
    height: 400px;
  }

  .about-pillars {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  /* Hide login link on tablet, keep buttons */
  .navbar__action-link {
    display: none;
  }

  /* Hero grid tablet */
  .hero__grid {
    grid-template-columns: 400px 1fr;
    gap: 28px;
  }

  .hero__form {
    max-width: 400px;
  }

  .hero__form iframe {
    height: 600px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 56px;
    --container-pad: 20px;
  }

  /* Navbar mobile */
  .navbar__links {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
    transform: translateY(-120%);
    transition: transform var(--duration) var(--ease);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }

  .navbar__links.open {
    transform: translateY(0);
  }

  .navbar__toggle {
    display: flex;
  }

  /* Mobile navbar: show Login in hamburger, show both buttons in CTA */
  .navbar__action-link {
    display: none;
  }

  .navbar__mobile-login {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--green-primary);
    padding-top: 16px;
    margin-top: 8px;
    border-top: 1px solid var(--border);
  }

  .navbar__mobile-login svg {
    flex-shrink: 0;
  }

  /* Show BOTH Business Signup + Book Consultation on mobile */
  .navbar__cta .btn--outline {
    font-size: 0.72rem;
    padding: 7px 10px;
  }

  .navbar__cta .btn--outline svg {
    display: none;
  }

  .navbar__cta .btn--primary {
    font-size: 0.72rem;
    padding: 7px 10px;
  }

  .navbar__cta .btn--primary svg {
    display: none;
  }

  .navbar__cta {
    gap: 6px;
  }

  /* Hero mobile */
  .hero {
    min-height: auto;
    padding: 82px 0 32px;
  }

  .hero__bg img {
    object-position: center top;
  }

  .hero__overlay {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.9) 42%, rgba(255, 255, 255, 0.96) 100%);
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 8px 0 0;
  }

  .hero__form {
    max-width: 100%;
  }

  .hero__form iframe {
    height: 540px;
    border-radius: 12px;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__badge {
    gap: 7px;
    font-size: 0.72rem;
    letter-spacing: 0.8px;
    line-height: 1.2;
    padding: 8px 14px;
    margin-bottom: 16px;
  }

  .hero__badge svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
  }

  .hero h1 {
    margin-bottom: 14px;
    line-height: 1.12;
    padding-left: 3%;
  }

  .hero__desc {
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 24px;
    padding-left: 3%;
    display: flex !important;
    justify-content: flex-start !important;
    max-width: 100%;
  }

  .hero__content .btn-group {
    margin-top: 0;
    gap: 12px;
  }

  .hero__content .btn--lg {
    min-height: 54px;
    padding: 15px 22px;
    font-size: 0.98rem;
    border-radius: 12px;
  }

  .hero__stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .hero__stat-number {
    font-size: 1.6rem;
  }

  .btn-group {
    flex-direction: column;
    width: 100%;
  }

  .btn-group .btn {
    width: 100%;
    justify-content: center;
  }

  /* About section mobile */
  .about-hero {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-hero__image img {
    height: 280px;
  }

  .about-hero__image-badge {
    bottom: 16px;
    right: 16px;
    padding: 12px 18px;
  }

  .about-hero__badge-number {
    font-size: 1.5rem;
  }

  .about-mini-stats {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .about-mini-stat {
    align-items: center;
  }

  .about-mini-stat__number {
    font-size: 1.4rem;
  }

  .about-pillars {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .about-hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* USP featured mobile */
  .usp-featured {
    grid-template-columns: 1fr;
  }

  .usp-featured-card__image {
    height: 200px;
  }

  .usp-featured-card__content {
    padding: 24px;
  }

  /* Grids mobile */
  .usp-grid {
    grid-template-columns: 1fr;
  }

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

  .split {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .split--reverse {
    direction: ltr;
  }

  .split__image img {
    height: 260px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stat-number {
    font-size: 2rem;
  }

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

  .cities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

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

  /* Contact mobile */
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  /* CTA banner mobile */
  .cta-banner {
    padding: 48px 24px;
    border-radius: var(--radius-lg);
  }

  /* Footer mobile */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  /* Testimonial mobile */
  .testimonial-card {
    padding: 0 8px;
  }

  .testimonial-card__inner {
    padding: 28px 20px;
  }

  /* Section headers mobile */
  .section-header {
    margin-bottom: 36px;
  }

  .service-card {
    flex-direction: column;
  }

  .service-card__image {
    height: 180px;
  }

  .service-card__content {
    padding: 22px;
  }

  .city-card {
    padding: 20px 16px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 78px 0 28px;
  }

  .hero__grid {
    gap: 16px;
  }

  .hero__badge {
    width: 100%;
    justify-content: center;
    font-size: 0.68rem;
    padding: 8px 12px;
    margin-bottom: 14px;
  }

  .hero h1 {
    font-size: 1.78rem;
    line-height: 1.1;
  }

  .hero__desc {
    font-size: 0.96rem;
    line-height: 1.6;
    margin-bottom: 22px;
  }

  .hero__content .btn--lg {
    min-height: 52px;
    padding: 14px 18px;
    font-size: 0.94rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .about-hero__content h2 {
    font-size: 1.5rem;
  }

  .about-mini-stats {
    gap: 16px;
  }

  .about-mini-stat__number {
    font-size: 1.2rem;
  }

  /* Mobile: shrink buttons further but keep both */
  .navbar__cta .btn--outline {
    font-size: 0.68rem;
    padding: 6px 8px;
  }

  .navbar__cta .btn--primary {
    font-size: 0.68rem;
    padding: 6px 8px;
  }

  .usp-featured-card__image {
    height: 180px;
  }

  .usp-featured-card__content {
    padding: 20px;
  }

  .usp-featured-card__content h3 {
    font-size: 1.2rem;
  }
}