/* ============================================
   Locus Guide — Public Website Styles
   Design: warm, playful, matching mobile app
   ============================================ */

/* --- Fonts --- */
@font-face {
  font-family: 'Zain';
  src: url('/fonts/zain-regular.woff2') format('woff2'),
       url('/fonts/zain-regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Zain';
  src: url('/fonts/zain-extrabold.woff2') format('woff2'),
       url('/fonts/zain-extrabold.ttf') format('truetype');
  font-weight: 800;
  font-display: swap;
}
@font-face {
  font-family: 'Nunito';
  src: url('/fonts/nunito/Nunito-Regular.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Nunito';
  src: url('/fonts/nunito/Nunito-Bold.woff2') format('woff2');
  font-weight: 800;
  font-display: swap;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Zain', 'Nunito', sans-serif;
  background-color: #FADCA4;
  color: #7B3B3A;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: #D4956A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #7B3B3A;
}

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

/* --- Pattern background --- */
.bg-pattern {
  background-image: url('/site/img/pattern.png');
  background-size: 300px;
  background-repeat: repeat;
  opacity: 0.08;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
  pointer-events: none;
}

/* --- Header --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 220, 164, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid rgba(123, 59, 58, 0.1);
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.header-logo img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.header-logo-text {
  font-family: 'Zain', 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: #7B3B3A;
  letter-spacing: -0.5px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-nav a {
  font-weight: 800;
  font-size: 15px;
  color: #7B3B3A;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.header-nav a:hover {
  opacity: 1;
  color: #7B3B3A;
}

.lang-selector {
  position: relative;
  cursor: pointer;
}

.lang-selector-btn {
  background: #FFF0D6;
  border: 2px solid rgba(123, 59, 58, 0.15);
  border-radius: 20px;
  padding: 6px 14px;
  font-family: 'Zain', 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: #7B3B3A;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s;
}
.lang-selector-btn:hover {
  background: #fff;
}

.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #FFF0D6;
  border: 2px solid rgba(123, 59, 58, 0.15);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(123, 59, 58, 0.15);
  min-width: 160px;
  padding: 6px 0;
  z-index: 200;
}
.lang-dropdown.open {
  display: block;
}

.lang-option {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  color: #7B3B3A;
  cursor: pointer;
  transition: background 0.15s;
  display: block;
  width: 100%;
  border: none;
  background: none;
  text-align: left;
  font-family: 'Zain', 'Nunito', sans-serif;
}
.lang-option:hover {
  background: rgba(123, 59, 58, 0.08);
}
.lang-option.active {
  color: #D4956A;
  font-weight: 800;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  display: flex;
  flex-direction: column;
}

.hero-map {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  pointer-events: none;
  padding-top: 64px;
  padding-bottom: 40px;
  background: linear-gradient(
    180deg,
    rgba(250, 220, 164, 0.7) 0%,
    rgba(250, 220, 164, 0.1) 30%,
    rgba(250, 220, 164, 0.0) 50%,
    rgba(250, 220, 164, 0.2) 70%,
    rgba(250, 220, 164, 0.85) 100%
  );
}

.hero-content {
  text-align: center;
  pointer-events: auto;
  padding: 32px;
  max-width: 640px;
  background: rgba(250, 220, 164, 0.75);
  border-radius: 24px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-cat {
  width: 160px;
  height: auto;
  margin-bottom: 16px;
  filter: drop-shadow(0 4px 12px rgba(123, 59, 58, 0.3));
  animation: catBounce 3s ease-in-out infinite;
}

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

.hero h1 {
  font-family: 'Zain', 'Nunito', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #7B3B3A;
  text-shadow: 0 2px 8px rgba(250, 220, 164, 0.8);
  margin-bottom: 8px;
  line-height: 1.1;
}

.hero-subtitle {
  font-family: 'Zain', 'Nunito', sans-serif;
  font-size: 20px;
  color: #9E4646;
  text-shadow: 0 1px 4px rgba(250, 220, 164, 0.8);
  margin-bottom: 24px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Buttons (app-style 3D) --- */
.btn-app {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 14px;
  font-family: 'Zain', 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  transition: transform 0.15s, box-shadow 0.15s;
  text-decoration: none;
}
.btn-app:hover {
  transform: translateY(-2px);
}
.btn-app:active {
  transform: translateY(1px);
}

.btn-green {
  background: linear-gradient(180deg, #7dd655 0%, #4fad2b 100%);
  color: #fff;
  box-shadow: 0 4px 0 #3a8a1e, 0 6px 12px rgba(79, 173, 43, 0.3);
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.btn-green:hover {
  box-shadow: 0 4px 0 #3a8a1e, 0 8px 20px rgba(79, 173, 43, 0.4);
  color: #fff;
}

.btn-blue {
  background: linear-gradient(180deg, #6bb8e8 0%, #4a90d9 100%);
  color: #fff;
  box-shadow: 0 4px 0 #3570b0, 0 6px 12px rgba(74, 144, 217, 0.3);
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.btn-blue:hover {
  box-shadow: 0 4px 0 #3570b0, 0 8px 20px rgba(74, 144, 217, 0.4);
  color: #fff;
}

.btn-orange {
  background: linear-gradient(180deg, #f0b060 0%, #d4956a 100%);
  color: #fff;
  box-shadow: 0 4px 0 #b07040, 0 6px 12px rgba(212, 149, 106, 0.3);
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.btn-orange:hover {
  box-shadow: 0 4px 0 #b07040, 0 8px 20px rgba(212, 149, 106, 0.4);
  color: #fff;
}

/* --- Section Shared --- */
.section {
  position: relative;
  z-index: 1;
  padding: 80px 24px;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  font-family: 'Zain', 'Nunito', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #7B3B3A;
  text-align: center;
  margin-bottom: 12px;
}

.section-subtitle {
  font-family: 'Zain', 'Nunito', sans-serif;
  font-size: 18px;
  color: #9E4646;
  text-align: center;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* --- How It Works --- */
.how-it-works {
  background: #FFF0D6;
}

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

.step {
  text-align: center;
  padding: 32px 20px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(180deg, #7dd655 0%, #4fad2b 100%);
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 20px;
  box-shadow: 0 3px 0 #3a8a1e;
}

.step-title {
  font-size: 20px;
  font-weight: 800;
  color: #7B3B3A;
  margin-bottom: 10px;
}

.step-desc {
  font-family: 'Zain', 'Nunito', sans-serif;
  font-size: 15px;
  color: #9E4646;
  line-height: 1.6;
}

.step-icon {
  font-size: 48px;
  margin-bottom: 12px;
  display: block;
}

/* --- Cities Grid --- */
.cities-section {
  background: #FADCA4;
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.city-card {
  background: #FFF0D6;
  border: 3px solid rgba(123, 59, 58, 0.12);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.city-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(123, 59, 58, 0.15);
}

.city-card-map {
  height: 180px;
  background: #f3dfae;
}

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

.city-card-name {
  font-size: 22px;
  font-weight: 800;
  color: #7B3B3A;
  margin-bottom: 4px;
}

.city-card-country {
  font-size: 14px;
  color: #9E4646;
  margin-bottom: 10px;
}

.city-card-routes {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(180deg, #7dd655 0%, #4fad2b 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  box-shadow: 0 2px 0 #3a8a1e;
}

/* --- App Download --- */
.download-section {
  background: #FFF0D6;
  text-align: center;
}

.download-badges {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 12px;
}

.store-badge {
  display: inline-block;
  transition: transform 0.15s, opacity 0.15s;
  opacity: 0.85;
}
.store-badge:hover {
  opacity: 1;
  transform: scale(1.05);
}
.store-badge img {
  height: 48px;
  width: auto;
}

/* --- Footer --- */
.site-footer {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, #F0B860 0%, #D4923C 100%);
  color: #fff;
  padding: 48px 24px 24px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

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

.footer-brand img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.footer-brand-name {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
}

.footer-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-col a {
  display: block;
  color: #fff;
  font-size: 15px;
  padding: 4px 0;
  opacity: 0.85;
}
.footer-col a:hover {
  opacity: 1;
  color: #FFF0D6;
}

.footer-bottom {
  max-width: 1100px;
  margin: 32px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
  color: #FFF0D6;
}

/* --- MapLibre overrides for site --- */
.maplibregl-canvas {
  outline: none;
}
.maplibregl-ctrl-attrib {
  font-size: 10px !important;
  background: rgba(255, 240, 214, 0.8) !important;
}
.maplibregl-ctrl-attrib a {
  color: #9E4646 !important;
}

/* --- City marker on hero map --- */
.city-marker {
  width: 32px;
  height: 32px;
  background: linear-gradient(180deg, #e06090 0%, #c04070 100%);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  cursor: pointer;
  transition: transform 0.2s;
  position: relative;
}
.city-marker:hover {
  transform: scale(1.3);
}
.city-marker::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #c04070;
}

.city-marker-popup {
  font-family: 'Zain', 'Nunito', sans-serif;
  font-weight: 800;
  color: #7B3B3A;
}

.maplibregl-popup-content {
  background: #FFF0D6 !important;
  border-radius: 12px !important;
  padding: 10px 16px !important;
  box-shadow: 0 4px 16px rgba(123, 59, 58, 0.2) !important;
  border: 2px solid rgba(123, 59, 58, 0.1) !important;
}
.maplibregl-popup-tip {
  border-top-color: #FFF0D6 !important;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .site-header {
    padding: 0 16px;
  }

  .header-nav a.nav-link {
    display: none;
  }

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

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

  .hero-cat {
    width: 120px;
  }

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

  .section {
    padding: 48px 16px;
  }

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

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

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

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

  .btn-app {
    padding: 12px 20px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 500px;
  }

  .hero h1 {
    font-size: 26px;
  }

  .hero-content {
    padding: 16px;
  }
}

/* --- Legal Pages --- */
.legal-page {
  position: relative;
  z-index: 1;
  padding: 120px 24px 80px;
  min-height: 100vh;
}

.legal-inner {
  max-width: 800px;
  margin: 0 auto;
  background: #FFF0D6;
  border: 3px solid rgba(123, 59, 58, 0.12);
  border-radius: 20px;
  padding: 48px 48px 56px;
}

.legal-title {
  font-family: 'Zain', 'Nunito', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #7B3B3A;
  margin-bottom: 8px;
}

.legal-updated {
  font-size: 14px;
  color: #9E4646;
  opacity: 0.7;
  margin-bottom: 40px;
}

.legal-section {
  margin-bottom: 32px;
}

.legal-section h2 {
  font-family: 'Zain', 'Nunito', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #7B3B3A;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(123, 59, 58, 0.08);
}

.legal-section h3 {
  font-family: 'Zain', 'Nunito', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: #9E4646;
  margin-top: 20px;
  margin-bottom: 8px;
}

.legal-section p {
  font-size: 15px;
  line-height: 1.8;
  color: #7B3B3A;
  margin-bottom: 12px;
}

.legal-section ul {
  margin: 8px 0 16px 24px;
  padding: 0;
}

.legal-section ul li {
  font-size: 15px;
  line-height: 1.8;
  color: #7B3B3A;
  margin-bottom: 4px;
}

.legal-section a {
  color: #D4956A;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-section a:hover {
  color: #7B3B3A;
}

.legal-contact {
  list-style: none;
  margin-left: 0 !important;
  padding: 16px 20px;
  background: rgba(123, 59, 58, 0.04);
  border-radius: 12px;
  border: 2px solid rgba(123, 59, 58, 0.08);
}

.legal-contact li {
  margin-bottom: 4px;
}

/* Legal pages responsive */
@media (max-width: 768px) {
  .legal-page {
    padding: 96px 16px 48px;
  }

  .legal-inner {
    padding: 28px 24px 32px;
  }

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

  .legal-section h2 {
    font-size: 19px;
  }
}

/* --- City Page --- */
.city-header {
  position: relative;
  z-index: 1;
  padding: 96px 24px 32px;
  background: #FFF0D6;
}

.city-header-inner {
  max-width: 800px;
  margin: 0 auto;
}

.breadcrumb {
  font-size: 14px;
  color: #9E4646;
  margin-bottom: 8px;
}
.breadcrumb a {
  color: #9E4646;
}
.breadcrumb a:hover {
  color: #7B3B3A;
}
.breadcrumb span {
  margin: 0 4px;
  opacity: 0.5;
}

.city-header {
  position: relative;
  overflow: hidden;
}

.city-cover-strip {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 100%;
  z-index: 0;
}

.city-cover-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.city-cover-strip::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(250, 220, 164, 0.5) 0%,
    rgba(250, 220, 164, 0.75) 50%,
    rgba(255, 240, 214, 0.95) 100%
  );
}

.city-header-inner {
  position: relative;
  z-index: 1;
}

.city-header-inner h1 {
  font-family: 'Zain', 'Nunito', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: #7B3B3A;
  margin-bottom: 4px;
  line-height: 1.1;
}

/* Inline route map embed */
.route-embed {
  margin: 28px 0;
  border-radius: 16px;
  overflow: hidden;
  border: 3px solid rgba(123, 59, 58, 0.12);
  background: #FFF0D6;
}

.route-embed-map {
  height: 360px;
  width: 100%;
}

.route-embed-bar {
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.route-embed-icon {
  border-radius: 10px;
  flex-shrink: 0;
}

.route-embed-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.route-embed-name {
  font-size: 16px;
  font-weight: 800;
  color: #7B3B3A;
}

.route-embed-meta {
  font-size: 13px;
  color: #9E4646;
}

/* Route point markers — iOS app style */
.route-point-marker {
  width: 36px;
  height: 36px;
  background: linear-gradient(180deg, #AB47BC 0%, #7B1FA2 100%);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(74, 20, 140, 0.5), 0 0 0 2px rgba(123, 31, 162, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.15s;
}
.route-point-marker:hover {
  transform: scale(1.15);
  box-shadow: 0 3px 12px rgba(74, 20, 140, 0.6), 0 0 0 2px rgba(123, 31, 162, 0.35);
}
.route-point-marker span {
  font-family: 'Zain', 'Nunito', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.city-hero-country {
  font-size: 18px;
  color: #9E4646;
  margin-bottom: 12px;
}

.city-hero-stats {
  display: flex;
  gap: 12px;
}

.stat-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
}
.stat-badge.green {
  background: linear-gradient(180deg, #7dd655 0%, #4fad2b 100%);
  box-shadow: 0 2px 0 #3a8a1e;
}
.stat-badge.blue {
  background: linear-gradient(180deg, #6bb8e8 0%, #4a90d9 100%);
  box-shadow: 0 2px 0 #3570b0;
}

/* City SEO text */
.city-seo-text {
  font-size: 17px;
  line-height: 1.8;
  color: #7B3B3A;
  max-width: 800px;
}
.city-seo-text figure {
  margin: 28px -24px;
  position: relative;
}
.city-seo-text figure img {
  display: block;
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center center;
  border-radius: 12px;
  will-change: transform;
}
.city-seo-text figcaption {
  text-align: center;
  font-size: 13px;
  color: #9E4646;
  margin-top: 8px;
  padding: 0 24px;
}

@media (max-width: 768px) {
  .city-seo-text figure {
    margin: 20px -16px;
  }
  .city-seo-text figure img {
    height: 240px;
  }
}
.city-seo-text p {
  margin-bottom: 16px;
}
.city-seo-text h2 {
  font-family: 'Zain', 'Nunito', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: #7B3B3A;
  margin: 32px 0 12px;
}

.city-content-section {
  background: #FFF0D6;
}

/* Route cards */
.routes-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.route-card {
  background: #FFF0D6;
  border: 3px solid rgba(123, 59, 58, 0.12);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.route-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(123, 59, 58, 0.12);
}

.route-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(180deg, #6bb8e8 0%, #4a90d9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 0 #3570b0;
  font-size: 24px;
  color: #fff;
}

.route-card-body {
  flex: 1;
}

.route-card-name {
  font-size: 18px;
  font-weight: 800;
  color: #7B3B3A;
  margin-bottom: 4px;
}

.route-card-meta {
  font-size: 13px;
  color: #9E4646;
}

.route-card-tag {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 800;
  margin-left: 8px;
}
.route-card-tag.free {
  background: linear-gradient(180deg, #7dd655 0%, #4fad2b 100%);
  color: #fff;
}
.route-card-tag.paid {
  background: rgba(123, 59, 58, 0.08);
  color: #9E4646;
}

.city-cta {
  text-align: center;
  margin-top: 16px;
}

/* FAQ */
.faq-item {
  background: #FFF0D6;
  border: 2px solid rgba(123, 59, 58, 0.1);
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  padding: 18px 24px;
  font-size: 17px;
  font-weight: 800;
  color: #7B3B3A;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question:hover {
  background: rgba(123, 59, 58, 0.03);
}
.faq-question::after {
  content: '+';
  font-size: 22px;
  color: #D4956A;
  transition: transform 0.2s;
}
.faq-item.open .faq-question::after {
  content: '-';
}

.faq-answer {
  display: none;
  padding: 0 24px 18px;
  font-size: 15px;
  line-height: 1.7;
  color: #9E4646;
}
.faq-item.open .faq-answer {
  display: block;
}

/* --- Inline CTA block --- */
.inline-cta {
  margin: 32px 0;
  padding: 28px 32px;
  background: linear-gradient(135deg, #FFF0D6 0%, #FADCA4 100%);
  border: 3px solid rgba(123, 59, 58, 0.12);
  border-radius: 20px;
  text-align: center;
}
.inline-cta-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  margin-bottom: 12px;
}
.inline-cta-text {
  font-size: 18px;
  font-weight: 800;
  color: #7B3B3A;
  margin-bottom: 6px;
}
.inline-cta-sub {
  font-size: 14px;
  color: #9E4646;
  margin-bottom: 16px;
}
.inline-cta .btn-app {
  display: inline-flex;
}

/* --- Compare table --- */
.compare-block {
  margin: 32px 0;
  border: 3px solid rgba(123, 59, 58, 0.12);
  border-radius: 20px;
  overflow: hidden;
}
.compare-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.compare-header-cell {
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 800;
  text-align: center;
}
.compare-header-cell:first-child {
  background: #f5ead0;
  color: #9E4646;
}
.compare-header-cell:last-child {
  background: linear-gradient(135deg, #7dd655 0%, #4fad2b 100%);
  color: #fff;
}
.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(123, 59, 58, 0.08);
}
.compare-cell {
  padding: 14px 20px;
  font-size: 14px;
  line-height: 1.5;
  color: #7B3B3A;
}
.compare-cell:first-child {
  background: #FFF8ED;
  color: #9E4646;
}
.compare-cell:last-child {
  background: #FFF0D6;
}
.compare-cell .check {
  color: #4fad2b;
  font-weight: 800;
  margin-right: 4px;
}
.compare-cell .cross {
  color: #ccc;
  margin-right: 4px;
}
.compare-footer {
  padding: 16px 20px;
  text-align: center;
  background: #FFF0D6;
  border-top: 1px solid rgba(123, 59, 58, 0.08);
}
.compare-price {
  font-size: 22px;
  font-weight: 800;
  color: #7B3B3A;
}
.compare-price-note {
  font-size: 13px;
  color: #9E4646;
}

@media (max-width: 480px) {
  .compare-cell, .compare-header-cell {
    padding: 10px 12px;
    font-size: 13px;
  }
  .inline-cta {
    padding: 20px 16px;
  }
}

/* City page responsive */
@media (max-width: 768px) {
  .city-hero-content h1 {
    font-size: 28px;
  }
  .routes-list {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .city-hero {
    min-height: 280px;
  }
  .city-hero-content h1 {
    font-size: 24px;
  }
}
