/* =========================================================================
   Antalya VIP Transfer — Design System
   Lüks ama sade: koyu lacivert/antrasit + altın/krem palet
   Mobile-first, minimal CSS, no framework dependency.
   ========================================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Brand palette */
  --navy-900: #0a1626;
  --navy-800: #0e1f35;
  --navy-700: #142a44;
  --navy-600: #1d3a5c;
  --ink: #0b1322;

  --gold: #c9a24b;
  --gold-light: #e4c77e;
  --gold-deep: #ad8636;
  --gold-soft: rgba(201, 162, 75, 0.12);

  --cream: #f7f2e8;
  --paper: #fbf8f2;
  --white: #ffffff;

  /* Text */
  --text: #16243d;
  --text-muted: #5d6b80;
  --text-on-dark: #e9eef6;
  --muted-on-dark: #9bacc4;

  --line: #e7e0d2;
  --line-dark: rgba(255, 255, 255, 0.10);

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(11, 19, 34, 0.06), 0 2px 6px rgba(11, 19, 34, 0.05);
  --shadow-md: 0 8px 24px rgba(11, 19, 34, 0.10);
  --shadow-lg: 0 24px 60px rgba(11, 19, 34, 0.18);
  --radius: 16px;
  --radius-sm: 12px;
  --radius-lg: 24px;

  /* Type */
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;

  --container: 1180px;
  --transition: 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--paper);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}
.section { padding-block: 64px; }
@media (min-width: 768px) { .section { padding-block: 96px; } }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-deep);
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--gold);
}
.section-head { max-width: 640px; margin-bottom: 40px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }

/* ---------- Typography ---------- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.1rem, 6vw, 3.7rem); }
h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); }
h3 { font-size: 1.2rem; }
.lead { font-size: 1.05rem; color: var(--text-muted); margin-top: 16px; }
.gold-text { color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.97rem;
  border: 1px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #2a1f06;
  box-shadow: 0 8px 22px rgba(201, 162, 75, 0.32);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(201, 162, 75, 0.42); }
.btn-ghost { background: transparent; color: var(--text-on-dark); border-color: var(--line-dark); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.06); border-color: var(--gold); }
.btn-dark { background: var(--navy-800); color: var(--white); }
.btn-dark:hover { background: var(--navy-700); transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn-lg { padding: 16px 30px; font-size: 1.02rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.site-header.scrolled {
  background: rgba(10, 22, 38, 0.92);
  backdrop-filter: saturate(140%) blur(12px);
  box-shadow: 0 1px 0 var(--line-dark);
}
.brand { display: flex; align-items: center; gap: 11px; color: var(--white); }
.brand-mark { width: 38px; height: 38px; flex: none; }
.brand-name { font-family: var(--font-display); font-size: 1.18rem; font-weight: 600; letter-spacing: 0.01em; line-height: 1; }
.brand-name small { display: block; font-family: var(--font-sans); font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-top: 4px; }
.brand-logo { height: 40px; width: auto; display: block; }
@media (max-width: 480px) { .brand-logo { height: 34px; } }
.site-footer .brand-logo { height: 46px; }

.nav { display: none; align-items: center; gap: 24px; }
.nav a { color: var(--text-on-dark); font-size: 0.92rem; font-weight: 500; opacity: 0.86; transition: opacity var(--transition), color var(--transition); }
.nav a:hover { opacity: 1; color: var(--gold-light); }

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

/* Compact language dropdown */
.lang-dd { position: relative; display: none; }
.lang-btn {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(255, 255, 255, 0.08); border: 1px solid var(--line-dark);
  color: var(--text-on-dark); padding: 7px 11px; border-radius: 10px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.05em; cursor: pointer;
  transition: border-color var(--transition), color var(--transition);
}
.lang-btn svg { width: 14px; height: 14px; transition: transform var(--transition); }
.lang-btn:hover { border-color: var(--gold); color: var(--white); }
.lang-dd.open .lang-btn { border-color: var(--gold); color: var(--white); }
.lang-dd.open .lang-btn svg { transform: rotate(180deg); }
.lang-pop {
  position: absolute; right: 0; top: calc(100% + 8px); min-width: 168px;
  background: var(--navy-800); border: 1px solid var(--line-dark); border-radius: 12px;
  padding: 6px; box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5);
  display: none; flex-direction: column; gap: 2px; z-index: 80;
}
.lang-dd.open .lang-pop { display: flex; }
.lang-pop a { display: flex; align-items: baseline; gap: 9px; padding: 8px 11px; border-radius: 8px; color: var(--muted-on-dark); font-size: 0.86rem; }
.lang-pop a b { color: var(--white); font-weight: 700; min-width: 24px; }
.lang-pop a:hover { background: rgba(255, 255, 255, 0.06); color: var(--white); }
.lang-pop a.on, .lang-pop a.on b { color: var(--gold-light); }

