/* =====================================================
   transfereu.com — main.css
   Fonts: Syne (headings) + Nunito (body)
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Nunito:wght@300;400;500;600;700&display=swap');

/* ── Variables ───────────────────────────────────── */
:root {
  --navy:      #0D1F3C;
  --navy-mid:  #1A3358;
  --navy-soft: #243F6B;
  --gold:      #E09B1A;
  --gold-light:#F5C54A;
  --gold-pale: #FDF3DC;
  --white:     #FFFFFF;
  --bg:        #F8F7F3;
  --surface:   #EEECEA;
  --border:    rgba(13,31,60,0.12);
  --border-mid:rgba(13,31,60,0.22);
  --text:      #0D1F3C;
  --text-mid:  #3A4F70;
  --text-soft: #6B7D95;
  --success:   #1E7B45;
  --success-bg:#E8F6EE;
  --error:     #C0392B;
  --error-bg:  #FCECEA;

  --ff-head: 'Syne', sans-serif;
  --ff-body: 'Nunito', sans-serif;

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 8px rgba(13,31,60,0.08);
  --shadow:    0 4px 20px rgba(13,31,60,0.12);
  --shadow-lg: 0 8px 40px rgba(13,31,60,0.16);

  --transition: 0.22s ease;
  --max-w: 1140px;
  --max-w-sm: 760px;
}

/* ── Reset ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--ff-body); }
input, select, textarea { font-family: var(--ff-body); }
ul { list-style: none; }

/* ── Typography ──────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--ff-head);
  line-height: 1.2;
  font-weight: 700;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }
p  { color: var(--text-mid); }

.section-label {
  display: inline-block;
  font-family: var(--ff-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

/* ── Layout ──────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.container-sm {
  width: 100%;
  max-width: var(--max-w-sm);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 80px 0; }
section + section { padding-top: 0; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-head p { font-size: 1.05rem; margin-top: 12px; }

/* ── Buttons ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 700;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-mid);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.btn-lg { padding: 17px 36px; font-size: 1.05rem; border-radius: var(--radius-lg); }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; border-radius: var(--radius-sm); }
.btn-full { width: 100%; justify-content: center; }

/* ── Header / Nav ────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--navy);
  text-decoration: none;
}
.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--navy);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-icon svg { width: 20px; height: 20px; fill: var(--gold); }
.logo span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-mid);
  transition: color var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); }

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

/* Language switcher */
.lang-switcher {
  display: flex;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  padding: 3px;
  gap: 2px;
}
.lang-switcher button {
  padding: 4px 10px;
  border: none;
  background: transparent;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--ff-body);
  color: var(--text-soft);
  transition: var(--transition);
  cursor: pointer;
  letter-spacing: 0.03em;
}
.lang-switcher button.active {
  background: var(--navy);
  color: var(--white);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-nav {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 20px 24px 28px;
  flex-direction: column;
  gap: 16px;
}
.mobile-nav a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-mid);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-nav.open { display: flex; }

/* ── Hero ────────────────────────────────────────── */
.hero {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: var(--white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  position: relative;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 24px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.9);
}
.hero-badge::before {
  content: '✈';
  font-size: 0.9rem;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 em {
  font-style: normal;
  color: var(--gold-light);
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}
.trust-item::before {
  content: '✓';
  width: 20px;
  height: 20px;
  background: rgba(224,155,26,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--gold-light);
  flex-shrink: 0;
  font-weight: 700;
}

/* Quick booking card in hero */
.hero-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  box-shadow: var(--shadow-lg);
}
.hero-card h3 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.quick-form { display: flex; flex-direction: column; gap: 14px; }
.form-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.form-field input, .form-field select {
  width: 100%;
  height: 46px;
  border: 1.5px solid var(--border-mid);
  border-radius: var(--radius-sm);
  padding: 0 14px;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition);
  outline: none;
}
.form-field input:focus, .form-field select:focus {
  border-color: var(--navy);
  background: var(--white);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* ── How it works ────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--gold) 0, var(--gold) 6px, transparent 6px, transparent 14px);
  z-index: 0;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: box-shadow var(--transition), transform var(--transition);
}
.step-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.step-num {
  width: 56px;
  height: 56px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--gold);
  margin: 0 auto 18px;
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 2px var(--navy);
}
.step-card h4 { margin-bottom: 8px; }
.step-card p { font-size: 0.88rem; }

