/* ============================================
   TRANSFERIUM — VIP Transfer & Şehir Turları
   Design tokens
   ============================================ */

:root {
  --bg: #0a0a0b;
  --bg-card: #141416;
  --bg-card-border: #232326;
  --rose: #c98a97;
  --rose-bright: #e2a9b5;
  --rose-deep: #b06f7d;
  --gold: #d4af37;
  --gold-light: #f0d78c;
  --text: #f2f0ef;
  --text-muted: #9b9a9f;
  --text-faint: #6b6a70;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius: 2px;
  --container: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  border: 1px solid var(--bg-card-border);
  border-radius: 4px;
  padding: 3px;
  background: rgba(255,255,255,0.02);
}
.flag-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 3px;
  opacity: 0.5;
  transition: opacity 0.2s ease, background 0.2s ease;
  display: flex;
  align-items: center;
}
.flag-btn:hover { opacity: 0.85; }
.flag-btn.active { opacity: 1; background: rgba(201,138,151,0.16); }
.flag-icon {
  width: 24px;
  height: 16px;
  border-radius: 2px;
  display: block;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.1);
}

[dir="rtl"] body { direction: rtl; }
[dir="rtl"] .btn-row,
[dir="rtl"] .footer-bottom,
[dir="rtl"] .main-nav { direction: rtl; }
[dir="rtl"] .hero .container { direction: rtl; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 11, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--bg-card-border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.logo span {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 55%, #a3811f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.main-nav a {
  font-size: 14.5px;
  color: var(--text-muted);
  transition: color 0.2s ease;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
}
.main-nav a:hover { color: var(--text); }
.main-nav a.active {
  color: var(--rose-bright);
  border-bottom-color: var(--rose-bright);
}

.call-btn {
  background: var(--rose);
  color: #1a0d10;
  font-size: 14px;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: background 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.call-btn:hover { background: var(--rose-bright); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 26px;
  cursor: pointer;
}

@media (max-width: 860px) {
  .main-nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--bg-card-border);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px 28px;
    gap: 18px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease;
    z-index: 150;
  }
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-toggle { display: block; }
  .site-header .container { height: 68px; }
  .logo { font-size: 19px; }
  .call-btn span { display: none; }
  .call-btn { padding: 10px 12px; }
}

@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .logo { font-size: 17px; }
  .lang-switch { padding: 2px; gap: 0; }
  .flag-btn { padding: 4px 4px; }
  .flag-icon { width: 20px; height: 13px; }
  .site-header .container > div:first-child { gap: 10px; }
  .hero { padding: 88px 0 60px; }
  .hero h1 { font-size: 28px; }
  .hero p { font-size: 15px; }
  .btn { padding: 12px 18px; font-size: 13.5px; }
  .booking-card { padding: 20px 16px 16px; }
  .section { padding: 56px 0; }
  .section-head h2 { font-size: 26px; }
  .page-hero h1 { font-size: 26px; }
  .cta-band h2 { font-size: 22px; }
  .stats-grid .num { font-size: 26px; }
  .footer-grid { gap: 24px; }
}

/* ---------- Hero ---------- */
.hero {
  padding: 96px 0 100px;
  border-bottom: 1px solid var(--bg-card-border);
}

.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.eyebrow {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose-bright);
  margin-bottom: 18px;
  display: block;
}

.hero h1 {
  font-size: 46px;
  line-height: 1.14;
  margin-bottom: 22px;
}
.hero h1 em {
  font-style: normal;
  color: var(--rose-bright);
}

.hero p {
  font-size: 16.5px;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 34px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius);
  font-size: 14.5px;
  font-weight: 600;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}