.header-cta { display: none; }
.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  padding: 0 11px;
}
.menu-toggle span { height: 2px; background: var(--white); border-radius: 2px; transition: transform var(--transition), opacity var(--transition); }

@media (min-width: 1040px) {
  .nav, .header-cta { display: flex; }
  .lang-dd { display: block; }
  .menu-toggle { display: none; }
}

/* Mobile drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: var(--navy-900);
  padding: 88px 24px 32px;
  transform: translateX(100%);
  transition: transform var(--transition);
  display: flex;
  flex-direction: column;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a { color: var(--text-on-dark); font-size: 1.25rem; font-family: var(--font-display); padding: 16px 0; border-bottom: 1px solid var(--line-dark); }
.mobile-nav .mobile-langs { display: flex; gap: 8px; margin-top: 24px; }
.mobile-nav .mobile-langs a { font-family: var(--font-sans); font-size: 0.85rem; border: 1px solid var(--line-dark); border-radius: 8px; padding: 8px 14px; }
.mobile-nav .btn { margin-top: 24px; }
.mobile-close { position: absolute; top: 22px; right: 22px; width: 44px; height: 44px; background: rgba(255,255,255,.08); border: 1px solid var(--line-dark); border-radius: 12px; color: var(--white); font-size: 1.4rem; }
body.no-scroll { overflow: hidden; }

/* ---------- Hero (full-bleed photograph) ---------- */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--text-on-dark);
  overflow: hidden;
  padding-top: 128px;
  padding-bottom: 52px;
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 52%;
  z-index: 0;
}
.hero-scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(100deg, rgba(8, 16, 28, 0.94) 0%, rgba(8, 16, 28, 0.78) 38%, rgba(8, 16, 28, 0.30) 72%, rgba(8, 16, 28, 0.12) 100%),
    linear-gradient(to top, rgba(8, 16, 28, 0.85) 0%, transparent 42%);
}
.hero .container { position: relative; z-index: 2; }
.hero-copy { max-width: 600px; padding-bottom: 40px; }
.hero h1 { color: var(--white); margin-top: 18px; text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35); }
.hero h1 .gold-text { color: var(--gold-light); }
.hero p.lead { color: #d4ddec; max-width: 520px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 14px 22px; margin-top: 28px; }
.hero-trust div { display: flex; align-items: center; gap: 9px; font-size: 0.9rem; color: var(--text-on-dark); }
.hero-trust svg { color: var(--gold-light); flex: none; }
@media (min-width: 768px) { .hero-bg { object-position: 50% 48%; } }

/* Booking form */
.booking {
  background: var(--white);
  color: var(--text);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 22px;
  position: relative;
  z-index: 3;
  margin-bottom: -56px;
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.booking-title { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 0.95rem; margin-bottom: 16px; color: var(--navy-800); }
.booking-title svg { color: var(--gold-deep); }
.booking-grid { display: grid; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); }
.field .control {
  display: flex; align-items: center; gap: 9px;
  background: #f6f4ef;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 11px 13px;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.field .control:focus-within { border-color: var(--gold); background: var(--white); box-shadow: 0 0 0 3px var(--gold-soft); }
.field .control svg { color: var(--gold-deep); flex: none; }
.field input, .field select {
  border: none; background: transparent; width: 100%;
  font: inherit; color: var(--text); font-size: 0.95rem; outline: none;
}
.field select { appearance: none; cursor: pointer; }
.booking .btn { margin-top: 4px; }
.booking-note { font-size: 0.78rem; color: var(--text-muted); text-align: center; margin-top: 12px; }
.booking-note strong { color: var(--gold-deep); }
.booking-note svg { width: 14px; height: 14px; vertical-align: -2px; color: var(--gold-deep); }
.footer-badge svg { width: 13px; height: 13px; vertical-align: -2px; }

@media (min-width: 768px) {
  .booking-grid { grid-template-columns: 1fr 1fr; }
  .field.full { grid-column: 1 / -1; }
}
@media (min-width: 992px) {
  .hero { padding-top: 132px; padding-bottom: 60px; }
  .hero-copy { padding-bottom: 52px; }
}

/* ---------- Logos / trust strip ---------- */
.trust-strip { background: var(--navy-900); color: var(--muted-on-dark); }
.trust-strip .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px 40px; padding-block: 28px; }
.trust-strip .stat { display: flex; align-items: baseline; gap: 8px; }
.trust-strip .stat b { font-family: var(--font-display); font-size: 1.5rem; color: var(--gold-light); }
.trust-strip .stat span { font-size: 0.85rem; }
.trust-strip .sep { width: 1px; height: 28px; background: var(--line-dark); }
@media (max-width: 640px) { .trust-strip .sep { display: none; } }

/* ---------- Feature cards (Neden Biz) ---------- */
.features { background: var(--paper); }
.card-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 560px) { .card-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 992px) { .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }

