/* =========================
   MOBILE-FIRST RESPONSIVE CSS
   Alpha New Forest Taxis
========================= */

/* =========================
   RESET & BASE STYLES
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: Arial, sans-serif;
  background: #f5f6f8;
  color: #111;
  line-height: 1.6;
  font-size: 14px;
}

/* =========================
   GLOBAL STYLES
========================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.section-tag {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 100px;
  background: rgba(255,90,95,0.1);
  color: #ff5a5f;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}

.section-tag.light {
  background: rgba(255,255,255,0.15);
  color: white;
}

/* =========================
   NAVIGATION - MOBILE FIRST
========================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10,10,10,0.88);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo-mark {
  height: 30px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  width: 100%;
}

.nav-links li {
  flex: 0 1 auto;
}

.nav-links a {
  color: white;
  text-decoration: none;
  opacity: 0.85;
  transition: 0.2s ease;
  padding: 6px 8px;
  font-size: 12px;
  display: inline-block;
}

.nav-links a:hover {
  opacity: 1;
  color: #ff5a5f;
}

.nav-book-button {
  background: #ff5a5f;
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 12px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.nav-book-button:hover {
  background: #e1494d;
  transform: scale(1.05);
}

/* =========================
   BUTTONS
========================= */
.cta-button {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 10px;
  border: none;
  background: #ff5a5f;
  color: white;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
  font-size: 14px;
}

.cta-button:hover {
  background: #e1494d;
  transform: translateY(-2px);
}

.secondary-button {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  text-decoration: none;
  font-weight: 600;
  backdrop-filter: blur(10px);
  font-size: 14px;
}

.secondary-button:hover {
  background: rgba(255,255,255,0.12);
}

/* =========================
   WHATSAPP BUTTON
========================= */
.whatsapp-button {
  position: fixed;
  bottom: 16px;
  right: 16px;
  width: 50px;
  height: 50px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
  color: white;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
}

/* =========================
   HERO SECTION - MOBILE FIRST
========================= */
.hero {
  position: relative;
  min-height: 100vh;
  background-image: url('images/hero-lexus.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 16px 60px;
  margin-top: 60px;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(10, 10, 10, 0.66), rgba(15, 52, 96, 0.5));
}

.hero-layout {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
}

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

.hero-tag {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 100px;
  background: rgba(255,255,255,0.12);
  margin-bottom: 12px;
  font-size: 12px;
}

.hero-content h1 {
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 12px;
  font-weight: 700;
}

.hero-content p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 20px;
}

.hero-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero.small-hero {
  min-height: 50vh;
  padding: 80px 16px 40px;
}

/* =========================
   BOOKING FORM - MOBILE FIRST
========================= */
.booking-form {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(17,17,17,0.95);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.booking-form h2 {
  color: white;
  text-align: center;
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 700;
}

.booking-form form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.booking-form input,
.booking-form select {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: rgba(255,255,255,0.92);
  font-size: 14px;
  font-family: Arial, sans-serif;
}

.booking-form input:focus,
.booking-form select:focus {
  outline: none;
  box-shadow: 0 0 0 2px #ff5a5f;
}

.return-option {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #f5f5f5;
  font-size: 14px;
  font-weight: 600;
}

.return-option span {
  color: #f5f5f5;
}

.return-option input {
  width: auto;
  accent-color: #ff5a5f;
}

#returnFields {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-button {
  width: 100%;
  background: #ff5a5f;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
  font-size: 14px;
}

.form-button:hover {
  background: #e1494d;
}

/* =========================
   INTRO SECTION - MOBILE FIRST
========================= */
.intro-section {
  padding: 60px 16px;
  background: white;
}

.intro-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.intro-image {
  width: 100%;
}

.intro-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.intro-text h2 {
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 16px;
  font-weight: 700;
}

.intro-text p {
  color: #666;
  margin-bottom: 12px;
  line-height: 1.8;
  font-size: 14px;
}

.intro-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.stat h3 {
  font-size: 24px;
  font-weight: 700;
}

.stat span {
  color: #777;
  font-size: 13px;
}

/* =========================
   SHOWCASE SECTION - MOBILE FIRST
========================= */
.showcase-section {
  position: relative;
  height: 350px;
  background-image: url('images/2_comfortable_cars.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 40px 0;
}

.showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.65));
}

.showcase-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 100%;
  padding: 0 16px;
}

