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

/* CSS Variables / Theme Tokens */
:root {
  --font-primary: 'Poppins', sans-serif;
  
  /* Color Palette - Aegean and Bozcaada Vibe */
  --color-white: #ffffff;
  --color-dark: #0f172a;
  --color-light: #f8fafc;
  
  --color-aegean-deep: #052c54;
  --color-aegean-primary: #005a9c;
  --color-aegean-medium: #0077c0;
  --color-aegean-light: #e6f4fc;
  --color-aegean-mist: #f0f7fc;
  
  --color-taxi-yellow: #f5b000;
  --color-taxi-yellow-hover: #e09f00;
  --color-taxi-contrast: #0f172a;
  
  --color-whatsapp: #25d366;
  --color-whatsapp-hover: #20ba5a;
  
  --color-pink: #d11f5d; /* Bougainvillea pink */
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-medium: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Container Width */
  --container-max-width: 1200px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-aegean-deep);
}

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

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

/* Utilities */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* Header styling */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.25rem 0;
  background: transparent;
}

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

.logo-area {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.logo-icon {
  font-size: 1.6rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.logo-text {
  color: var(--color-white);
}

.logo-text .highlight {
  color: var(--color-taxi-yellow);
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.header-phone:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-image: url('assets/bozcaada-hero-bg.jpg');
  background-size: cover;
  background-position: center;
  color: var(--color-white);
  text-align: center;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(5, 44, 84, 0.55) 0%,
    rgba(5, 44, 84, 0.75) 50%,
    rgba(5, 44, 84, 0.92) 100%
  );
  z-index: 1;
}

/* Subtle wind animation vector elements in background */
.hero-wind-decoration {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(209, 31, 93, 0.08) 0%, transparent 40%),
                    radial-gradient(circle at 20% 80%, rgba(0, 180, 216, 0.08) 0%, transparent 40%);
  z-index: 2;
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-content {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Vehicle plate badge styling */
.plate-badge {
  background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
  color: var(--color-taxi-yellow);
  padding: 0.6rem 2.2rem;
  border-radius: 6px;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  margin-bottom: 2rem;
  border: 3px solid var(--color-taxi-yellow);
  box-shadow: 0 10px 25px rgba(245, 176, 0, 0.3);
  display: inline-block;
  text-transform: uppercase;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--color-white);
  line-height: 1.25;
}

.hero-title .gradient-text {
  background: linear-gradient(120deg, var(--color-taxi-yellow) 0%, #fff7d6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Call to Actions (CTA) */
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
  max-width: 500px;
  margin-bottom: 3.5rem;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.1rem 2rem;
  border-radius: 16px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(0);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
  cursor: pointer;
  border: none;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-call {
  background-color: var(--color-taxi-yellow);
  color: var(--color-taxi-contrast);
}

.btn-call:hover {
  background-color: var(--color-taxi-yellow-hover);
  box-shadow: 0 12px 30px rgba(245, 176, 0, 0.4);
}

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

.btn-whatsapp:hover {
  background-color: var(--color-whatsapp-hover);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

.btn-icon {
  font-size: 1.5rem;
}

.btn-text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.btn-subtext {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.85;
}

.btn-maintext {
  font-size: 1.15rem;
  margin-top: -2px;
}

.btn-whatsapp .btn-subtext {
  opacity: 0.9;
}

/* Badges section at the bottom of hero */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.badge-icon {
  font-size: 1rem;
}

.hero-badge-interactive {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  width: 100%;
}

.clickable-badge {
  cursor: pointer;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: rgba(255, 255, 255, 0.9) !important;
  transition: transform var(--transition-fast), background-color var(--transition-fast), border-color var(--transition-fast);
}

.clickable-badge:hover {
  background-color: rgba(255, 255, 255, 0.2) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
  transform: translateY(-2px) !important;
  color: var(--color-white) !important;
}

.badge-arrow {
  margin-left: 0.35rem;
  font-size: 0.95rem;
  display: inline-block;
  animation: arrow-bounce 1.8s infinite ease-in-out;
}

@keyframes arrow-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(2px); }
}

/* Simple keyframe animations */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 10px 25px rgba(245, 176, 0, 0.3);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(245, 176, 0, 0.5);
  }
}

.animate-pulse {
  animation: pulse 3s infinite ease-in-out;
}

/* Section Common Headers */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem auto;
}

.section-tag {
  display: inline-block;
  background-color: var(--color-aegean-light);
  color: var(--color-aegean-primary);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.section-tag.pink-tag {
  background-color: #fee2e2;
  color: var(--color-pink);
}

.section-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1rem;
  color: #64748b;
}