.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.feature-icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--gold-soft);
  color: var(--gold-deep);
  margin-bottom: 16px;
}
.feature-card h3 { margin-bottom: 8px; font-family: var(--font-sans); font-weight: 700; font-size: 1.08rem; }
.feature-card p { color: var(--text-muted); font-size: 0.94rem; }

/* ---------- Fleet ---------- */
.fleet { background: var(--white); }
.fleet-grid { display: grid; gap: 22px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .fleet-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .fleet-grid { grid-template-columns: repeat(3, 1fr); } }

.fleet-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
}
.fleet-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.fleet-media {
  position: relative;
  background: linear-gradient(160deg, var(--navy-700), var(--navy-900));
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.fleet-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform var(--transition); }
.fleet-card:hover .fleet-media img { transform: scale(1.05); }
.fleet-badge {
  position: absolute; top: 14px; left: 14px;
  background: rgba(201, 162, 75, 0.95); color: #2a1f06;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em;
  padding: 5px 11px; border-radius: 999px;
}
.fleet-body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.fleet-body h3 { font-family: var(--font-sans); font-weight: 700; font-size: 1.15rem; }
.fleet-cap { display: flex; gap: 16px; color: var(--text-muted); font-size: 0.88rem; margin: 10px 0 16px; flex-wrap: wrap; }
.fleet-cap span { display: inline-flex; align-items: center; gap: 6px; }
.fleet-cap svg { color: var(--gold-deep); }
.fleet-feats { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.fleet-feats li { font-size: 0.8rem; background: var(--paper); border: 1px solid var(--line); padding: 5px 11px; border-radius: 999px; color: var(--text); }
.fleet-body .btn { margin-top: auto; }

/* ---------- Pricing ---------- */
.pricing { background: var(--paper); }
.price-grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .price-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 992px) { .price-grid { grid-template-columns: repeat(3, 1fr); } }

.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex; flex-direction: column; gap: 4px;
}
.price-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.price-route { display: flex; align-items: center; gap: 9px; font-weight: 700; font-size: 1.08rem; color: var(--navy-800); }
.price-route svg { color: var(--gold-deep); flex: none; }
.price-meta { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 10px; }
.price-row { display: flex; align-items: baseline; justify-content: space-between; margin-top: auto; padding-top: 14px; border-top: 1px dashed var(--line); }
.price-amount { font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; color: var(--navy-900); }
.price-amount small { font-family: var(--font-sans); font-size: 0.78rem; font-weight: 600; color: var(--text-muted); }
.price-cta { color: var(--gold-deep); font-weight: 700; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 5px; }
.price-note { text-align: center; color: var(--text-muted); font-size: 0.86rem; margin-top: 24px; }