.btn-primary { background: var(--rose); color: #1a0d10; }
.btn-primary:hover { background: var(--rose-bright); }
.btn-secondary {
  background: transparent;
  border-color: var(--bg-card-border);
  color: var(--text);
}
.btn-secondary:hover { border-color: var(--rose); color: var(--rose-bright); }

.hero-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3.2;
  background:
    radial-gradient(circle at 30% 20%, rgba(201,138,151,0.18), transparent 55%),
    linear-gradient(160deg, #171018 0%, #0c0c10 55%, #0a0f16 100%);
  border: 1px solid var(--bg-card-border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,0.5) 0, transparent 100%),
    radial-gradient(1px 1px at 70% 15%, rgba(255,255,255,0.4) 0, transparent 100%),
    radial-gradient(1px 1px at 45% 65%, rgba(255,255,255,0.3) 0, transparent 100%),
    radial-gradient(1px 1px at 85% 55%, rgba(255,255,255,0.35) 0, transparent 100%),
    radial-gradient(1px 1px at 15% 80%, rgba(255,255,255,0.3) 0, transparent 100%);
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.hero-visual .visual-label {
  position: relative;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.1em;
  color: rgba(242,240,239,0.35);
  border: 1px solid rgba(242,240,239,0.15);
  padding: 10px 18px;
}

@media (max-width: 860px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero h1 { font-size: 34px; }
}

/* ---------- Section shell ---------- */
.section { padding: 92px 0; }
.section-border { border-bottom: 1px solid var(--bg-card-border); }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 52px; }
.section-head h2 { font-size: 32px; margin-bottom: 12px; }
.section-head p { color: var(--text-muted); font-size: 15.5px; }
.section-head.align-left { text-align: left; margin: 0 0 40px; }

/* ---------- Cards grid ---------- */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .grid-4, .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-4, .grid-3 { grid-template-columns: 1fr; }
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.card:hover { border-color: var(--rose-deep); transform: translateY(-2px); }

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: rgba(201,138,151,0.12);
  color: var(--rose-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 19px;
}

.card h3 { font-size: 17.5px; margin-bottom: 10px; font-family: var(--font-body); font-weight: 600; }
.card p { color: var(--text-muted); font-size: 14px; margin-bottom: 14px; }

.card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  font-size: 13.5px;
  color: var(--text-muted);
}
.card ul li {
  padding: 5px 0;
  border-top: 1px solid var(--bg-card-border);
}
.card ul li:first-child { border-top: none; }

.card-link {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--rose-bright);
}

/* ---------- Gallery strip ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 700px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

.gallery-tile {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  border: 1px solid var(--bg-card-border);
  background: linear-gradient(150deg, #16121a 0%, #0b0d13 60%, #0a1016 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 12px;
}
.gallery-tile img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.gallery-tile .tile-tag {
  position: relative;
  font-size: 11.5px;
  color: rgba(242,240,239,0.4);
  letter-spacing: 0.04em;
}

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.stars { color: var(--rose-bright); font-size: 13px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card p.quote { font-size: 14px; color: var(--text); margin-bottom: 20px; font-style: italic; }
.testimonial-card .name { font-size: 14px; font-weight: 600; }
.testimonial-card .role { font-size: 12.5px; color: var(--text-faint); }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--rose);
  color: #1a0d10;
  padding: 68px 0;
  text-align: center;
}
.cta-band h2 { color: #1a0d10; font-size: 28px; margin-bottom: 12px; }
.cta-band p { color: #3a2126; max-width: 520px; margin: 0 auto 28px; font-size: 15px; }
.cta-band .btn-primary { background: #1a0d10; color: var(--rose-bright); }
.cta-band .btn-primary:hover { background: #2a1418; }

/* ---------- Stats ---------- */
.stats-band {
  background: var(--rose);
  padding: 46px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.stats-grid .num {
  font-family: var(--font-display);
  font-size: 32px;
  color: #1a0d10;
  font-weight: 600;
}
.stats-grid .label { font-size: 13px; color: #3a2126; margin-top: 4px; }
@media (max-width: 700px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 26px; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg);
  padding: 60px 0 26px;
  border-top: 1px solid var(--bg-card-border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 32px;
  margin-bottom: 40px;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
.footer-grid h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-grid p, .footer-grid a {
  display: block;
  font-size: 13.5px;
  color: var(--text-faint);
  margin-bottom: 10px;
}
.footer-grid a:hover { color: var(--rose-bright); }
.footer-bottom {
  text-align: center;
  font-size: 12.5px;
  color: var(--text-faint);
  padding-top: 24px;
  border-top: 1px solid var(--bg-card-border);
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  padding: 64px 0 20px;
  text-align: center;
}
.page-hero h1 { font-size: 34px; margin-bottom: 12px; }
.page-hero p { color: var(--text-muted); max-width: 560px; margin: 0 auto; font-size: 15px; }

/* ---------- Service detail rows ---------- */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--bg-card-border);
}
.service-row:last-child { border-bottom: none; }
.service-row.reverse .service-text { order: 2; }
.service-row.reverse .service-visual { order: 1; }
@media (max-width: 860px) {
  .service-row, .service-row.reverse { grid-template-columns: 1fr; }
  .service-row.reverse .service-text,
  .service-row.reverse .service-visual { order: unset; }
}
.service-visual {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  border: 1px solid var(--bg-card-border);
  background: linear-gradient(150deg, #16121a 0%, #0b0d13 60%, #0a1016 100%);
  overflow: hidden;
  position: relative;
}
.service-visual img { width: 100%; height: 100%; object-fit: cover; }
.service-text .card-icon { margin-bottom: 20px; }
.service-text h3 { font-size: 24px; margin-bottom: 12px; font-family: var(--font-display); }
.service-text > p { color: var(--text-muted); font-size: 15px; margin-bottom: 20px; }
.feature-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.feature-tags span {
  font-size: 12.5px;
  padding: 6px 12px;
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius);
  color: var(--text-muted);
}
.service-text h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--rose-bright); margin-bottom: 12px; }
.service-text ul { margin: 0; padding-left: 18px; color: var(--text-muted); font-size: 14px; }
.service-text ul li { margin-bottom: 6px; }