.showcase-content h2 {
  font-size: 24px;
  margin-bottom: 12px;
  font-weight: 700;
}

.showcase-content p {
  font-size: 14px;
  opacity: 0.9;
}

/* =========================
   PREMIUM FEATURES - MOBILE FIRST
========================= */
.premium-features {
  padding: 60px 16px;
}

.premium-heading {
  text-align: center;
  margin-bottom: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.premium-heading h2 {
  font-size: 28px;
  font-weight: 700;
}

.premium-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.premium-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.premium-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.premium-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.premium-card-content {
  padding: 20px;
}

.premium-card-content h3 {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 700;
}

.premium-card-content p {
  color: #666;
  font-size: 13px;
}

/* =========================
   AIRPORT SECTION - MOBILE FIRST
========================= */
.airport-section {
  padding: 60px 16px;
  text-align: center;
}

.airport-section h2 {
  font-size: 28px;
  margin-bottom: 16px;
  font-weight: 700;
}

.airport-section p {
  color: #666;
  font-size: 14px;
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.airport-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
}

.airport-list li {
  background: white;
  padding: 16px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.airport-list li a {
  color: #111;
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 14px;
  font-weight: 500;
}

.airport-list li a:hover {
  color: #ff5a5f;
}

/* =========================
   CTA SECTION - MOBILE FIRST
========================= */
/* =========================
   DESTINATION PAGE LAYOUT
   (airports, cities, towns, ports)
========================= */
.airport-detail {
  padding: 60px 16px;
}

.airport-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.airport-info {
  flex: 1;
}

.airport-info h2 {
  font-size: 26px;
  font-weight: 700;
  color: #111;
  margin-bottom: 16px;
}

.airport-info h3 {
  font-size: 18px;
  font-weight: 600;
  color: #111;
  margin: 28px 0 12px;
}

.airport-info p {
  color: #444;
  line-height: 1.7;
  margin-bottom: 16px;
  font-size: 14px;
}

.airport-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}

.detail-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.detail-card h3 {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 8px;
  color: #111;
}

.detail-card p {
  font-size: 13px;
  color: #555;
  margin: 0;
  line-height: 1.5;
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.benefit-list li {
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  color: #333;
  font-size: 14px;
}

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

.cta-section {
  background: linear-gradient(135deg, #1a1a2e, #0f3460);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  margin-top: 32px;
}

.cta-section h3 {
  color: white;
  font-size: 20px;
  margin: 0 0 12px;
}

.cta-section p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
  font-size: 14px;
}

.airport-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.booking-card {
  background: white;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
}

.booking-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111;
}

.booking-card p {
  color: #666;
  font-size: 14px;
  margin-bottom: 20px;
}

.airport-links {
  background: white;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.airport-links h4 {
  font-size: 14px;
  font-weight: 700;
  color: #111;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid #ff5a5f;
}

.airport-links a {
  display: block;
  padding: 8px 0;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  border-bottom: 1px solid #f5f5f5;
  transition: color 0.2s ease;
}

.airport-links a:last-child {
  border-bottom: none;
}

.airport-links a:hover {
  color: #ff5a5f;
}

/* =========================
   CTA SECTION - MOBILE FIRST
========================= */
.bottom-cta {
  position: relative;
  padding: 80px 16px;
  margin-top: 60px;
  background-image: url('images/2_comfortable_cars.webp');
  background-size: cover;
  background-position: center;
  text-align: center;
}

.bottom-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.bottom-cta-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 100%;
}

.bottom-cta-content h2 {
  font-size: 28px;
  margin-bottom: 16px;
  font-weight: 700;
}

.bottom-cta-content p {
  opacity: 0.9;
  margin-bottom: 20px;
  font-size: 14px;
}

.bottom-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* =========================
   FOOTER - MOBILE FIRST
========================= */
footer {
  background: #0c0c0c;
  color: white;
  padding: 50px 16px 20px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer-column {
  width: 100%;
}

.footer-column h3,
.footer-column h4 {
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 700;
  color: white;
}

.footer-column p {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  line-height: 1.6;
}

.footer-column a {
  display: block;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: #ff5a5f;
}

.footer-bottom {
  text-align: center;
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.5);
  font-size: 12px;
}

/* =========================
   MODAL - MOBILE FIRST
========================= */
.modal {
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.modal-content {
  background: white;
  padding: 20px;
  border-radius: 12px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-close {
  position: absolute;
  right: 12px;
  top: 12px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  color: #999;
  transition: color 0.2s;
  background: none;
  border: none;
}

.modal-close:hover {
  color: #333;
}

.modal-content h2 {
  margin-bottom: 16px;
  font-size: 22px;
  color: #111;
  font-weight: 700;
}

.booking-summary {
  margin-bottom: 20px;
}

.summary-section {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eee;
}

.summary-section:last-child {
  border-bottom: none;
}

.summary-section h3 {
  font-size: 13px;
  color: #ff5a5f;
  margin-bottom: 8px;
  font-weight: 600;
}

.summary-section p {
  margin: 4px 0;
  color: #666;
  line-height: 1.5;
  font-size: 13px;
}

.price-estimate {
  font-size: 24px;
  color: #ff5a5f;
  font-weight: 700;
  margin: 8px 0;
}

.modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-direction: column;
}

.modal-actions button {
  width: 100%;
  padding: 12px;
  font-size: 14px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
}

.modal-actions button:first-child {
  background: #ff5a5f;
  color: white;
}

.modal-actions button:last-child {
  background: #f0f0f0;
  color: #111;
}

/* =========================
   SERVICES PAGE - MOBILE FIRST
========================= */
.services-section {
  padding: 80px 16px;
}

.services-intro {
  text-align: center;
  margin-bottom: 48px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.services-intro h2 {
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 16px;
  font-weight: 700;
}

.services-intro p {
  color: #666;
  font-size: 14px;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 3px solid #ff5a5f;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.service-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.service-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #111;
  font-weight: 700;
}

.service-card p {
  color: #666;
  margin-bottom: 12px;
  line-height: 1.6;
  font-size: 13px;
}

.service-features {
  list-style: none;
  margin-bottom: 12px;
}

.service-features li {
  color: #666;
  padding: 6px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 12px;
}

.service-features li:last-child {
  border-bottom: none;
}

.service-features li:before {
  content: "✓ ";
  color: #ff5a5f;
  font-weight: bold;
  margin-right: 6px;
}

.seo-link-hub {
  padding: 30px 16px 60px;
}

.seo-link-hub h2 {
  font-size: 28px;
  margin-bottom: 10px;
  font-weight: 700;
  text-align: center;
}

.seo-link-hub > p {
  color: #666;
  margin: 0 auto 28px;
  max-width: 820px;
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
}

.seo-link-groups {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.seo-link-group {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.seo-link-group h3 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #111;
}

.seo-link-group a {
  display: block;
  color: #ff5a5f;
  text-decoration: none;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 600;
}

.seo-link-group a:last-child {
  margin-bottom: 0;
}

.seo-link-group a:hover {
  text-decoration: underline;
}

/* =========================
   PRICING - MOBILE FIRST
========================= */
.pricing-section {
  padding: 60px 16px;
  background: #f9f9f9;
}

.pricing-section h2 {
  font-size: 28px;
  margin-bottom: 8px;
  font-weight: 700;
  text-align: center;
}

.pricing-section p {
  color: #666;
  margin-bottom: 40px;
  font-size: 14px;
  text-align: center;
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-2px);
}

.pricing-card.featured {
  border: 2px solid #ff5a5f;
}

.pricing-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #111;
  font-weight: 700;
}

.price-from {
  font-size: 18px;
  color: #ff5a5f;
  font-weight: 700;
  margin-bottom: 12px;
}

.pricing-card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 12px;
}

.pricing-card li {
  color: #666;
  padding: 6px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 12px;
}

.pricing-card li:before {
  content: "✓ ";
  color: #ff5a5f;
  font-weight: bold;
  margin-right: 6px;
}

/* =========================
   WHY CHOOSE US - MOBILE FIRST
========================= */
.why-choose {
  padding: 60px 16px;
}

.why-choose h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
  font-weight: 700;
}