/* ---------- Reviews ---------- */
.reviews { background: var(--navy-900); color: var(--text-on-dark); position: relative; overflow: hidden; }
.reviews::before { content: ""; position: absolute; inset: 0; background-image: url("/images/pattern.svg"); background-size: 540px; opacity: 0.25; }
.reviews .container { position: relative; z-index: 2; }
.reviews .section-head h2 { color: var(--white); }
.reviews .section-head .lead { color: var(--muted-on-dark); }
.rating-summary { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 44px; }
.rating-chip {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  padding: 14px 20px;
}
.rating-chip .score { font-family: var(--font-display); font-size: 1.9rem; color: var(--gold-light); line-height: 1; }
.rating-chip .meta { font-size: 0.82rem; color: var(--muted-on-dark); }
.rating-chip .meta b { color: var(--white); display: block; font-size: 0.92rem; }
.stars { color: var(--gold); display: inline-flex; gap: 2px; }

.review-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .review-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 24px;
}
.review-card .stars { margin-bottom: 12px; }
.review-card p { color: var(--text-on-dark); font-size: 0.95rem; }
.review-author { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.review-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-light), var(--gold-deep)); color: #2a1f06; display: grid; place-items: center; font-weight: 700; flex: none; }
.review-author b { font-size: 0.92rem; display: block; color: var(--white); }
.review-author span { font-size: 0.8rem; color: var(--muted-on-dark); }

/* ---------- FAQ ---------- */
.faq { background: var(--paper); }
.faq-list { max-width: 760px; margin-inline: auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; transition: box-shadow var(--transition), border-color var(--transition); }
.faq-item[open] { box-shadow: var(--shadow-sm); border-color: var(--gold); }
.faq-item summary {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 20px;
  font-weight: 600; font-size: 1.02rem; color: var(--navy-800);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chevron { flex: none; transition: transform var(--transition); color: var(--gold-deep); }
.faq-item[open] summary .chevron { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 20px 20px; color: var(--text-muted); font-size: 0.95rem; }

/* ---------- Contact / CTA ---------- */
.contact { background: var(--navy-800); color: var(--text-on-dark); }
.contact-grid { display: grid; gap: 32px; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; align-items: center; } }
.contact .section-head h2 { color: var(--white); }
.contact-methods { display: flex; flex-direction: column; gap: 14px; margin-top: 26px; }
.contact-method { display: flex; align-items: center; gap: 14px; }
.contact-method .ic { width: 46px; height: 46px; flex: none; border-radius: 12px; background: var(--gold-soft); color: var(--gold-light); display: grid; place-items: center; }
.contact-method span { display: block; font-size: 0.78rem; color: var(--muted-on-dark); }
.contact-method b { font-size: 1.05rem; color: var(--white); font-weight: 600; }
.contact-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  padding: 30px;
}
.contact-card h3 { color: var(--white); font-family: var(--font-sans); font-weight: 700; margin-bottom: 8px; }
.contact-card p { color: var(--muted-on-dark); font-size: 0.94rem; margin-bottom: 22px; }
.contact-card .btn + .btn { margin-top: 12px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: var(--muted-on-dark); padding-block: 56px 28px; }
.footer-grid { display: grid; gap: 36px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { font-size: 0.92rem; max-width: 320px; }
.footer-col h4 { color: var(--white); font-size: 0.95rem; font-family: var(--font-sans); margin-bottom: 16px; }
.footer-col a, .footer-col li { font-size: 0.9rem; padding-block: 5px; display: block; transition: color var(--transition); }
.footer-col a:hover { color: var(--gold-light); }
.footer-badges { display: flex; align-items: center; gap: 16px; margin-top: 20px; flex-wrap: wrap; }
.footer-badge { background: rgba(255, 255, 255, 0.06); border: 1px solid var(--line-dark); border-radius: 10px; padding: 8px 14px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; color: var(--gold-light); }
.footer-bottom { border-top: 1px solid var(--line-dark); margin-top: 40px; padding-top: 22px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: 0.82rem; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 38px; height: 38px; border: 1px solid var(--line-dark); border-radius: 10px; display: grid; place-items: center; transition: border-color var(--transition), color var(--transition); }
.footer-social a:hover { border-color: var(--gold); color: var(--gold-light); }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed;
  right: 18px; bottom: 18px;
  z-index: 80;
  display: inline-flex; align-items: center; gap: 10px;
  background: #25d366; color: #ffffff;
  padding: 13px 16px;
  border-radius: 999px;
  font-weight: 700; font-size: 0.92rem;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.wa-float:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 18px 38px rgba(37, 211, 102, 0.5); }