/* ---------- Values list (about page) ---------- */
.values-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.values-row .visual {
  aspect-ratio: 4/3.4;
  border-radius: var(--radius);
  border: 1px solid var(--bg-card-border);
  background: linear-gradient(160deg, #1a1216 0%, #0c0c10 60%);
  overflow: hidden;
}
.values-row .visual img { width: 100%; height: 100%; object-fit: cover; }
.value-item { display: flex; gap: 14px; margin-bottom: 22px; }
.value-check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1px solid var(--rose-bright);
  color: var(--rose-bright);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  margin-top: 2px;
}
.value-item h4 { font-size: 15.5px; margin-bottom: 4px; font-weight: 600; }
.value-item p { font-size: 13.5px; color: var(--text-muted); margin: 0; }
@media (max-width: 860px) { .values-row { grid-template-columns: 1fr; } }

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 56px;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }
.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
}
.contact-info-card .card-icon { margin: 0 auto 14px; }
.contact-info-card h4 { font-size: 14px; margin-bottom: 6px; }
.contact-info-card p { font-size: 13.5px; color: var(--rose-bright); margin: 0; }

.contact-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
}
@media (max-width: 860px) { .contact-main { grid-template-columns: 1fr; } }

.form-card, .info-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius);
  padding: 32px;
}
.form-card h3 { font-size: 19px; margin-bottom: 22px; font-family: var(--font-body); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13.5px; margin-bottom: 8px; color: var(--text-muted); }
.field input, .field select, .field textarea {
  width: 100%;
  background: #0d0d0f;
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--rose);
}
.field textarea { resize: vertical; min-height: 110px; }

.info-card { margin-bottom: 20px; }
.info-card h4 { font-size: 15px; margin-bottom: 10px; }
.info-card p { font-size: 13.5px; color: var(--text-muted); }
.whatsapp-card {
  background: var(--rose);
  color: #1a0d10;
  border: none;
}
.whatsapp-card h4 { color: #1a0d10; }
.whatsapp-card p { color: #3a2126; margin-bottom: 18px; }
.whatsapp-card .btn { background: #1a0d10; color: var(--rose-bright); width: 100%; justify-content: center; }
.whatsapp-card .btn:hover { background: #2a1418; }

.form-note {
  font-size: 13px;
  color: var(--text-faint);
  margin-top: 14px;
}

/* focus visibility */
.icon {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: -0.14em;
  flex-shrink: 0;
}
.card-icon .icon { width: 20px; height: 20px; stroke-width: 1.5; }
.call-btn .icon { width: 14px; height: 14px; stroke-width: 1.8; }
.nav-toggle .icon { width: 22px; height: 22px; stroke-width: 1.4; }
.value-check .icon { width: 12px; height: 12px; stroke-width: 2; }
.footer-grid p .icon { width: 13px; height: 13px; stroke-width: 1.6; vertical-align: -0.1em; margin-right: 2px; }
.contact-info-card .card-icon .icon { width: 19px; height: 19px; }
.btn .icon, .whatsapp-card .btn .icon { width: 15px; height: 15px; }

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--rose-bright);
  outline-offset: 2px;
}

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