/* ===== CSS RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Primary Colors */
  --navy: #1a2238;
  --navy-dark: #0f1524;
  --navy-light: #243052;
  --orange: #f5a623;
  --orange-dark: #e09000;
  --orange-light: #ffc85c;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --gray-light: #eef1f6;
  --gray: #8892a4;
  --gray-dark: #5a6275;
  --text-dark: #1a2238;
  --text-body: #4a5568;
  --text-light: #718096;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(26, 34, 56, 0.08);
  --shadow-md: 0 4px 16px rgba(26, 34, 56, 0.12);
  --shadow-lg: 0 8px 32px rgba(26, 34, 56, 0.16);
  --shadow-xl: 0 12px 48px rgba(26, 34, 56, 0.2);
  --shadow-orange: 0 4px 20px rgba(245, 166, 35, 0.35);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 50px;

  /* Spacing */
  --section-padding: 80px 0;

  /* Font */
  --font-family: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-family);
  color: var(--text-body);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

button {
  font-family: var(--font-family);
  cursor: pointer;
  border: none;
  outline: none;
}

input,
select {
  font-family: var(--font-family);
  outline: none;
  border: none;
}

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

/* ===== SECTION LABEL ===== */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 8px;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.3;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition-normal);
  cursor: pointer;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(245, 166, 35, 0.45);
}

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

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}

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

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
}

.btn i,
.btn svg {
  font-size: 1rem;
}

/* ===== HEADER / NAVBAR ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img {
  height: 50px;
  width: auto;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-text .brand-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.nav-logo-text .brand-tagline {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width var(--transition-normal);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

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

.nav-links a.active {
  color: var(--orange);
  font-weight: 600;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-phone-icon {
  width: 40px;
  height: 40px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  animation: phone-ring 2s ease-in-out infinite;
}

@keyframes phone-ring {
  0%, 100% { transform: rotate(0); }
  10% { transform: rotate(15deg); }
  20% { transform: rotate(-10deg); }
  30% { transform: rotate(10deg); }
  40% { transform: rotate(-5deg); }
  50% { transform: rotate(0); }
}

.nav-phone-text {
  display: flex;
  flex-direction: column;
}

.nav-phone-text span:first-child {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
}

.nav-phone-text span:last-child {
  font-size: 0.7rem;
  color: var(--gray);
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  width: 26px;
  height: 3px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition-normal);
}

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

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

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

/* ===== HERO SECTION ===== */
.hero {
  padding-top: 72px;
  background: linear-gradient(135deg, var(--off-white) 0%, #e8ecf4 50%, #dfe6f0 100%);
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1449965408869-ebd13bc7d0c6?w=800') center/cover no-repeat;
  opacity: 0.08;
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 60px 0 40px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 166, 35, 0.12);
  border: 1px solid rgba(245, 166, 35, 0.3);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--orange-dark);
  margin-bottom: 20px;
}

.hero-badge i {
  color: var(--orange);
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero-title span {
  color: var(--orange);
}

.hero-desc {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 28px;
  max-width: 480px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-car-img {
  width: 100%;
  max-width: 540px;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 20px 40px rgba(26, 34, 56, 0.15));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Hero Feature Badges */
.hero-features {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-feature-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  animation: fadeInRight 0.6s ease forwards;
  opacity: 0;
  min-width: 160px;
}

.hero-feature-badge:nth-child(1) { animation-delay: 0.2s; }
.hero-feature-badge:nth-child(2) { animation-delay: 0.4s; }
.hero-feature-badge:nth-child(3) { animation-delay: 0.6s; }

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

.hero-feature-badge .badge-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
}

.hero-feature-badge .badge-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}

/* ===== BOOKING FORM ===== */
.booking-section {
  padding: 0;
  position: relative;
  z-index: 10;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: var(--white);
  padding: 32px 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  margin: -30px auto 0;
  position: relative;
  z-index: 5;
}

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

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-group label i {
  color: var(--orange);
  font-size: 0.85rem;
}

