/* ============================================================
   GOTAK Yol Arkadaşım – AŞKIN TAKSİ
   gotakyolarkadaşım.com
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ── Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --c-bg: #0a0c10;
  --c-bg2: #111318;
  --c-bg3: #1a1e28;
  --c-card: #161b26;
  --c-border: rgba(255, 255, 255, .08);
  --c-text: #e8eaf0;
  --c-muted: #8a91a8;
  --c-accent: #f5c518;
  /* amber / taxi yellow */
  --c-accent2: #e6b800;
  --c-green: #25d366;
  --c-green-d: #1db954;
  --c-white: #ffffff;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-card: 0 4px 32px rgba(0, 0, 0, .45);
  --shadow-glow: 0 0 40px rgba(245, 197, 24, .15);
  --transition: .2s ease;
  --font: 'Inter', system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

ul {
  list-style: none;
}

/* ── Container ── */
.container {
  width: min(1180px, 100% - 2.5rem);
  margin-inline: auto;
}

/* ── Typography ── */
.section-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.02em;
}

.section-sub {
  margin-top: .6rem;
  color: var(--c-muted);
  font-size: .95rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  font-family: var(--font);
  font-weight: 700;
  font-size: .9rem;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
  padding: .85rem 1.6rem;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-accent {
  background: var(--c-accent);
  color: #111;
}

.btn-accent:hover {
  background: var(--c-accent2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-ghost {
  background: rgba(255, 255, 255, .07);
  color: var(--c-text);
  border: 1px solid var(--c-border);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .12);
}

.btn-green {
  background: var(--c-green);
  color: #fff;
}

.btn-green:hover {
  background: var(--c-green-d);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--c-bg3);
  color: var(--c-text);
  border: 1px solid var(--c-border);
}

.btn-dark:hover {
  background: var(--c-card);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: var(--radius-lg);
}

/* ── Badge ── */
.badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  padding: .25rem .7rem;
  border-radius: 999px;
}

.badge-accent {
  background: rgba(245, 197, 24, .15);
  color: var(--c-accent);
  border: 1px solid rgba(245, 197, 24, .3);
}

.badge-green {
  background: rgba(37, 211, 102, .12);
  color: var(--c-green);
  border: 1px solid rgba(37, 211, 102, .3);
}

/* ── Card ── */
.card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  transition: var(--transition);
}

.card:hover {
  border-color: rgba(245, 197, 24, .25);
  box-shadow: var(--shadow-card);
}

/* ─────────────────────────────────────────
   HEADER
───────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 12, 16, .92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--c-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: .85rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
}

.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--c-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-line1 {
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: -.01em;
  color: #e53935;
  /* Kırmızı */
  white-space: nowrap;
}

.logo-line2 {
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .03em;
  color: var(--c-accent);
  /* Altın sarısı */
  text-transform: uppercase;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav a {
  font-size: .88rem;
  font-weight: 500;
  color: var(--c-muted);
  transition: var(--transition);
}

.nav a:hover,
.nav a.active {
  color: var(--c-white);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: .6rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .4rem;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--c-bg2);
  border-top: 1px solid var(--c-border);
  padding: 1.2rem;
  gap: .8rem;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-size: 1rem;
  font-weight: 600;
  padding: .5rem 0;
  border-bottom: 1px solid var(--c-border);
}

.mobile-nav a:last-child {
  border: none;
}

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: 5rem 4rem;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(245, 197, 24, .08) 0%, transparent 65%),
    var(--c-bg);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,255,255,.03)'/%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1.2rem;
}

.hero-title {
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.04em;
}

.hero-title .highlight {
  color: var(--c-accent);
}

.hero-sub {
  margin-top: 1.1rem;
  color: var(--c-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero-quick {
  margin-top: 2.4rem;
}

.hero-quick-label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--c-muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .8rem;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .6rem;
}

.quick-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
  padding: .8rem .5rem;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  cursor: pointer;
  font-family: var(--font);
  font-size: .78rem;
  font-weight: 600;
  color: var(--c-text);
  transition: var(--transition);
}

.quick-btn:hover {
  background: rgba(245, 197, 24, .1);
  border-color: rgba(245, 197, 24, .4);
  color: var(--c-accent);
}

.quick-btn .icon {
  font-size: 1.3rem;
}

/* Hero visual */
.hero-visual {
  position: relative;
}

.hero-img-wrap {
  border-radius: var(--radius-xl);
  overflow: visible;
  background: transparent;
  border: none;
  box-shadow: none;
}

.hero-img-wrap img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-xl);
  display: block;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .6rem;
  margin-top: .8rem;
}

.hero-stat {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: .9rem;
  text-align: center;
}

.hero-stat strong {
  display: block;
  font-size: 1.1rem;
  color: var(--c-accent);
  font-weight: 900;
}