.wa-float .wa-label { display: none; }
.wa-float svg { width: 26px; height: 26px; }
@media (min-width: 480px) { .wa-float .wa-label { display: inline; } }
@media (min-width: 992px) { .wa-float { right: 28px; bottom: 28px; } }

/* ---------- Booking: quote + reservation fields ---------- */
.form-alert {
  background: #fdecec; border: 1px solid #f3c2c2; color: #a12626;
  border-radius: 12px; padding: 12px 14px; margin-bottom: 14px; font-size: 0.9rem;
}
.field-error { color: #c0392b; font-size: 0.78rem; font-weight: 600; }
.quote-box {
  margin-top: 16px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-900));
  color: var(--text-on-dark);
  border-radius: var(--radius);
  padding: 18px 20px;
  border: 1px solid var(--gold);
}
.quote-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; }
.quote-label { display: block; font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-on-dark); }
.quote-price { font-family: var(--font-display); font-size: 2.1rem; color: var(--gold-light); line-height: 1.1; }
.quote-route-info { text-align: right; }
.quote-route-info span { display: block; font-weight: 600; color: var(--white); }
.quote-route-info small { color: var(--muted-on-dark); font-size: 0.82rem; }
.quote-hint { margin-top: 12px; font-size: 0.78rem; color: var(--muted-on-dark); }
.reservation-fields { margin-top: 18px; padding-top: 18px; border-top: 1px dashed var(--line); }
@media (max-width: 480px) { .quote-route-info { text-align: left; } }

/* Reveal-on-scroll (progressive enhancement; visible by default) */
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.js .reveal.in { opacity: 1; transform: none; }

/* ============ MULTI-PAGE: page hero, breadcrumbs, steps, CTA, about ============ */

/* Active nav item */
.nav a.is-active { opacity: 1; color: var(--gold-light); }

/* Sub-page hero band */
.page-hero {
  position: relative;
  background: var(--navy-900);
  border-bottom: 1px solid var(--line-dark);
  color: var(--text-on-dark);
  overflow: hidden;
  padding: 128px 0 52px;
}
.page-hero::after {
  content: "";
  position: absolute; right: -120px; top: -120px;
  width: 360px; height: 360px; border-radius: 50%;
  border: 1px solid rgba(201, 162, 75, 0.18);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 2; max-width: 760px; }
.page-hero h1 { color: var(--white); margin-top: 14px; }
.page-hero h1 .gold-text { color: var(--gold-light); }
.page-hero p.lead { color: var(--muted-on-dark); margin-bottom: 26px; }

/* Breadcrumbs */
.crumbs { font-size: 0.84rem; color: var(--muted-on-dark); margin-bottom: 8px; }
.crumbs a { color: var(--gold-light); }
.crumbs a:hover { text-decoration: underline; }
.crumbs span { margin: 0 6px; opacity: 0.6; }

/* How it works — steps */
.steps-section { background: var(--cream); }
.steps-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 560px) { .steps-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .steps-grid { grid-template-columns: repeat(4, 1fr); } }
.step-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 22px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-num {
  display: grid; place-items: center;
  width: 44px; height: 44px; margin-bottom: 16px;
  border-radius: 50%;
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 700;
  color: var(--navy-900);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 8px 20px rgba(201, 162, 75, 0.35);
}
.step-card h3 { font-family: var(--font-sans); font-weight: 700; font-size: 1.05rem; margin-bottom: 8px; }
.step-card p { color: var(--text-muted); font-size: 0.92rem; }

/* CTA band */
.cta-band { background: var(--navy-900); color: var(--text-on-dark); }
.cta-inner {
  display: grid; gap: 22px; align-items: center;
  background: var(--navy-800);
  border: 1px solid var(--line-dark);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 40px 34px;
}
@media (min-width: 820px) { .cta-inner { grid-template-columns: 1.6fr 1fr; } }
.cta-inner h2 { color: var(--white); }
.cta-inner p { color: var(--muted-on-dark); margin-top: 8px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }
@media (min-width: 820px) { .cta-actions { justify-content: flex-end; } }