.why-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.why-card {
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.why-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.why-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: #ff5a5f;
  font-weight: 700;
}

.why-card p {
  color: #666;
  line-height: 1.6;
  font-size: 13px;
}

/* =========================
   CONTACT PAGE - MOBILE FIRST
========================= */
.contact-section {
  padding: 100px 16px 50px;
}

.contact-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-header h2 {
  font-size: 28px;
  margin-bottom: 8px;
  font-weight: 700;
}

.contact-header p {
  color: #666;
  font-size: 14px;
}

.contact-info-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.contact-card {
  background: white;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.contact-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.contact-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #111;
  font-weight: 700;
}

.contact-card p {
  margin-bottom: 6px;
  color: #666;
  font-size: 13px;
}

.contact-card a {
  color: #ff5a5f;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s;
  font-size: 13px;
}

.contact-card a:hover {
  opacity: 0.8;
}

/* CONTACT FORM SECTION */
.contact-form-section {
  padding: 50px 16px;
  background: #f9f9f9;
}

.contact-form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.form-info h2 {
  font-size: 26px;
  margin-bottom: 12px;
  font-weight: 700;
}

.form-info p {
  color: #666;
  margin-bottom: 24px;
  line-height: 1.6;
  font-size: 14px;
}

.business-hours {
  background: white;
  padding: 16px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.business-hours h4 {
  color: #ff5a5f;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 700;
}

.business-hours p {
  color: #666;
  margin-bottom: 12px;
  font-size: 13px;
  line-height: 1.6;
}

.contact-form {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 11px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: Arial, sans-serif;
  font-size: 13px;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff5a5f;
  box-shadow: 0 0 0 2px rgba(255,90,95,0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* =========================
   FAQ SECTION - MOBILE FIRST
========================= */
.faq-section {
  padding: 60px 16px;
}

.faq-section h1 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 12px;
  font-weight: 700;
  color: #111;
}

.faq-section h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
  font-weight: 700;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 2px solid #f0f0f0;
}

.faq-section h3 {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  margin-top: 24px;
  margin-bottom: 12px;
}

.faq-section p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 16px;
}