.hero-stat span {
  font-size: .72rem;
  color: var(--c-muted);
}

/* ─────────────────────────────────────────
   TRUST BAR
───────────────────────────────────────── */
.trust-bar {
  border-block: 1px solid var(--c-border);
  background: var(--c-bg2);
  padding-block: 1.1rem;
  overflow: hidden;
}

.trust-inner {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .83rem;
  font-weight: 600;
  color: var(--c-muted);
  white-space: nowrap;
}

.trust-item .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-green);
  flex-shrink: 0;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .4
  }
}

/* ─────────────────────────────────────────
   SERVICES
───────────────────────────────────────── */
.section {
  padding-block: 5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.service-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  transition: var(--transition);
  cursor: default;
}

.service-card:hover {
  border-color: rgba(245, 197, 24, .3);
  box-shadow: 0 8px 40px rgba(0, 0, 0, .5), 0 0 0 1px rgba(245, 197, 24, .1);
  transform: translateY(-4px);
}

.service-card a {
  display: contents;
}

.svc-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(245, 197, 24, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: .4rem;
}

.svc-title {
  font-size: 1rem;
  font-weight: 700;
}

.svc-desc {
  font-size: .83rem;
  color: var(--c-muted);
  line-height: 1.55;
}

.svc-link {
  font-size: .8rem;
  color: var(--c-accent);
  font-weight: 600;
  margin-top: auto;
}

/* ─────────────────────────────────────────
   VEHICLES
───────────────────────────────────────── */
.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.4rem;
}

.vehicle-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.vehicle-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.vehicle-card.featured {
  border-color: rgba(245, 197, 24, .4);
  box-shadow: 0 0 0 1px rgba(245, 197, 24, .1);
}

.vehicle-img {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--c-bg3), var(--c-bg2));
  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;
  position: absolute;
  inset: 0;
}

.vehicle-body {
  padding: 1.4rem;
}

.vehicle-name {
  font-size: 1.1rem;
  font-weight: 800;
}

.vehicle-tags {
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
  margin-top: .6rem;
}

.vtag {
  font-size: .73rem;
  font-weight: 600;
  padding: .22rem .6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--c-border);
  color: var(--c-muted);
}

.vehicle-desc {
  margin-top: .8rem;
  font-size: .83rem;
  color: var(--c-muted);
}

.vehicle-body .btn {
  width: 100%;
  margin-top: 1.2rem;
}

/* ─────────────────────────────────────────
   WHY US
───────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: .9rem;
  margin-top: 1.8rem;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  padding: 1rem 1.2rem;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.why-item:hover {
  border-color: rgba(245, 197, 24, .25);
}

.why-check {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(37, 211, 102, .12);
  color: var(--c-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  flex-shrink: 0;
  margin-top: .05rem;
}

.why-text strong {
  display: block;
  font-weight: 700;
  font-size: .9rem;
}

.why-text span {
  font-size: .8rem;
  color: var(--c-muted);
}

.cta-box {
  background: linear-gradient(135deg, var(--c-bg3), var(--c-card));
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  padding: 2rem;
}

.cta-box h3 {
  font-size: 1.3rem;
  font-weight: 800;
}

.cta-box p {
  margin-top: .5rem;
  color: var(--c-muted);
  font-size: .88rem;
}

.cta-box .btn-stack {
  display: flex;
  flex-direction: column;
  gap: .7rem;
  margin-top: 1.5rem;
}

.cta-box .btn {
  width: 100%;
}

/* ─────────────────────────────────────────
   REVIEWS
───────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
}

.review-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
}

.review-stars {
  color: var(--c-accent);
  font-size: 1rem;
  letter-spacing: .05em;
}

.review-text {
  margin-top: .8rem;
  font-size: .86rem;
  color: var(--c-text);
  line-height: 1.6;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-top: 1rem;
}

.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--c-bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-accent);
  flex-shrink: 0;
}

.review-name {
  font-size: .85rem;
  font-weight: 700;
}

.review-date {
  font-size: .75rem;
  color: var(--c-muted);
}

.google-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.google-score {
  font-size: 2rem;
  font-weight: 900;
  color: var(--c-accent);
}

.google-score span {
  font-size: 1rem;
  color: var(--c-muted);
  font-weight: 400;
}

/* ─────────────────────────────────────────
   REGIONS / SEO
───────────────────────────────────────── */
.regions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: .6rem;
  margin-top: 2rem;
}

.region-link {
  display: block;
  text-align: center;
  padding: .75rem .5rem;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  font-size: .83rem;
  font-weight: 600;
  transition: var(--transition);
}

.region-link:hover {
  border-color: var(--c-accent);
  color: var(--c-accent);
}