/* About — story grid */
.about-grid { display: grid; gap: 32px; align-items: center; }
@media (min-width: 860px) { .about-grid { grid-template-columns: 1.1fr 0.9fr; } }
.about-copy p { color: var(--text-muted); font-size: 1.02rem; margin-bottom: 16px; }
.about-copy p:first-child::first-letter {
  font-family: var(--font-display); font-size: 2.6rem; font-weight: 700;
  color: var(--gold-deep); float: left; line-height: 0.9; margin: 4px 10px 0 0;
}
.about-visual img {
  width: 100%; aspect-ratio: 3 / 4; object-fit: cover; object-position: center;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(228, 199, 126, 0.25);
  box-shadow: var(--shadow-lg);
}

/* ---------- Hero eyebrow on photo ---------- */
.eyebrow.light { color: var(--gold-light); }
.eyebrow.light::before { background: var(--gold-light); }

/* ---------- Neden Biz — editorial split (photo + benefit list) ---------- */
.feature-split { display: grid; gap: 30px; align-items: center; }
@media (min-width: 900px) { .feature-split { grid-template-columns: 0.82fr 1fr; gap: 60px; } }
.feature-media { position: relative; }
.feature-media img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.feature-media-tag {
  position: absolute; left: -14px; bottom: 22px;
  display: flex; align-items: center; gap: 12px;
  background: var(--white); border-radius: 14px;
  padding: 12px 18px; box-shadow: var(--shadow-md);
  max-width: 230px;
}
.feature-media-tag strong { font-family: var(--font-display); font-size: 1.7rem; color: var(--gold-deep); line-height: 1; }
.feature-media-tag strong span { font-size: 0.9rem; color: var(--text-muted); }
.feature-media-tag > span { font-size: 0.76rem; color: var(--text-muted); line-height: 1.35; }
.feature-copy .section-head { margin-bottom: 22px; }
.feature-list { display: flex; flex-direction: column; }
.feature-row { display: flex; gap: 16px; padding: 17px 0; border-top: 1px solid var(--line); }
.feature-row:first-child { border-top: 0; padding-top: 4px; }
.feature-ic {
  flex: none; width: 46px; height: 46px; border-radius: 13px;
  display: grid; place-items: center;
  background: var(--gold-soft); color: var(--gold-deep);
}
.feature-ic svg { width: 22px; height: 22px; }
.feature-row h3 { font-family: var(--font-sans); font-weight: 700; font-size: 1.04rem; margin-bottom: 3px; }
.feature-row p { color: var(--text-muted); font-size: 0.93rem; }
@media (min-width: 560px) { .feature-media-tag { left: -22px; } }

/* ---------- Hero search bar (yatay rezervasyon çubuğu) ---------- */
.hero-search { max-width: 1000px; }
.hero-search .form-alert { margin-bottom: 12px; }
.search-bar {
  display: flex; align-items: stretch;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.32);
  padding: 7px;
}
.search-seg {
  flex: 1; min-width: 0;
  display: flex; flex-direction: column; justify-content: center; gap: 2px;
  padding: 9px 16px; border-radius: 13px;
  transition: background var(--transition);
}
.search-seg:hover { background: var(--paper); }
.search-seg label {
  font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase;
  font-weight: 700; color: var(--text-muted); cursor: pointer;
}
.seg-val { display: flex; align-items: center; gap: 9px; }
.seg-val svg { width: 17px; height: 17px; color: var(--gold-deep); flex: none; }
.seg-val select, .seg-val input {
  border: 0; background: transparent; outline: none;
  font: inherit; font-size: 0.95rem; font-weight: 600; color: var(--text);
  width: 100%; padding: 2px 0; cursor: pointer;
  appearance: none; -webkit-appearance: none;
}
.seg-val input[type="date"]::-webkit-calendar-picker-indicator,
.seg-val input[type="time"]::-webkit-calendar-picker-indicator { opacity: 0.5; cursor: pointer; }
.seg-div { width: 1px; background: var(--line); margin: 12px 0; flex: none; }
.search-go {
  flex: none; margin-left: 6px;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 0 26px; border: 0; border-radius: 13px; cursor: pointer;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #2a1f06; font-weight: 700; font-size: 0.98rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.search-go svg { width: 19px; height: 19px; }
.search-go:hover { box-shadow: 0 12px 28px rgba(201, 162, 75, 0.5); transform: translateY(-1px); }

/* progressive disclosure under the bar */
.search-more { max-width: 1000px; }
.hero-search .quote-box { margin-top: 14px; }
.hero-search .reservation-fields {
  margin-top: 14px; padding: 20px; border-top: 0;
  background: var(--white); border-radius: 18px;
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.26);
}
.hero-search .booking-note { color: var(--muted-on-dark); margin-top: 14px; }
.hero-search .booking-note svg { color: var(--gold-light); }