/* Features Section styling */
.features {
  padding: 6rem 0;
  background-color: var(--color-white);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.feature-card {
  background: var(--color-light);
  border: 1px solid rgba(0, 90, 156, 0.06);
  padding: 2.5rem 2rem;
  border-radius: 24px;
  text-align: center;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 90, 156, 0.08);
  border-color: rgba(0, 90, 156, 0.15);
}

.feature-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background-color: var(--color-aegean-light);
  color: var(--color-aegean-primary);
  margin-bottom: 1.5rem;
  transition: transform var(--transition-fast);
}

.feature-card:hover .feature-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  background-color: var(--color-taxi-yellow);
  color: var(--color-taxi-contrast);
}

.feature-icon {
  width: 32px;
  height: 32px;
}

.feature-card-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--color-aegean-deep);
}

.feature-card-desc {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
}

/* Routes & SEO Section styling */
.routes {
  padding: 6rem 0;
  background-color: var(--color-aegean-mist);
  border-top: 1px solid rgba(0, 90, 156, 0.05);
}

.routes-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

.routes-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.routes-text {
  font-size: 1.05rem;
  color: #475569;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.routes-cta {
  margin-top: 1rem;
}

.routes-phone-link {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--color-white);
  padding: 1rem 1.75rem;
  border-radius: 20px;
  border: 1px solid rgba(0, 90, 156, 0.1);
  box-shadow: 0 10px 25px rgba(0, 90, 156, 0.04);
}

.routes-phone-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 90, 156, 0.08);
  border-color: var(--color-taxi-yellow);
}

.phone-pulse {
  font-size: 2rem;
  animation: phone-shake 2s infinite;
}

.cta-label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: #64748b;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.cta-number {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-aegean-primary);
}

.routes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.route-item {
  background: var(--color-white);
  padding: 1.5rem;
  border-radius: 18px;
  border: 1px solid rgba(0, 90, 156, 0.03);
  display: flex;
  gap: 1rem;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.01);
}

.route-item:hover {
  transform: translateX(4px);
  border-color: rgba(0, 90, 156, 0.1);
  background-color: var(--color-white);
}

.route-marker {
  font-size: 1.5rem;
  margin-top: -2px;
}

.route-item h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--color-aegean-deep);
}

.route-item p {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.5;
}

/* Phone shake animation for CTA */
@keyframes phone-shake {
  0%, 100% { transform: rotate(0); }
  10%, 30%, 50%, 70%, 90% { transform: rotate(-10deg); }
  20%, 40%, 60%, 80% { transform: rotate(10deg); }
}

/* Footer Section styling */
.footer {
  background-color: var(--color-aegean-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: 4.5rem 0 2rem 0;
  border-top: 3px solid var(--color-taxi-yellow);
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
}

.footer-logo .highlight {
  color: var(--color-taxi-yellow);
}

.footer-tagline {
  font-size: 0.95rem;
  max-width: 320px;
  line-height: 1.6;
}

.footer-plate {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-taxi-yellow);
  padding: 0.3rem 1rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  width: max-content;
  border: 1px solid rgba(245, 176, 0, 0.3);
}

.footer-links h4,
.footer-contact h4 {
  color: var(--color-white);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-taxi-yellow);
  padding-left: 4px;
}

.footer-contact p {
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
  color: var(--color-taxi-yellow);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  font-size: 0.85rem;
}

.footer-developer {
  color: rgba(255, 255, 255, 0.3);
}

/* Plate Helper styling */
.plate-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
  cursor: pointer;
}

.plate-badge {
  margin-bottom: 0.5rem !important;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.plate-container:hover .plate-badge {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(245, 176, 0, 0.5);
}

.plate-helper {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color var(--transition-fast);
}

.plate-container:hover .plate-helper {
  color: var(--color-taxi-yellow);
}

/* Modal Window (Lightbox) */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity var(--transition-medium);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal.show {
  display: flex;
  opacity: 1;
}

.modal-content {
  position: relative;
  background-color: var(--color-white);
  margin: auto;
  padding: 0;
  width: 100%;
  max-width: 500px;
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  transform: scale(0.9);
  transition: transform var(--transition-medium);
}

.modal.show .modal-content {
  transform: scale(1);
}

.close-modal {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  color: var(--color-dark);
  font-size: 2rem;
  font-weight: 700;
  transition: color var(--transition-fast), background-color var(--transition-fast);
  cursor: pointer;
  z-index: 10;
  background: rgba(255, 255, 255, 0.85);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.close-modal:hover {
  color: var(--color-pink);
  background-color: var(--color-white);
}

.modal-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 400px;
}

.modal-caption {
  padding: 1.5rem;
  background-color: var(--color-white);
  text-align: center;
}

.modal-caption h4 {
  font-size: 1.2rem;
  color: var(--color-aegean-deep);
  margin-bottom: 0.5rem;
}

.modal-caption p {
  font-size: 0.9rem;
  color: #64748b;
}

body.modal-open {
  overflow: hidden;
}

/* FAQ Section styling */
.faq {
  padding: 6rem 0;
  background-color: var(--color-white);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background: var(--color-light);
  border: 1px solid rgba(0, 90, 156, 0.06);
  border-radius: 20px;
  overflow: hidden;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.faq-item[open] {
  border-color: rgba(0, 90, 156, 0.15);
  box-shadow: 0 10px 25px rgba(0, 90, 156, 0.04);
}

.faq-question {
  padding: 1.5rem 2rem;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--color-aegean-deep);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  user-select: none;
}

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

.faq-arrow {
  font-size: 0.8rem;
  color: var(--color-aegean-primary);
  transition: transform var(--transition-medium);
}

.faq-item[open] .faq-arrow {
  transform: rotate(180deg);
  color: var(--color-pink);
}

.faq-answer {
  padding: 0 2rem 1.5rem 2rem;
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
  border-top: 1px solid rgba(0, 90, 156, 0.03);
  padding-top: 1rem;
}

/* Mobile Bottom Bar (Sticky) */
.mobile-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-top: 1px solid rgba(0, 90, 156, 0.12);
  display: flex;
  z-index: 1000;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

.bar-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: background-color var(--transition-fast);
}

