/* ==========================================================================
   Değişkenler
   ========================================================================== */
:root {
  --accent: #d4ae3d;
  --accent-dark: #b88900;
  --accent-light: #f7f3e8;
  --bg: #ffffff;
  --bg-alt: #f7f7f8;
  --bg-dark: #1a1a1a;
  --text: #1a1a1a;
  --text-muted: #62666f;
  --border: #e2e0dc;
  --radius: 8px;
  --shadow: 0 1px 3px rgba(20, 20, 20, 0.08);
  --shadow-lg: 0 6px 18px rgba(20, 20, 20, 0.14);
  --container: 1160px;
  --font: "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { margin: 0 0 0.5em; line-height: 1.25; }
p { margin: 0 0 1em; color: var(--text-muted); }

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

.section { padding: 72px 0; }
.section-alt { background: var(--bg-alt); }
.section-dark {
  background: var(--bg-dark);
  color: #fff;
}
.section-dark p { color: #c7c7c7; }

.eyebrow {
  display: block;
  color: var(--accent-dark);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-head { max-width: 640px; margin: 0 auto 44px; text-align: center; }
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }

/* ==========================================================================
   Butonlar
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-dark); }
.btn-outline {
  background: transparent;
  border-color: var(--text);
  color: var(--text);
}
.btn-outline:hover { border-color: var(--accent-dark); color: var(--accent-dark); }
.btn-light {
  background: #fff;
  color: var(--accent-dark);
  border-color: #fff;
}
.btn-block { width: 100%; justify-content: center; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text);
}
.logo .logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo .logo-mark svg { width: 24px; height: 24px; color: #fff; }
.logo small {
  display: block;
  font-weight: 500;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.main-nav ul { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  padding: 10px 14px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: color 0.15s ease;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--text);
  border-bottom-color: var(--accent);
}

.header-actions { display: flex; align-items: center; gap: 10px; }
.header-actions .phone-link {
  display: none;
  font-weight: 700;
  color: var(--text);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle svg { width: 22px; height: 22px; }

@media (min-width: 860px) {
  .header-actions .phone-link { display: inline-flex; align-items: center; gap: 6px; }
}

@media (max-width: 900px) {
  .main-nav {
    position: fixed;
    inset: 68px 12px auto 12px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 10px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.18s ease, opacity 0.18s ease;
  }
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 2px; }
  .main-nav a { display: block; padding: 12px 14px; }
  .nav-toggle { display: inline-flex; }
  .header-actions .btn-primary span { display: none; }
  .header-actions .btn-primary { padding: 12px; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  padding: 56px 0 72px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.1rem, 4.4vw, 3.1rem);
  letter-spacing: -0.01em;
}
.hero h1 mark {
  background: none;
  color: var(--accent);
}
.hero-lead { font-size: 1.08rem; max-width: 520px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 36px;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
}
.hero-badge svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; }

.hero-visual {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; aspect-ratio: 16 / 9; }
}

/* ==========================================================================
   Kart / Izgara bileşenleri
   ========================================================================== */
.grid {
  display: grid;
  gap: 24px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

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

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  transition: border-color 0.15s ease;
}
.card:hover { border-color: var(--accent); }
.card .icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1.5px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.card .icon-badge svg { width: 22px; height: 22px; color: var(--accent-dark); }
.card h3 { font-size: 1.08rem; }
.card p { margin-bottom: 0; font-size: 0.95rem; }
.card .price-tag {
  display: inline-block;
  margin-top: 14px;
  font-weight: 700;
  color: var(--accent-dark);
  font-size: 0.85rem;
}

/* Adım listesi */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step;
}
@media (max-width: 800px) { .steps { grid-template-columns: 1fr; } }
.step {
  position: relative;
  padding: 30px 24px 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -16px;
  left: 24px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step h3 { margin-top: 8px; font-size: 1.05rem; }

/* Bölge çipleri */
.chip-cloud { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.chip {
  padding: 8px 14px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid var(--border);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text);
}

/* Müşteri deneyimi kutuları */
.testimonial {
  border-left: 3px solid var(--accent);
  padding: 4px 0 4px 18px;
}
.testimonial p { font-style: italic; }

/* CTA bandı */
.cta-band {
  background: var(--bg-dark);
  color: #fff;
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-band h2 { margin-bottom: 6px; }
.cta-band p { color: #c7c7c7; margin-bottom: 0; }
.cta-band-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ==========================================================================
   İletişim sayfası
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.info-list { display: flex; flex-direction: column; gap: 18px; }
.info-item { display: flex; gap: 14px; }
.info-item .icon-badge {
  width: 40px; height: 40px; border-radius: 8px;
  border: 1.5px solid var(--accent); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.info-item .icon-badge svg { width: 22px; height: 22px; color: var(--accent-dark); }
.info-item strong { display: block; font-size: 0.95rem; }
.info-item span, .info-item a { color: var(--text-muted); font-size: 0.92rem; }
.info-item a:hover { color: var(--accent-dark); }

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 260px;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }

.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.form-row { margin-bottom: 16px; }
.form-row label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 6px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
  background: #fff;
}
.form-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .form-row.two { grid-template-columns: 1fr; } }
.form-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 10px; }

/* ==========================================================================
   Hakkımızda
   ========================================================================== */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 900px) { .about-hero { grid-template-columns: 1fr; } }
.stat-row { display: flex; gap: 32px; flex-wrap: wrap; margin-top: 28px; }
.stat b { display: block; font-size: 1.9rem; color: var(--accent-dark); }
.stat span { font-size: 0.85rem; color: var(--text-muted); font-weight: 600; }

.placeholder-panel {
  border: 1px dashed var(--border);
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 18px 20px;
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 600;
}

.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Galeri */
.gallery-item {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Sayfa üstü banner görseli */
.page-banner {
  aspect-ratio: 21 / 9;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-banner img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 700px) { .page-banner { aspect-ratio: 4 / 3; } }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--bg-dark);
  color: #c7c7c7;
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 {
  color: #fff;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.footer-grid ul { display: flex; flex-direction: column; gap: 10px; }
.footer-grid a, .footer-grid p { font-size: 0.9rem; color: #a9a9a9; }
.footer-grid a:hover { color: var(--accent); }
.footer-logo { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 800; margin-bottom: 12px; }
.footer-logo .logo-mark {
  width: 36px; height: 36px; border-radius: 9px; background: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.footer-logo .logo-mark svg { width: 20px; height: 20px; color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 20px;
  font-size: 0.82rem;
  color: #8a8a8a;
}

/* ==========================================================================
   Yüzen aksiyon butonları
   ========================================================================== */
.float-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 200;
}
.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: transform 0.15s ease;
}
.float-btn:hover { transform: scale(1.08); }
.float-btn svg { width: 26px; height: 26px; }
.float-btn.whatsapp { background: #25d366; color: #fff; }
.float-btn.call { background: var(--accent); color: #fff; }

/* Sayfa üstü küçük kırıntı (breadcrumb) */
.page-hero {
  padding: 44px 0 40px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.page-hero h1 { font-size: clamp(1.8rem, 3.6vw, 2.4rem); }
.page-hero p { max-width: 560px; margin: 0 auto; }
