:root {
  --bg: #f3f2f2;
  --text: #201e1d;
  --text-muted: rgba(32,30,29,0.7);
  --border: rgba(32,30,29,0.14);
  --panel: #eae9e9;
  --accent: #0088b0;
  --accent-hover: #006786;
  --accent-soft: #e9f8ff;
  --accent-soft-text: #004961;
  --dark: #201e1d;
  --dark-hover: #444141;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Serif 4', Georgia, serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.page { padding-bottom: 0; }
.page.has-mobile-bar { padding-bottom: 76px; }

a { text-decoration: none; }

/* HEADER */
.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 32px;
  padding: 16px clamp(20px, 4vw, 48px);
}

.brand { display: flex; flex-direction: column; color: var(--text); }
.brand-name { font-weight: 600; font-size: 22px; letter-spacing: -0.01em; }
.brand-tagline { font-size: 13px; color: var(--text-muted); margin-top: 2px; }

.site-nav { display: flex; flex-wrap: wrap; gap: 28px; }
.site-nav a { color: var(--text); font-size: 17px; }
.site-nav a:hover { color: var(--accent-hover); }

.header-actions { display: flex; align-items: center; gap: 16px; }

.lang-switch {
  display: inline-flex;
  border: 1px solid rgba(32,30,29,0.16);
  border-radius: 2px;
  overflow: hidden;
}
.lang-switch button,
.lang-switch a {
  padding: 9px 14px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  border: none;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  display: inline-block;
}
.lang-switch button + button,
.lang-switch a + a { border-left: 1px solid rgba(32,30,29,0.16); }
.lang-switch button[aria-current="true"],
.lang-switch a[aria-current="true"] { background: var(--accent); color: var(--bg); }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border-radius: 2px;
  white-space: nowrap;
  box-sizing: border-box;
}
.btn-primary { background: var(--accent); color: var(--bg); font-size: 15px; padding: 11px 20px; }
.btn-primary:hover { background: var(--accent-hover); }

.btn-outline { border: 1.5px solid var(--accent-hover); color: var(--accent-hover); font-size: 15px; padding: 10px 18px; }
.btn-outline:hover { background: var(--accent-soft); }
.btn-outline.btn-light-bg { background: var(--bg); }

.btn-dark { background: var(--dark); color: var(--bg); font-size: 15px; padding: 11px 20px; }
.btn-dark:hover { background: var(--dark-hover); }

.btn-lg { font-size: 18px; padding: 16px 28px; min-height: 56px; }
.btn-xl { font-size: 19px; padding: 18px 30px; min-height: 58px; }

.cta-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* SECTIONS */
.section {
  padding: 64px clamp(20px, 4vw, 48px);
  max-width: 1240px;
  margin: 0 auto;
}
.section h2 { font-size: 32px; margin: 0 0 10px; }
.section-intro { font-size: 17px; color: var(--text-muted); max-width: 60ch; margin: 0 0 12px; }
.routes-price-note { font-size: 16px; font-weight: 600; color: var(--accent-hover); margin: 0 0 28px; }

/* HERO */
.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: center;
  padding: clamp(40px, 6vw, 88px) clamp(20px, 4vw, 48px) 64px;
  max-width: 1240px;
  margin: 0 auto;
}
.hero-copy { flex: 1 1 460px; min-width: 300px; }
.hero-copy h1 {
  font-size: clamp(34px, 4.6vw, 54px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 20px;
}
.hero-sub { font-size: 19px; color: var(--text-muted); max-width: 46ch; margin: 0 0 32px; }
.hero .cta-row { margin-bottom: 32px; }

.trust-list { display: flex; flex-direction: column; gap: 10px; }
.trust-item { display: flex; gap: 10px; align-items: baseline; font-size: 17px; }
.trust-item .check { color: var(--accent-hover); font-weight: 600; }

.hero-image { flex: 1 1 400px; min-width: 300px; aspect-ratio: 4 / 3; }

/* IMAGE SLOT PLACEHOLDER */
.image-slot {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: var(--panel);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 40px rgba(32,30,29,0.16);
}
.image-slot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.image-slot-label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-size: 12px;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-muted);
  background: rgba(255,255,255,0.85);
  padding: 4px 10px;
  border-radius: 2px;
}

