/* Akyazı Belediye Taksi — antrasit + taksi sarısı */
:root {
  --bg-deep: #141416;
  --bg: #1c1d21;
  --bg-elevated: #24252b;
  --bg-card: #2a2b32;
  --border: rgba(255, 214, 10, 0.12);
  --yellow: #ffd60a;
  --yellow-dim: #c9a908;
  --yellow-glow: rgba(255, 214, 10, 0.35);
  --text: #f5f0e6;
  --text-muted: rgba(245, 240, 230, 0.62);
  --font: "Outfit", system-ui, sans-serif;
  --radius: 14px;
  --radius-lg: 22px;
  --header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg-deep);
  min-height: 100vh;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  z-index: 9999;
}

/* Header + tam genişlik kapak görseli */
.site-header {
  position: relative;
  z-index: 100;
}

.site-header-bar {
  position: sticky;
  top: 0;
  z-index: 101;
  background: linear-gradient(180deg, rgba(20, 20, 22, 0.97) 0%, rgba(20, 20, 22, 0.9) 100%);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  text-transform: lowercase;
}

.logo-mark {
  flex-shrink: 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--yellow) 0%, #e6b800 100%);
  box-shadow: 0 0 24px var(--yellow-glow);
  overflow: hidden;
  text-transform: none;
}

.logo-mark-letters {
  display: block;
  font-size: 1.0625rem;
  font-weight: 800;
  letter-spacing: -0.1em;
  line-height: 1;
  color: var(--bg-deep);
  transform: scale(1.26);
  transform-origin: center center;
}

.logo-accent {
  color: var(--yellow);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem 1.5rem;
}

.site-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--yellow);
}

.nav-cta {
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--bg-deep) !important;
  font-weight: 600 !important;
}

.nav-cta:hover {
  color: var(--bg-deep) !important;
  filter: brightness(1.05);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-elevated);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--yellow);
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.site-header-cover {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(200px, 34vh, 380px);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.site-header-cover-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  transform: scale(1.02);
}

.site-header-cover-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
      180deg,
      rgba(20, 20, 22, 0.45) 0%,
      rgba(20, 20, 22, 0.25) 35%,
      rgba(20, 20, 22, 0.75) 100%
    ),
    radial-gradient(ellipse 85% 70% at 50% 50%, rgba(20, 20, 22, 0.2) 0%, rgba(20, 20, 22, 0.65) 100%);
  pointer-events: none;
}

.site-header-cover-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1.25rem;
  max-width: 720px;
}

.site-header-cover-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 240, 230, 0.85);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.8);
}

.site-header-cover-name {
  margin: 0;
  font-size: clamp(1.85rem, 5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--yellow);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.85), 0 0 40px var(--yellow-glow);
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(3rem, 8vw, 5.5rem) 1.25rem clamp(4rem, 10vw, 6rem);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -15%;
  width: min(70vw, 520px);
  height: min(70vw, 520px);
  background: radial-gradient(circle, var(--yellow-glow) 0%, transparent 65%);
  opacity: 0.45;
  pointer-events: none;
}

.hero-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy {
    order: 1;
  }

  .hero-visual {
    order: 0;
    justify-self: center;
  }

  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-stats {
    justify-content: center;
  }
}

.eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  margin: 0 0 1rem;
}

.hero h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(2.25rem, 5vw, 3.35rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero-line {
  color: var(--yellow);
  text-shadow: 0 0 40px var(--yellow-glow);
}

.lead {
  margin: 0 0 2rem;
  max-width: 32ch;
  color: var(--text-muted);
  font-size: 1.05rem;
}

@media (max-width: 900px) {
  .lead {
    margin-left: auto;
    margin-right: auto;
  }
}

.hero-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--yellow);
  color: var(--bg-deep);
  box-shadow: 0 8px 32px rgba(255, 214, 10, 0.25);
}

.btn-primary:hover {
  box-shadow: 0 12px 40px rgba(255, 214, 10, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--yellow);
  border: 2px solid rgba(255, 214, 10, 0.45);
}

.btn-ghost:hover {
  background: rgba(255, 214, 10, 0.08);
  border-color: var(--yellow);
}

/* Hero görsel alanı — soyut rota / ışık kompozisyonu */
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.hero-art {
  position: relative;
  width: min(100%, 380px);
  aspect-ratio: 400 / 420;
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, rgba(36, 37, 43, 0.95) 0%, rgba(20, 21, 24, 0.98) 100%);
  border: 1px solid var(--border);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 214, 10, 0.06);
  overflow: hidden;
}