.form-group input,
.form-group select {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input::placeholder {
  color: var(--gray);
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.12);
  background: var(--white);
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238892a4' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

/* Submit Button */
.submit-group {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
}

.submit-group .btn-primary {
  width: 100%;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  margin-top: auto;
}

/* ===== WHY CHOOSE US ===== */
.why-choose {
  padding: var(--section-padding);
  background: var(--white);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}

.why-choose-image {
  position: relative;
  height: 100%;
  min-height: 100%;
  align-self: stretch;
}

.why-choose-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.experience-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--orange);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-orange);
}

.experience-badge .number {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.experience-badge .text {
  font-size: 0.7rem;
  font-weight: 500;
  opacity: 0.9;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 24px 20px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
  border: 1px solid transparent;
}

.feature-card:hover {
  background: var(--white);
  border-color: rgba(245, 166, 35, 0.2);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.feature-card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 14px;
}

.feature-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.feature-card p {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ===== FLEET SECTION ===== */
.fleet {
  padding: var(--section-padding);
  background: var(--off-white);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.fleet-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  border: 1px solid rgba(26, 34, 56, 0.06);
}

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

.fleet-card-img {
  background: linear-gradient(135deg, #f8f9fc, #eef1f6);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fleet-card-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform var(--transition-normal);
}

.fleet-card:hover .fleet-card-img img {
  transform: scale(1.05);
}

.fleet-card-body {
  padding: 20px;
}

.fleet-card-body h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.fleet-specs {
  display: flex;
  gap: 16px;
  margin-bottom: 14px;
}

.fleet-spec {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: var(--gray);
}

.fleet-spec i {
  color: var(--orange);
  font-size: 0.8rem;
}

.fleet-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--gray-light);
}

.fleet-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.fleet-price .amount {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--orange);
}

.fleet-price .unit {
  font-size: 0.7rem;
  color: var(--gray);
}

.fleet-book-btn {
  padding: 8px 20px;
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-full);
  transition: all var(--transition-normal);
}

.fleet-book-btn:hover {
  background: var(--orange);
  transform: translateY(-2px);
}

.fleet-cta {
  text-align: center;
}

/* ===== POPULAR ROUTES ===== */
.routes {
  padding: var(--section-padding);
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.routes::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 80%, rgba(245, 166, 35, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(245, 166, 35, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.routes .section-label {
  color: var(--orange-light);
}

.routes .section-title {
  color: var(--white);
}

.routes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.route-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  height: 220px;
  cursor: pointer;
  transition: transform var(--transition-normal);
}

.route-card:hover {
  transform: translateY(-6px);
}

.route-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.route-card:hover img {
  transform: scale(1.1);
}

.route-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(26, 34, 56, 0.9), transparent);
  color: var(--white);
}

.route-card-overlay .route-name {
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}

.route-card-overlay .route-price {
  font-size: 0.75rem;
  color: var(--orange-light);
}

.routes-cta {
  text-align: center;
  position: relative;
  z-index: 1;
}

/* ===== STATS ===== */
.stats {
  padding: 60px 0;
  background: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  text-align: center;
  padding: 32px 20px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 80px;
  height: 80px;
  background: rgba(245, 166, 35, 0.15);
  border-radius: 50%;
}

.stat-icon {
  width: 52px;
  height: 52px;
  background: rgba(245, 166, 35, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1.3rem;
  margin: 0 auto 14px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: var(--section-padding);
  background: var(--off-white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--orange) 0, var(--orange) 8px, transparent 8px, transparent 16px);
  z-index: 0;
}

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

.step-number {
  width: 56px;
  height: 56px;
  background: var(--white);
  border: 3px solid var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--orange);
  margin: 0 auto 20px;
  position: relative;
}

.step-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: var(--section-padding);
  background: var(--white);
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform var(--transition-slow);
}

.testimonial-card {
  min-width: calc(33.333% - 16px);
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid rgba(26, 34, 56, 0.06);
  transition: all var(--transition-normal);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(245, 166, 35, 0.2);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.testimonial-stars i {
  color: var(--orange);
  font-size: 0.9rem;
}

.testimonial-text {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--orange);
}