/* ─────────────────────────────────────────
   FAQ
───────────────────────────────────────── */
.faq-list {
  max-width: 780px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

.faq-item {
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: var(--c-card);
  border: none;
  text-align: left;
  font-family: var(--font);
  font-size: .92rem;
  font-weight: 700;
  color: var(--c-text);
  padding: 1.15rem 1.3rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--c-bg3);
}

.faq-question.open {
  color: var(--c-accent);
}

.faq-arrow {
  transition: transform .25s;
  flex-shrink: 0;
}

.faq-question.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 1rem 1.3rem 1.2rem;
  font-size: .87rem;
  color: var(--c-muted);
  line-height: 1.65;
  background: var(--c-card);
  border-top: 1px solid var(--c-border);
}

.faq-answer.open {
  display: block;
}

/* ─────────────────────────────────────────
   CONTACT
───────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: 1rem 1.2rem;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  font-size: .88rem;
  transition: var(--transition);
}

.contact-row:hover {
  border-color: rgba(245, 197, 24, .25);
}

.contact-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-row strong {
  display: block;
  font-weight: 700;
  font-size: .8rem;
  color: var(--c-muted);
}

.contact-row a {
  color: var(--c-accent);
  font-weight: 600;
}

.map-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--c-border);
  aspect-ratio: 16/10;
  background: var(--c-card);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--c-muted);
  font-size: .9rem;
}

/* Form */
.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.form-group label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--c-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--c-bg3);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: .85rem 1rem;
  color: var(--c-text);
  font-family: var(--font);
  font-size: .9rem;
  transition: var(--transition);
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(245, 197, 24, .1);
}

.form-group textarea {
  min-height: 110px;
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.footer {
  background: var(--c-bg2);
  border-top: 1px solid var(--c-border);
  padding-block: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
}

.footer-brand p {
  margin-top: .8rem;
  font-size: .83rem;
  color: var(--c-muted);
  line-height: 1.6;
}

.footer-col h4 {
  font-size: .88rem;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.footer-col ul li a {
  font-size: .82rem;
  color: var(--c-muted);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--c-accent);
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .8rem;
  color: var(--c-muted);
}

.footer-bottom a {
  color: var(--c-muted);
}

.footer-bottom a:hover {
  color: var(--c-accent);
}

/* ─────────────────────────────────────────
   FLOATING WHATSAPP
───────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 90px;
  right: 1.2rem;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: .5rem;
  background: var(--c-green);
  color: #fff;
  font-weight: 700;
  font-size: .82rem;
  padding: .75rem 1.1rem;
  border-radius: 999px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
  transition: var(--transition);
  animation: float-in .4s ease both;
}

.wa-float:hover {
  background: var(--c-green-d);
  transform: scale(1.05);
}

@keyframes float-in {
  from {
    opacity: 0;
    transform: translateY(20px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

/* ─────────────────────────────────────────
   MOBILE STICKY BAR
───────────────────────────────────────── */
.sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: var(--c-bg2);
  border-top: 1px solid var(--c-border);
  grid-template-columns: 1fr 1fr;
}

.sticky-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: 1rem;
  font-weight: 700;
  font-size: .9rem;
  transition: var(--transition);
}

.sticky-bar .s-call {
  color: var(--c-text);
  background: var(--c-bg3);
}

.sticky-bar .s-call:hover {
  background: var(--c-card);
}

.sticky-bar .s-wa {
  color: #fff;
  background: var(--c-green);
}

.sticky-bar .s-wa:hover {
  background: var(--c-green-d);
}

/* ─────────────────────────────────────────
   INNER PAGE HERO (sub-pages)
───────────────────────────────────────── */
.inner-hero {
  background: linear-gradient(135deg, var(--c-bg2), var(--c-bg));
  border-bottom: 1px solid var(--c-border);
  padding-block: 3.5rem 2.5rem;
  text-align: center;
}

.inner-hero .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  font-size: .8rem;
  color: var(--c-muted);
  margin-bottom: 1rem;
}

.inner-hero .breadcrumb a {
  color: var(--c-accent);
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }

  .hero-img-wrap {
    aspect-ratio: 16/9;
    max-height: 280px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-block: 3rem 2rem;
  }

  .quick-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .sticky-bar {
    display: grid;
  }

  .wa-float {
    bottom: 85px;
  }

  body {
    padding-bottom: 62px;
  }

  .hero-cta .btn-lg {
    width: 100%;
  }
}

@media (max-width: 400px) {
  .quick-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Page body padding when sticky bar is visible */
@media (max-width: 600px) {
  main {
    padding-bottom: 0;
  }
}

/* ═══════════════════════════════════════════════
   WHATSAPP ÖN FORM MODALI
═══════════════════════════════════════════════ */
.wa-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}