/* ROUTES */
.routes-grid { display: flex; flex-wrap: wrap; gap: 20px; }
.route-card {
  flex: 1 1 340px;
  min-width: 300px;
  background: var(--panel);
  border-radius: 2px;
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.route-title { font-size: 20px; font-weight: 600; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.route-title .arrow { color: var(--accent-hover); }
.route-card .btn { align-self: flex-start; margin-top: 6px; }
.route-learn-more { align-self: flex-start; font-size: 14px; color: var(--accent-hover); margin-top: -6px; }
.route-learn-more:hover { text-decoration: underline; }

.routes-cta {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.routes-cta-title { font-size: 19px; font-weight: 600; }
.routes-cta-sub { font-size: 15px; color: rgba(32,30,29,0.65); margin-top: 4px; }

/* ABOUT */
.about-section { display: flex; flex-wrap: wrap; gap: 48px; align-items: flex-start; }
.about-photo { flex: 0 0 260px; width: 260px; }
#driver-photo {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(32,30,29,0.2);
}
#driver-photo img { object-position: 50% 30%; }
.about-copy { flex: 1 1 420px; min-width: 280px; }
.driver-name { font-size: 22px; font-weight: 600; margin-bottom: 10px; }
.driver-intro { font-size: 17px; color: rgba(32,30,29,0.8); max-width: 56ch; margin: 0 0 14px; }
.years-line { font-size: 15px; color: var(--text-muted); margin-bottom: 20px; }
.languages-label {
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(32,30,29,0.55);
  margin-bottom: 10px;
}
.languages-list { display: flex; gap: 20px; flex-wrap: wrap; font-size: 17px; }

/* WHY GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px 32px;
}
.why-item h4 { font-size: 19px; margin: 0 0 8px; }
.why-item p { font-size: 15px; color: rgba(32,30,29,0.72); margin: 0; }

/* STEPS */
.steps-row { display: flex; flex-wrap: wrap; gap: 36px; margin-bottom: 40px; }
.step-item { flex: 1 1 260px; min-width: 240px; }
.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-soft-text);
  font-weight: 600;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.step-item h4 { font-size: 19px; margin: 0 0 8px; }
.step-item p { font-size: 15px; color: rgba(32,30,29,0.72); margin: 0; }

/* CONTACT */
.contact-section { background: var(--panel); padding: 64px clamp(20px, 4vw, 48px); margin-top: 24px; }
.contact-inner { max-width: 1240px; margin: 0 auto; }
.contact-inner h2 { margin-bottom: 28px; }
.contact-cta-row { margin-bottom: 32px; }
.contact-line { font-size: 19px; margin-bottom: 6px; }
.contact-line:nth-of-type(2) { margin-bottom: 20px; }
.contact-phone { color: var(--accent-hover); }
.contact-instruction { font-size: 15px; color: rgba(32,30,29,0.68); max-width: 62ch; margin: 0; }

/* FOOTER */
.site-footer { padding: 40px clamp(20px, 4vw, 48px) 56px; max-width: 1240px; margin: 0 auto; }
.footer-brand { font-weight: 600; font-size: 18px; margin-bottom: 6px; }
.footer-serving { font-size: 14px; color: var(--text-muted); margin-bottom: 4px; }
.footer-popular { display: flex; flex-wrap: wrap; gap: 6px 16px; margin-top: 18px; font-size: 13px; }
.footer-popular-title { font-weight: 600; color: var(--text); width: 100%; margin-bottom: 2px; }
.footer-popular a { color: var(--text-muted); }
.footer-popular a:hover { color: var(--accent-hover); text-decoration: underline; }
.footer-copyright { font-size: 13px; color: rgba(32,30,29,0.5); margin-top: 16px; }

/* BREADCRUMBS */
.breadcrumbs {
  max-width: 1240px;
  margin: 0 auto;
  padding: 20px clamp(20px, 4vw, 48px) 0;
  font-size: 14px;
  color: var(--text-muted);
}
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--accent-hover); text-decoration: underline; }
.breadcrumbs .crumb-sep { margin: 0 4px; }
.breadcrumbs [aria-current="page"] { color: var(--text); }

/* ROUTE LANDING PAGE */
.route-intro { max-width: 72ch; }
.route-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 28px 0 36px;
}
.route-fact {
  background: var(--panel);
  border-radius: 2px;
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 140px;
}
.route-fact-label { font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(32,30,29,0.55); }
.route-fact-value { font-size: 18px; font-weight: 600; }
.route-cta { margin-bottom: 48px; }

.faq-list { display: flex; flex-direction: column; gap: 24px; margin: 24px 0 48px; max-width: 72ch; }
.faq-item h3 { font-size: 18px; margin: 0 0 8px; }
.faq-item p { font-size: 15px; color: rgba(32,30,29,0.75); margin: 0; }

.related-routes { display: flex; flex-wrap: wrap; gap: 12px 20px; margin-top: 16px; }
.related-route-link {
  color: var(--accent-hover);
  font-size: 15px;
  padding: 8px 0;
}
.related-route-link:hover { text-decoration: underline; }

/* MOBILE STICKY BAR */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: var(--bg);
  border-top: 1px solid rgba(32,30,29,0.16);
}
.mobile-bar-item {
  flex: 1;
  text-align: center;
  font-weight: 600;
  font-size: 15px;
  padding: 16px 8px;
}
.mobile-bar-whatsapp { background: var(--accent); color: var(--bg); }
.mobile-bar-viber {
  color: var(--accent-hover);
  border-left: 1px solid rgba(32,30,29,0.16);
  border-right: 1px solid rgba(32,30,29,0.16);
}
.mobile-bar-call { background: var(--dark); color: var(--bg); }

@media (max-width: 760px) {
  .page { padding-bottom: 76px; }
  .mobile-bar { display: flex; }
}