/* ── Vehicles ─────────────────────────────────────── */
.vehicles-section { background: var(--navy); }
.vehicles-section .section-head h2,
.vehicles-section .section-label { color: var(--white); }
.vehicles-section .section-head p { color: rgba(255,255,255,0.65); }
.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.vehicle-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.vehicle-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(224,155,26,0.4);
  transform: translateY(-3px);
}
.vehicle-img {
  height: 180px;
  background: linear-gradient(135deg, var(--navy-mid), #2A4E8A);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}
.vehicle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vehicle-img .placeholder-car {
  position: absolute;
  font-size: 5rem;
  opacity: 0.35;
}
.vehicle-body { padding: 22px 20px; }
.vehicle-type {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.vehicle-body h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 10px; }
.vehicle-specs {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
}
.spec {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
}
.spec svg { width: 15px; height: 15px; fill: rgba(255,255,255,0.4); }
.vehicle-price {
  font-family: var(--ff-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-light);
}
.vehicle-price small {
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  display: block;
}

/* ── Trust / Why us ──────────────────────────────── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.trust-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: var(--transition);
}
.trust-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.trust-icon {
  width: 52px;
  height: 52px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.trust-card h4 { margin-bottom: 8px; }
.trust-card p { font-size: 0.9rem; }

/* ── Zones ───────────────────────────────────────── */
.zones-section { background: var(--bg); }
.zones-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.zones-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.zones-table th {
  background: var(--navy);
  color: var(--white);
  padding: 14px 18px;
  font-size: 0.82rem;
  font-weight: 700;
  text-align: left;
  font-family: var(--ff-head);
}
.zones-table td {
  padding: 13px 18px;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-mid);
}
.zones-table tr:last-child td { border-bottom: none; }
.zones-table tr:hover td { background: var(--bg); }
.price-cell {
  font-family: var(--ff-head);
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}
.zone-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.73rem;
  font-weight: 700;
}
.zone-a { background: var(--success-bg); color: var(--success); }
.zone-b { background: var(--gold-pale); color: #8B6010; }
.zone-c { background: #EFF4FF; color: #2650A0; }

.zones-note {
  background: var(--gold-pale);
  border: 1px solid rgba(224,155,26,0.25);
  border-radius: var(--radius);
  padding: 18px 20px;
  font-size: 0.88rem;
  color: #6B4E10;
  margin-top: 16px;
  line-height: 1.6;
}

/* ── Drivers ─────────────────────────────────────── */
.drivers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 740px;
  margin: 0 auto;
}
.driver-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
}
.driver-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.driver-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  overflow: hidden;
}
.driver-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.driver-card h4 { margin-bottom: 4px; }
.driver-card .driver-role {
  font-size: 0.82rem;
  color: var(--text-soft);
  margin-bottom: 14px;
}
.driver-langs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
}
.lang-tag {
  padding: 3px 10px;
  background: var(--bg);
  border: 1px solid var(--border-mid);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-mid);
}

/* ── FAQ ─────────────────────────────────────────── */
.faq-list {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  transition: var(--transition);
}
.faq-q:hover { background: var(--bg); }
.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  transition: transform var(--transition);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 0 22px 18px;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
}
.faq-item.open .faq-a { display: block; }

/* ── CTA Banner ──────────────────────────────────── */
.cta-banner {
  background: var(--gold);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  text-align: center;
  margin: 0 auto;
  max-width: 900px;
}
.cta-banner h2 { color: var(--navy); margin-bottom: 14px; }
.cta-banner p { color: rgba(13,31,60,0.7); font-size: 1.05rem; margin-bottom: 32px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ──────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 32px;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo { color: var(--white); margin-bottom: 14px; }
.footer-brand .logo-icon { background: rgba(255,255,255,0.1); }
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin-top: 14px;
}
.footer-col h5 {
  font-family: var(--ff-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ── WhatsApp Float ──────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }
.wa-float svg { width: 30px; height: 30px; fill: white; }

/* ── Misc / Utility ──────────────────────────────── */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.bg-navy { background: var(--navy); }
.bg-light { background: var(--bg); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-0 { margin-bottom: 0; }

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-card { max-width: 500px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .vehicles-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  section { padding: 60px 0; }
  .nav-links, .nav-actions .btn { display: none; }
  .nav-toggle { display: flex; }
  .trust-grid { grid-template-columns: 1fr; }
  .vehicles-grid { grid-template-columns: 1fr; }
  .zones-grid { grid-template-columns: 1fr; }
  .drivers-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 36px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { justify-content: center; text-align: center; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .form-row { grid-template-columns: 1fr; }
  .hero { padding: 72px 0 60px; }
  h1 { font-size: 1.9rem; }
}