.faq-nav {
  background: white;
  padding: 24px 16px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  margin-bottom: 40px;
}

.faq-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-nav a {
  color: #ff5a5f;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: block;
  padding: 8px 0;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
  padding-left: 12px;
}

.faq-nav a:hover {
  border-left-color: #ff5a5f;
  padding-left: 16px;
}

#faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 100%;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  cursor: pointer;
  background: white;
  border: none;
  width: 100%;
  text-align: left;
  transition: all 0.3s ease;
  font-size: 14px;
}

.faq-question:hover {
  background: #f9f9f9;
}

.faq-question h4 {
  margin: 0;
  font-size: 14px;
  color: #111;
  flex: 1;
  font-weight: 600;
}

.faq-toggle {
  font-size: 18px;
  color: #ff5a5f;
  font-weight: bold;
  margin-left: 12px;
  flex-shrink: 0;
}

.faq-answer {
  padding: 0 16px 16px;
  background: #f9f9f9;
  border-top: 1px solid #eee;
  display: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer.active {
  display: block;
  max-height: 1000px;
}

.faq-answer p {
  color: #666;
  line-height: 1.7;
  font-size: 13px;
  margin: 0;
}

/* =========================
   MAP PAGE - MOBILE FIRST
========================= */
.map-coverage-section {
  padding: 100px 16px 50px;
}

.map-coverage-section h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 24px;
  font-weight: 700;
}

.map-container {
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

#map {
  width: 100% !important;
  height: 300px !important;
  border-radius: 10px;
}

.coverage-map {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.map-description {
  text-align: center;
  color: #666;
  font-size: 14px;
  line-height: 1.7;
  max-width: 100%;
  margin: 0 auto;
}

/* LOCAL COVERAGE */
.local-coverage-section {
  padding: 50px 16px;
  background: #f9f9f9;
}

.local-coverage-section h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
  font-weight: 700;
}

.coverage-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.coverage-card {
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.coverage-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.coverage-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: #111;
  font-weight: 700;
}

.coverage-card p {
  color: #666;
  line-height: 1.6;
  font-size: 13px;
}

.coverage-card a {
  color: #ff5a5f;
  text-decoration: none;
  font-weight: 500;
  font-size: 13px;
  transition: opacity 0.2s;
}

.coverage-card a:hover {
  opacity: 0.8;
}

/* =========================
   REVIEWS SECTION - MOBILE FIRST
========================= */
.reviews-section {
  padding: 50px 16px;
  background: white;
}

.reviews-heading {
  text-align: center;
  margin-bottom: 40px;
}

.reviews-heading h2 {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
}

.reviews-heading p {
  font-size: 14px;
  color: #666;
}