.testimonial-info h5 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
}

.testimonial-info span {
  font-size: 0.75rem;
  color: var(--gray);
}

.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.testimonials-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-light);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.testimonials-dots .dot.active {
  background: var(--orange);
  width: 28px;
  border-radius: 6px;
}

/* ===== SERVICE AREAS ===== */
.service-areas {
  padding: var(--section-padding);
  background: var(--off-white);
}

.areas-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.area-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  background: var(--white);
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  cursor: pointer;
  border: 1px solid transparent;
}

.area-tag:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.area-tag i {
  color: var(--orange);
  font-size: 0.8rem;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 60px 0;
  background: var(--white);
}

.cta-banner-inner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-xl);
  padding: 52px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.cta-banner-inner::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: rgba(245, 166, 35, 0.1);
  border-radius: 50%;
}

.cta-banner-inner::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 30%;
  width: 150px;
  height: 150px;
  background: rgba(245, 166, 35, 0.08);
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.cta-content p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
}

.cta-buttons {
  display: flex;
  gap: 16px;
  position: relative;
  z-index: 1;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-dark);
  padding: 60px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand .footer-logo-icon {
  width: 44px;
  height: 44px;
  background: var(--orange);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 800;
}

.footer-brand .footer-logo-text {
  display: flex;
  flex-direction: column;
}

.footer-brand .footer-logo-text .brand-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
}

.footer-brand .footer-logo-text .brand-tagline {
  font-size: 0.65rem;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  transition: all var(--transition-normal);
}

.footer-social a:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--orange);
}

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

.footer-col ul li a {
  font-size: 0.85rem;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul li a:hover {
  color: var(--orange);
  padding-left: 6px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.footer-contact li i {
  color: var(--orange);
  margin-top: 4px;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
}

.footer-bottom .designed-by span {
  color: #e53e3e;
}

/* ===== SCROLL ANIMATIONS ===== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-orange);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  z-index: 999;
  border: none;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--orange-dark);
  transform: translateY(-4px);
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 1024px) {
  .hero-content {
    gap: 24px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-features {
    display: none;
  }

  .booking-form {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding: 24px 24px;
  }

  .submit-group {
    grid-column: span 2;
  }

  .submit-group .btn-primary {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

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

  .why-choose-image {
    display: flex;
    justify-content: center;
  }

  .why-choose-image img {
    max-width: 350px;
  }

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

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

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

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

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

  .testimonial-card {
    min-width: calc(50% - 12px);
  }

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

  .cta-banner-inner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
    padding: 40px 32px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --section-padding: 50px 0;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 80px 30px 30px;
    gap: 0;
    box-shadow: var(--shadow-xl);
    transition: right var(--transition-normal);
    z-index: 999;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    padding: 14px 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--gray-light);
    width: 100%;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-phone {
    display: none;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 0 30px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-desc {
    margin: 0 auto 28px;
  }

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

  .hero-right {
    order: -1;
  }

  .hero-car-img {
    max-width: 360px;
  }

  .hero-features {
    display: none;
  }

  .booking-section {
    margin-top: -20px;
  }

  .booking-form {
    grid-template-columns: 1fr;
    padding: 24px 20px;
  }

  .submit-group {
    grid-column: span 1;
  }

  .submit-group .btn-primary {
    width: 100%;
    max-width: 100%;
  }

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

  .fleet-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto 40px;
  }

  .routes-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .route-card {
    height: 180px;
  }

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

  .stat-card {
    padding: 24px 14px;
  }

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

  .steps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .testimonial-card {
    min-width: calc(100% - 0px);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-buttons .btn {
    justify-content: center;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.65rem;
  }

  .section-title {
    font-size: 1.4rem;
  }

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

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

  .route-card {
    height: 200px;
  }

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

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

  .areas-tags {
    gap: 8px;
  }

  .area-tag {
    padding: 8px 16px;
    font-size: 0.8rem;
  }

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

/* Overlay for mobile nav */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ===== Counter Animation ===== */
.stat-number[data-count] {
  transition: none;
}