@media (max-width: 880px) {
  .search-bar { flex-direction: column; padding: 8px; border-radius: 16px; }
  .seg-div { display: none; }
  .search-seg { border-bottom: 1px solid var(--line); border-radius: 10px; padding: 12px 14px; }
  .search-seg:last-of-type { border-bottom: 0; }
  .search-go { width: 100%; margin: 8px 0 0; padding: 15px; }
}

/* ---------- Reservation screen (tek ekran, scroll yok) ---------- */
body.res-screen {
  background:
    radial-gradient(120% 80% at 82% 0%, rgba(201, 162, 75, 0.10), transparent 55%),
    linear-gradient(165deg, var(--navy-800), var(--navy-900));
}
.res-fit {
  min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center;
  padding: 92px 0 24px;
}
.res-board {
  width: 100%;
  display: grid; grid-template-columns: 1fr;
  background: var(--white);
  border-radius: 22px; overflow: hidden;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.45);
}
@media (min-width: 880px) { .res-board { grid-template-columns: 340px 1fr; } }

.res-aside {
  background: linear-gradient(165deg, var(--navy-800), var(--navy-900));
  color: var(--text-on-dark);
  padding: 28px 26px; display: flex; flex-direction: column; gap: 18px;
}
.res-back { display: inline-flex; align-items: center; gap: 6px; color: var(--muted-on-dark); font-size: 0.86rem; }
.res-back:hover { color: var(--gold-light); }
.res-back svg { width: 15px; height: 15px; }
.res-quote .rq-label { display: block; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-on-dark); }
.res-quote strong { display: block; font-family: var(--font-display); font-size: 2.9rem; line-height: 1.02; color: var(--gold-light); }
.res-quote small { color: var(--muted-on-dark); font-size: 0.88rem; }
.res-trip { display: flex; flex-direction: column; gap: 13px; margin: 0; border-top: 1px solid var(--line-dark); padding-top: 18px; }
.res-trip li { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; }
.res-trip span { font-size: 0.72rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted-on-dark); }
.res-trip b { color: var(--white); font-weight: 600; text-align: right; }
.res-secure { margin-top: auto; display: flex; align-items: center; gap: 8px; font-size: 0.76rem; color: var(--muted-on-dark); }
.res-secure svg { width: 14px; height: 14px; color: var(--gold-light); flex: none; }

.res-main { padding: 26px 30px 28px; }
.res-main .res-h1 { font-family: var(--font-display); font-size: 1.45rem; margin-bottom: 14px; }
.res-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 11px 16px; }
.res-fields .field.full { grid-column: 1 / -1; }
.res-form .field { gap: 5px; }
.res-form .field label { font-size: 0.68rem; }
.res-form .control { padding: 8px 11px; }
.res-form .field input, .res-form .field select { font-size: 0.9rem; }
.res-form .btn { margin-top: 16px; }

@media (max-width: 560px) { .res-fields { grid-template-columns: 1fr; } .res-quote strong { font-size: 2.4rem; } }

/* ============ Tam ekran bölümler — anasayfa (scroll-snap) ============ */
html { scroll-padding-top: 72px; }
@media (min-width: 768px) {
  html { scroll-snap-type: y proximity; }
  body.home-snap main > section {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    scroll-snap-align: start;
    padding-block: 92px;
  }
  body.home-snap main > section > .container { width: 100%; }
  body.home-snap .hero { padding-block: 100px 56px; }
  /* tam ekran güven şeridi daha dolu görünsün */
  body.home-snap .trust-strip .container { gap: 28px 64px; padding-block: 0; }
  body.home-snap .trust-strip .stat b { font-size: 2.7rem; }
  body.home-snap .trust-strip .stat span { font-size: 1.02rem; }
  body.home-snap .trust-strip .sep { height: 40px; }
}
/* Çok kısa ekranlarda zorlamayalım: içerik taşarsa bölüm büyüsün (min-height zaten izin verir) */
@media (min-width: 768px) and (max-height: 700px) {
  body.home-snap main > section { padding-block: 80px; }
}