.bar-call {
  background-color: var(--color-taxi-yellow);
  color: var(--color-taxi-contrast);
}

.bar-call:hover {
  background-color: var(--color-taxi-yellow-hover);
}

.bar-whatsapp {
  background-color: var(--color-whatsapp);
  color: var(--color-white);
}

.bar-whatsapp:hover {
  background-color: var(--color-whatsapp-hover);
}

.bar-icon {
  font-size: 1.3rem;
}

/* Mobile & Global Responsive Styles */
@media (max-width: 767px) {
  body {
    padding-bottom: 60px; /* Leave space for bottom bar */
  }

  .header {
    padding: 1rem 0;
  }

  .header-phone {
    display: none; /* Hide header phone link on mobile to clear spacing */
  }

  .header-container {
    justify-content: center; /* Center logo on mobile */
  }

  .hero {
    padding-top: 6rem;
    padding-bottom: 3rem;
  }

  .plate-badge {
    font-size: 1.15rem;
    padding: 0.5rem 1.75rem;
    margin-bottom: 1.5rem;
  }

  .hero-title {
    font-size: 2.1rem;
    line-height: 1.3;
    margin-bottom: 1.25rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    padding: 0 0.5rem;
  }

  .hero-actions {
    gap: 0.75rem;
    margin-bottom: 2.5rem;
  }

  .btn {
    padding: 0.9rem 1.25rem;
    font-size: 0.95rem;
    border-radius: 12px;
  }

  .btn-icon {
    font-size: 1.3rem;
  }

  .btn-maintext {
    font-size: 1rem;
  }

  .btn-subtext {
    font-size: 0.65rem;
  }

  .hero-badges {
    gap: 0.75rem;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
  }

  .features, .routes {
    padding: 4rem 0; /* More compact spacing */
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .section-title {
    font-size: 1.75rem;
    line-height: 1.3;
  }

  .section-desc {
    font-size: 0.9rem;
  }

  .feature-card {
    padding: 2rem 1.25rem;
    border-radius: 20px;
  }

  .routes-text {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .routes-phone-link {
    padding: 0.85rem 1.25rem;
    border-radius: 16px;
  }

  .cta-number {
    font-size: 1.15rem;
  }

  .route-item {
    padding: 1.15rem;
    border-radius: 16px;
  }

  .route-item h4 {
    font-size: 0.95rem;
  }

  .route-item p {
    font-size: 0.8rem;
  }

  .footer {
    padding: 3.5rem 0 2rem 0;
  }

  .footer-container {
    gap: 2rem;
  }

  .faq {
    padding: 4rem 0;
  }

  .faq-question {
    padding: 1.25rem 1.5rem;
    font-size: 0.95rem;
  }

  .faq-answer {
    padding: 0 1.5rem 1.25rem 1.5rem;
    font-size: 0.85rem;
    padding-top: 0.85rem;
  }
}

@media (min-width: 576px) {
  .hero-actions {
    flex-direction: row;
    max-width: 600px;
  }
  .btn {
    flex: 1;
  }
  .routes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .mobile-bottom-bar {
    display: none; /* Hide sticky bar on desktops */
  }
  
  .hero-title {
    font-size: 3.75rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .hero-badges {
    gap: 1.5rem;
  }
  
  .hero-badge {
    font-size: 0.95rem;
    padding: 0.6rem 1.5rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .footer-top {
    grid-template-columns: 2fr 1fr 1fr;
  }
  
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media (min-width: 992px) {
  .routes-layout {
    grid-template-columns: 4.5fr 5.5fr;
    gap: 5rem;
  }
}
