/*
Theme Name: Sarıkamış Oto Kurtarma
Theme URI: https://example.com/
Author: OpenAI
Author URI: https://openai.com/
Description: Sarıkamış Oto Kurtarma için modern, hızlı ve WordPress uyumlu kurumsal tema.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: sarikamis-oto-kurtarma
*/

:root {
  --primary: #c1121f;
  --dark: #111827;
  --darker: #0b1220;
  --light: #f8fafc;
  --muted: #64748b;
  --accent: #f59e0b;
  --white: #ffffff;
  --border: #e5e7eb;
  --shadow: 0 10px 30px rgba(2, 6, 23, 0.08);
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { opacity: 0.92; }
.container { width: min(1140px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 72px 0; }
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  margin: 0 0 14px;
}
.section-subtitle {
  color: var(--muted);
  max-width: 720px;
  margin: 0 0 34px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.25s ease;
}
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { transform: translateY(-2px); }
.btn-outline { border: 1px solid var(--white); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.1); }

.topbar {
  background: var(--darker);
  color: var(--white);
  font-size: 14px;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  flex-wrap: wrap;
}
.topbar a { color: var(--white); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(229,231,235,0.75);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}
.logo-wrap { display: flex; align-items: center; gap: 12px; }
.site-branding h1, .site-branding p {
  margin: 0;
}
.site-title {
  font-size: 22px;
  color: var(--dark);
  font-weight: 800;
}
.site-tagline {
  font-size: 13px;
  color: var(--muted);
}
.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 22px;
  align-items: center;
}
.main-nav li { position: relative; }
.main-nav a {
  color: var(--dark);
  font-weight: 700;
}
.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  font-size: 28px;
  cursor: pointer;
}
.header-cta {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}
.phone-chip {
  background: var(--primary);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
}

.hero {
  background:
    linear-gradient(90deg, rgba(11,18,32,.82), rgba(11,18,32,.65)),
    url('assets/img/hero.jpg') center/cover no-repeat;
  color: var(--white);
}
.hero-inner {
  min-height: 78vh;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 30px;
  align-items: center;
  padding: 54px 0;
}
.hero-badge {
  display: inline-block;
  background: rgba(245, 158, 11, 0.18);
  color: #fde68a;
  border: 1px solid rgba(253, 230, 138, .35);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 700;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.05;
  margin: 0 0 16px;
}
.hero p {
  font-size: 18px;
  max-width: 640px;
  color: rgba(255,255,255,0.9);
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.hero-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.hero-card h3 { margin-top: 0; }
.hero-list { list-style: none; padding: 0; margin: 0; }
.hero-list li { padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
.hero-list li:last-child { border-bottom: 0; }

.info-grid, .services-grid, .features-grid, .blog-grid, .stats-grid {
  display: grid;
  gap: 24px;
}
.info-grid { grid-template-columns: repeat(3, 1fr); margin-top: -48px; position: relative; z-index: 5; }
.services-grid, .features-grid, .blog-grid { grid-template-columns: repeat(3, 1fr); }
.stats-grid { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}
.card h3, .card h4 { margin-top: 0; }
.icon-box {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(193,18,31,.08);
  color: var(--primary);
  font-size: 26px;
  margin-bottom: 14px;
}
.stat-card {
  text-align: center;
  background: var(--light);
  border-radius: var(--radius);
  padding: 28px 16px;
}
.stat-number {
  display: block;
  font-size: 38px;
  font-weight: 800;
  color: var(--primary);
}

.cta-band {
  background: linear-gradient(135deg, var(--primary), #7f1d1d);
  color: var(--white);
  border-radius: 30px;
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cta-band h3 { margin: 0 0 8px; font-size: clamp(24px, 4vw, 36px); }
.cta-band p { margin: 0; color: rgba(255,255,255,0.92); }

.content-wrap {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 36px;
}
.entry-card, .widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}
.entry-card h2, .entry-card h1 { margin-top: 0; }
.entry-meta {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 14px;
}
.widget-title { margin-top: 0; }
.footer {
  background: var(--darker);
  color: rgba(255,255,255,.88);
  padding: 56px 0 26px;
  margin-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
}
.footer h3, .footer h4 { color: var(--white); margin-top: 0; }
.footer a { color: rgba(255,255,255,.88); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 26px;
  padding-top: 20px;
  font-size: 14px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.form-grid .full { grid-column: 1 / -1; }
input, textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  font: inherit;
}
textarea { min-height: 130px; resize: vertical; }

@media (max-width: 991px) {
  .hero-inner, .content-wrap, .footer-grid,
  .info-grid, .services-grid, .features-grid, .blog-grid, .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .menu-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 14px 16px 18px;
  }
  .main-nav.active { display: block; }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: 14px; }
  .header-cta { display: none; }
  .hero-inner, .content-wrap, .footer-grid,
  .info-grid, .services-grid, .features-grid, .blog-grid, .stats-grid, .form-grid {
    grid-template-columns: 1fr;
  }
  .section { padding: 56px 0; }
  .cta-band { padding: 24px; }
}