.reviews-carousel {
  position: relative;
  margin-bottom: 40px;
  overflow: hidden;
}

.reviews-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 20px 0;
  -webkit-overflow-scrolling: touch;
}

.reviews-scroll::-webkit-scrollbar {
  height: 8px;
}

.reviews-scroll::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 10px;
}

.reviews-scroll::-webkit-scrollbar-thumb {
  background: #ff5a5f;
  border-radius: 10px;
}

.review-card {
  flex: 0 0 100%;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  scroll-snap-align: start;
  transition: all 0.3s ease;
  border-left: 4px solid #ff5a5f;
}

.review-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.review-stars {
  font-size: 16px;
  color: #ff9500;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 12px;
  font-style: italic;
}

.review-author {
  font-size: 13px;
  color: #111;
  font-weight: 600;
}

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

/* =========================
   TESTIMONIALS - MOBILE FIRST
========================= */
.testimonials-section {
  padding: 100px 16px 50px;
}

.testimonials-intro {
  text-align: center;
  margin-bottom: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.testimonials-intro h2 {
  font-size: 28px;
  margin-bottom: 12px;
  font-weight: 700;
}

.testimonials-intro p {
  color: #666;
  font-size: 14px;
}

.testimonials-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  border-left: 4px solid #ff5a5f;
}

.testimonial-stars {
  color: #ff5a5f;
  font-size: 14px;
  margin-bottom: 8px;
}

.testimonial-text {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
  font-style: italic;
}

.testimonial-author {
  color: #111;
  font-weight: 600;
  font-size: 13px;
}

.testimonial-source {
  color: #999;
  font-size: 11px;
  margin-top: 4px;
}

/* =========================
   TABLET - 640px+
========================= */
@media (min-width: 640px) {
  .navbar {
    flex-direction: row;
    justify-content: space-between;
    padding: 16px 32px;
  }

  .logo {
    margin-bottom: 0;
    text-align: left;
  }

  .logo-mark {
    height: 34px;
  }

  .nav-links {
    width: auto;
    gap: 16px;
  }

  .nav-links a {
    font-size: 13px;
  }

  .container {
    padding: 0 24px;
  }

  .hero {
    padding: 120px 32px 80px;
  }

  .hero-layout {
    flex-direction: row;
    gap: 60px;
  }

  .hero-content {
    text-align: left;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .booking-form {
    max-width: 320px;
  }

  .hero-buttons {
    justify-content: flex-start;
  }

  .intro-section {
    padding: 80px 32px;
  }

  .intro-grid {
    flex-direction: row;
    gap: 50px;
  }

  .intro-image,
  .intro-text {
    flex: 1;
  }

  .intro-text h2 {
    font-size: 36px;
  }

  .intro-stats {
    flex-direction: row;
    gap: 30px;
  }

  .premium-features {
    padding: 80px 32px;
  }

  .premium-heading h2 {
    font-size: 42px;
  }

  .premium-grid {
    flex-direction: row;
    gap: 24px;
  }

  .premium-card {
    flex: 1;
  }

  .services-grid {
    flex-direction: row;
    gap: 20px;
  }

  .service-card {
    flex: 1;
  }

  .seo-link-groups {
    flex-direction: row;
    gap: 20px;
  }

  .seo-link-group {
    flex: 1;
  }

  .pricing-grid {
    flex-direction: row;
    gap: 20px;
  }

  .pricing-card {
    flex: 1;
  }

  .why-grid {
    flex-direction: row;
    gap: 20px;
  }

  .why-card {
    flex: 1;
  }

  .contact-info-grid {
    flex-direction: row;
    gap: 20px;
  }

  .contact-card {
    flex: 1;
  }

  .contact-form-wrapper {
    flex-direction: row;
    gap: 40px;
  }

  .form-info,
  .contact-form {
    flex: 1;
  }

  .airport-details-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 40px;
  }

  .footer-column {
    flex: 0 1 calc(50% - 20px);
  }

  .coverage-grid {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }

  .coverage-card {
    flex: 0 1 calc(50% - 10px);
  }

  .testimonials-grid {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }

  .testimonial-card {
    flex: 0 1 calc(50% - 10px);
  }

  .review-card {
    flex: 0 0 calc(50% - 10px);
  }

  #map {
    height: 400px !important;
  }

  .faq-grid {
    max-width: 800px;
  }

  .faq-nav {
    padding: 24px 24px;
  }

  .faq-nav ul {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
  }

  .faq-nav a {
    padding-left: 0;
    border-left: none;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
  }

  .faq-nav a:hover {
    border-bottom-color: #ff5a5f;
    padding-left: 0;
  }

  .faq-section h2 {
    font-size: 36px;
  }

  .faq-section h3 {
    font-size: 18px;
  }
}