.wa-modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.wa-modal {
  background: var(--c-bg2);
  border: 1px solid rgba(245, 197, 24, .2);
  border-radius: var(--radius-xl);
  width: min(520px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .7), 0 0 0 1px rgba(245, 197, 24, .08);
  transform: translateY(24px) scale(.97);
  transition: transform .28s cubic-bezier(.34, 1.56, .64, 1);
  scrollbar-width: thin;
  scrollbar-color: var(--c-border) transparent;
}

.wa-modal-backdrop.open .wa-modal {
  transform: translateY(0) scale(1);
}

/* Modal Header */
.wa-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 1.6rem 1rem;
  border-bottom: 1px solid var(--c-border);
  position: sticky;
  top: 0;
  background: var(--c-bg2);
  z-index: 1;
}

.wa-modal-head-left {
  display: flex;
  align-items: center;
  gap: .8rem;
}

.wa-modal-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(37, 211, 102, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.wa-modal-title {
  font-size: 1rem;
  font-weight: 800;
}

.wa-modal-subtitle {
  font-size: .76rem;
  color: var(--c-muted);
  margin-top: .1rem;
}

.wa-modal-close {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--c-border);
  color: var(--c-muted);
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}

.wa-modal-close:hover {
  background: rgba(255, 255, 255, .12);
  color: var(--c-text);
}

/* Form Body */
.wa-modal-body {
  padding: 1.4rem 1.6rem 1.8rem;
}

/* Servis tipi rozeti */
.wa-modal-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .75rem;
  font-weight: 700;
  padding: .3rem .8rem;
  border-radius: 999px;
  background: rgba(245, 197, 24, .1);
  color: var(--c-accent);
  border: 1px solid rgba(245, 197, 24, .25);
  margin-bottom: 1.2rem;
}

/* Form Row & Groups */
.wa-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem;
}

.wa-form-row.single {
  grid-template-columns: 1fr;
}

.wa-form-row.triple {
  grid-template-columns: 1fr 1fr 1fr;
}

.wa-form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: .85rem;
}

.wa-form-group label {
  font-size: .78rem;
  font-weight: 700;
  color: var(--c-muted);
  letter-spacing: .02em;
  text-transform: uppercase;
}

.wa-form-group label span.req {
  color: var(--c-accent);
  margin-left: 2px;
}

.wa-input,
.wa-select,
.wa-textarea {
  font-family: var(--font);
  font-size: .9rem;
  color: var(--c-text);
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: .75rem 1rem;
  width: 100%;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  -webkit-appearance: none;
}

.wa-input::placeholder,
.wa-textarea::placeholder {
  color: var(--c-muted);
  font-size: .85rem;
}

.wa-input:focus,
.wa-select:focus,
.wa-textarea:focus {
  border-color: rgba(245, 197, 24, .5);
  box-shadow: 0 0 0 3px rgba(245, 197, 24, .08);
  background: rgba(245, 197, 24, .03);
}

.wa-select {
  cursor: pointer;
}

.wa-select option {
  background: #1a1e28;
  color: var(--c-text);
}

.wa-textarea {
  resize: vertical;
  min-height: 72px;
  line-height: 1.5;
}

/* Toggle Chips (Havalimanı yönü gibi) */
.wa-chips {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}

.wa-chip {
  padding: .45rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--c-border);
  background: rgba(255, 255, 255, .04);
  color: var(--c-muted);
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font);
}

.wa-chip.active,
.wa-chip:hover {
  background: rgba(245, 197, 24, .15);
  border-color: rgba(245, 197, 24, .5);
  color: var(--c-accent);
}

/* Divider */
.wa-divider {
  height: 1px;
  background: var(--c-border);
  margin: 1rem 0;
}

/* Footer */
.wa-modal-foot {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-top: 1.4rem;
}

.wa-modal-foot .btn {
  width: 100%;
  font-size: .95rem;
  padding: .95rem;
}

.wa-note {
  text-align: center;
  font-size: .74rem;
  color: var(--c-muted);
  margin-top: .3rem;
}

/* Progress dots */
.wa-progress {
  display: flex;
  align-items: center;
  gap: .35rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.wa-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-border);
  transition: var(--transition);
}

.wa-dot.active {
  background: var(--c-accent);
  transform: scale(1.3);
}

.wa-dot.done {
  background: var(--c-green);
}

/* Responsive */
@media (max-width: 500px) {
  .wa-form-row {
    grid-template-columns: 1fr;
  }

  .wa-form-row.triple {
    grid-template-columns: 1fr 1fr;
  }

  .wa-modal-head {
    padding: 1.1rem 1.2rem .8rem;
  }

  .wa-modal-body {
    padding: 1.1rem 1.2rem 1.5rem;
  }
}