.hero-art-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 50% 45%, var(--yellow-glow) 0%, transparent 55%);
  opacity: 0.5;
  pointer-events: none;
}

.hero-art-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-route {
  fill: none;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: hero-draw 2.2s ease forwards;
}

.hero-route--b {
  animation-delay: 0.35s;
  animation-duration: 2.6s;
}

@keyframes hero-draw {
  to {
    stroke-dashoffset: 0;
  }
}

.hero-orbit {
  animation: hero-ring 5s ease-in-out infinite;
}

.hero-core {
  filter: drop-shadow(0 0 18px rgba(255, 214, 10, 0.55));
  animation: hero-core 3.2s ease-in-out infinite;
}

@keyframes hero-ring {
  0%,
  100% {
    opacity: 0.45;
  }
  50% {
    opacity: 1;
  }
}

@keyframes hero-core {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.75;
  }
}

.hero-art-panel {
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  width: calc(100% - 2.5rem);
  padding: 0.85rem 1rem;
  text-align: center;
  border-radius: 12px;
  background: rgba(20, 20, 22, 0.72);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 214, 10, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.hero-art-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.25rem;
}

.hero-art-line {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
}

@media (prefers-reduced-motion: reduce) {
  .hero-route {
    animation: none;
    stroke-dashoffset: 0;
  }

  .hero-orbit,
  .hero-core {
    animation: none;
  }
}

.hero-stats {
  display: flex;
  gap: 2rem;
}

.stat {
  text-align: center;
}

.stat strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--yellow);
  line-height:1.2;
}

.stat span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* Sections */
.section {
  padding: clamp(3.5rem, 7vw, 5rem) 1.25rem;
}

.section:nth-of-type(odd) {
  background: var(--bg);
}

.section:nth-of-type(even) {
  background: var(--bg-deep);
}

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--yellow);
}

.section-sub {
  margin: 0 0 2.5rem;
  max-width: 42ch;
  color: var(--text-muted);
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 768px) {
  .feature-list {
    grid-template-columns: 1fr;
  }
}

.feature-list li {
  padding: 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.feature-list li:hover {
  border-color: rgba(255, 214, 10, 0.35);
  transform: translateY(-2px);
}

.feature-icon {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--yellow-dim);
  margin-bottom: 1rem;
}

.feature-list h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--yellow);
}

.feature-list p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Yorumlar */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

@media (max-width: 900px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
    max-width: 36rem;
    margin: 0 auto;
  }
}

.testimonial-card {
  position: relative;
  margin: 0;
  padding: 1.75rem 1.75rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 0.85rem;
  right: 1.25rem;
  font-size: 3.25rem;
  line-height: 1;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--yellow);
  opacity: 0.12;
  pointer-events: none;
}

.testimonial-card:hover {
  border-color: rgba(255, 214, 10, 0.3);
  transform: translateY(-2px);
}

.testimonial-stars {
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  color: var(--yellow);
  margin-bottom: 0.85rem;
  line-height: 1;
}

.testimonial-quote {
  margin: 0 0 1.1rem;
  padding: 0;
  border: none;
}

.testimonial-quote p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text);
  font-weight: 400;
}

.testimonial-meta {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--yellow-dim);
  letter-spacing: 0.02em;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-card-wide {
  grid-column: 1 / -1;
}

@media (max-width: 480px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .contact-card-wide {
    grid-column: 1;
  }
}

.contact-card {
  padding: 1.5rem 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.contact-card h3 {
  margin: 0 0 0.65rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-card a {
  color: var(--yellow);
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  word-break: break-word;
}

.contact-card a:hover {
  text-decoration: underline;
}

.owner-name {
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--yellow);
}

.owner-note {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 1.25rem;
  background: var(--bg-deep);
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-brand {
  margin: 0;
  font-weight: 600;
  color: var(--yellow);
  text-transform: lowercase;
  letter-spacing: -0.02em;
}

.footer-copy {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Mobile nav */
@media (max-width: 640px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    gap: 0;
    background: rgba(20, 20, 22, 0.98);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--border);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .site-nav a {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 1.1rem;
  }

  .site-nav .nav-cta {
    margin-top: 1rem;
    text-align: center;
    justify-content: center;
  }
}