/* =========================
   DESKTOP - 1024px+
========================= */
@media (min-width: 1024px) {
  .container {
    max-width: 1200px;
    padding: 0 40px;
  }

  .navbar {
    padding: 18px 50px;
    min-height: 70px;
  }

  .logo {
  }

  .logo-mark {
    height: 38px;
  }

  .nav-links {
    gap: 28px;
  }

  .nav-links a {
    font-size: 15px;
    padding: 8px 10px;
  }

  .hero {
    min-height: 100vh;
    padding: 140px 50px 100px;
  }

  .hero-content {
    max-width: 600px;
  }

  .hero-content h1 {
    font-size: 60px;
  }

  .hero-content p {
    font-size: 18px;
  }

  .booking-form {
    max-width: 380px;
  }

  .intro-section {
    padding: 120px 50px;
  }

  .intro-text h2 {
    font-size: 48px;
  }

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

  .premium-heading h2 {
    font-size: 50px;
  }

  .premium-card {
    flex: none;
  }

  .showcase-section {
    height: 600px;
  }

  .showcase-content h2 {
    font-size: 50px;
  }

  .airport-section h2 {
    font-size: 48px;
  }

  .airport-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
  }

  .airport-list li {
    padding: 20px;
  }

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

  .service-card {
    flex: none;
  }

  .services-intro h2 {
    font-size: 48px;
  }

  .seo-link-groups {
    grid-template-columns: repeat(3, 1fr);
    display: grid;
    gap: 30px;
  }

  .seo-link-group {
    flex: none;
  }

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

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

  .why-card {
    flex: none;
  }

  .contact-header h2 {
    font-size: 48px;
  }

  .contact-info-grid {
    grid-template-columns: repeat(3, 1fr);
    display: grid;
    gap: 30px;
  }

  .contact-card {
    flex: none;
  }

  .form-info h2 {
    font-size: 42px;
  }

  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
    display: grid;
    flex-wrap: nowrap;
  }

  .footer-column {
    flex: none;
  }

  .coverage-grid {
    grid-template-columns: repeat(3, 1fr);
    display: grid;
    gap: 30px;
    flex-wrap: nowrap;
  }

  .coverage-card {
    flex: none;
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
    display: grid;
    gap: 30px;
    flex-wrap: nowrap;
  }

  .testimonial-card {
    flex: none;
  }

  .reviews-section {
    padding: 80px 50px;
  }

  .reviews-carousel {
    margin-bottom: 50px;
  }

  .reviews-scroll {
    gap: 30px;
  }

  .review-card {
    flex: 0 0 calc(33.333% - 20px);
  }

  .reviews-heading h2 {
    font-size: 48px;
  }

  .map-coverage-section h2 {
    font-size: 48px;
  }

  #map {
    height: 500px !important;
  }

  .local-coverage-section h2 {
    font-size: 48px;
  }

  .faq-section h2 {
    font-size: 48px;
  }

  .faq-section h1 {
    font-size: 48px;
  }

  .faq-section h3 {
    font-size: 19px;
    margin-top: 32px;
    margin-bottom: 16px;
  }

  .faq-section p {
    font-size: 15px;
  }

  .faq-grid {
    max-width: 1000px;
  }

  .faq-nav {
    padding: 32px 40px;
    margin-bottom: 60px;
  }

  .faq-nav ul {
    gap: 40px;
  }

  .faq-nav a {
    font-size: 15px;
    padding-bottom: 8px;
  }

  #faq-list {
    max-width: 1000px;
  }

  .airport-grid {
    flex-direction: row;
    align-items: flex-start;
  }

  .airport-info {
    flex: 2;
  }

  .airport-sidebar {
    flex: 1;
    min-width: 280px;
    max-width: 340px;
    position: sticky;
    top: 90px;
  }

  .airport-detail {
    padding: 80px 50px;
  }

  .bottom-cta {
    padding: 120px 50px;
  }

  .bottom-cta-content h2 {
    font-size: 50px;
  }
}
