/* ═══════════════════════════════════════════════════════════
   PARALEL PARK — CSS (PHP Versiyonu)
   Tailwind/shadcn tasarımının düz CSS karşılığı
════════════════════════════════════════════════════════════ */

/* ── Renk Değişkenleri (orijinal oklch değerleri) ─────── */
:root {
  --radius: 0.625rem;
  --background:        #1f1e1a;
  --foreground:        #f5f4f0;
  --card:              #2a2924;
  --card-foreground:   #f5f4f0;
  --primary:           #d4c46a;
  --primary-foreground:#1f1e1a;
  --secondary:         #353328;
  --secondary-foreground: #f5f4f0;
  --muted:             #302f28;
  --muted-foreground:  #9c9880;
  --accent:            #5db870;
  --accent-foreground: #111210;
  --border:            #3d3c34;
  --input:             #3d3c34;
  --ring:              #d4c46a;
  --shadow-glow:       0 20px 60px -20px rgba(212,196,106,0.4);
  --shadow-card:       0 10px 30px -10px rgba(0,0,0,0.5);
}

/* ── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  min-height: 100vh;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── Helpers ──────────────────────────────────────────── */
.container {
  max-width: 72rem;
  margin-inline: auto;
  padding-inline: 1rem;
}

.text-primary { color: var(--primary); }
.text-accent  { color: var(--accent); }

/* ── İkonlar ──────────────────────────────────────────── */
.icon-xs { width: 12px; height: 12px; }
.icon-sm { width: 16px; height: 16px; }
.icon-md { width: 20px; height: 20px; }
.icon-lg { width: 26px; height: 26px; }

/* ══════════════════════════════════════════════════════
   LOGO
══════════════════════════════════════════════════════ */
.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.logo-icon {
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius);
  background: var(--primary);
  flex-shrink: 0;
  overflow: hidden;
}

.logo-bar {
  position: absolute;
  top: 0.25rem;
  bottom: 0.25rem;
  width: 4px;
  background: var(--primary-foreground);
  border-radius: 9999px;
}

.logo-bar-left  { left: 0.625rem; }
.logo-bar-right { right: 0.625rem; }

.logo-name {
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.logo-tagline {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted-foreground);
}

/* ══════════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(31,30,26,.85);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-phone {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  transition: opacity .2s;
}

.header-phone:hover { opacity: .8; }

@media (min-width: 640px) {
  .header-phone { display: flex; }
}

/* ══════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.30;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--background) 0%, rgba(31,30,26,.8) 50%, transparent 100%);
}

.hero-content {
  position: relative;
  padding-block: 5rem;
}

@media (min-width: 1024px) {
  .hero-content { padding-block: 8rem; }
}

.hero-inner { max-width: 36rem; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  background: rgba(212,196,106,.1);
  border: 1px solid rgba(212,196,106,.2);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
}

.hero-title {
  margin-top: 1.5rem;
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.hero-desc {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 36rem;
}

.hero-cta {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .hero-cta { flex-direction: row; }
}

.hero-features {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ══════════════════════════════════════════════════════
   BUTONLAR
══════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  border-radius: calc(var(--radius) + 4px);
  font-weight: 700;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s;
  border: none;
}

.btn:hover { transform: scale(1.02); }

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-glow);
}

.btn-accent {
  background: var(--accent);
  color: var(--accent-foreground);
}

.btn-outline {
  background: var(--card);
  color: var(--foreground);
  border: 1px solid var(--border);
}

/* ══════════════════════════════════════════════════════
   ANA İÇERİK
══════════════════════════════════════════════════════ */
.main-content {
  padding-block: 4rem;
}

@media (min-width: 1024px) {
  .main-content { padding-block: 6rem; }
}

.main-content .container {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

/* Bölüm Başlığı */
.section-intro {
  text-align: center;
  max-width: 36rem;
  margin-inline: auto;
}

.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--primary);
  font-weight: 600;
}

.section-main-title {
  margin-top: 0.75rem;
  font-size: clamp(1.875rem, 4vw, 2.25rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.section-main-desc {
  margin-top: 0.75rem;
  color: var(--muted-foreground);
}

/* ── Belge Bölümü ─────────────────────────────────── */
.doc-section { display: flex; flex-direction: column; gap: 1.25rem; }

.section-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius);
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.section-title {
  font-size: 1.25rem;
  font-weight: 700;
}

/* ── Belge Kartları Grid ──────────────────────────── */
.doc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

@media (min-width: 1024px) {
  .doc-grid { grid-template-columns: repeat(4, 1fr); }
}

.doc-card {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1.25rem;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  cursor: default;
}

.doc-card:hover {
  border-color: rgba(212,196,106,.5);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.doc-card-circle {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  width: 5rem;
  height: 5rem;
  border-radius: 9999px;
  background: rgba(212,196,106,.05);
  transition: background .2s;
}

.doc-card:hover .doc-card-circle { background: rgba(212,196,106,.10); }

.doc-card-inner { position: relative; }

.doc-code {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.03em;
}

.doc-desc {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ── CTA Kutusu ───────────────────────────────────── */
.cta-box {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) + 12px);
  border: 1px solid rgba(212,196,106,.3);
  padding: 2.5rem;
  text-align: center;
}

@media (min-width: 1024px) {
  .cta-box { padding: 3.5rem; }
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary), #c2943a);
  opacity: 0.08;
}

.cta-inner { position: relative; display: flex; flex-direction: column; align-items: center; gap: 1rem; }

.cta-title {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.cta-desc {
  color: var(--muted-foreground);
  max-width: 32rem;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .cta-actions { flex-direction: row; }
}

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
.site-footer {
  border-top: 1px solid var(--border);
  padding-block: 2.5rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 640px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-location,
.footer-copy {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

/* ══════════════════════════════════════════════════════
   FLOATING BUTTONS
══════════════════════════════════════════════════════ */
.floating-actions {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.fab {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .15s;
  box-shadow: var(--shadow-card);
}

.fab:hover { transform: scale(1.1); }

.fab-accent {
  background: var(--accent);
  color: var(--accent-foreground);
}

.fab-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-glow);
}

/* ── Lucide icon sınıfları için boyut override ─────── */
.section-icon svg,
.section-icon i {
  width: 20px !important;
  height: 20px !important;
}

.fab svg, .fab i {
  width: 26px !important;
  height: 26px !important;
}
