/* ============ Tokens ============ */
:root {
  --bg: #fdf9f2;
  --bg-2: #fff3dc;
  --surface: #ffffff;
  --amber: #ffcf6b;
  --amber-bright: #ffe6a6;
  --amber-ink: #b3760a;
  --navy: #22344a;
  --text: #22344a;
  --text-2: #5b6b81;
  --green: #34b972;
  --green-ink: #1f7a4d;
  --line: rgba(34,52,74,.1);
  --line-soft: rgba(34,52,74,.06);
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 16px 34px rgba(34,52,74,.1);
  --header-h: 76px;
  --font-head: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body: 'Hanken Grotesk', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 .5em;
  color: var(--navy);
}

p { margin: 0 0 1em; color: var(--text-2); }

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.icon { width: 20px; height: 20px; fill: currentColor; flex-shrink: 0; }

/* ============ Skip link ============ */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--amber-ink);
  color: #fff;
  padding: 12px 20px;
  z-index: 1000;
  border-radius: 0 0 8px 0;
  font-weight: 700;
}
.skip-link:focus {
  left: 0;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ============ Duyuru şeridi ============ */
.announcement-bar {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  height: 38px;
  padding: 0 16px;
  background: linear-gradient(90deg, var(--amber), var(--amber-bright));
  color: #3a2a06;
  overflow: hidden;
}
.announcement-icon {
  flex-shrink: 0;
  font-size: 16px;
  animation: spin 3.5s linear infinite;
}
.announcement-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}
.announcement-item {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .01em;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(180deg, var(--amber-bright), var(--amber));
  color: #3a2a06;
  box-shadow: 0 10px 22px rgba(216,151,10,.28);
}
.btn-primary:hover { box-shadow: 0 14px 28px rgba(216,151,10,.35); }

.btn-secondary {
  background: rgba(34,52,74,.05);
  color: var(--navy);
  border-color: var(--line);
}
.btn-secondary:hover { background: rgba(34,52,74,.09); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: rgba(34,52,74,.3);
}
.btn-outline:hover { background: rgba(34,52,74,.05); }

.btn-lg { padding: 17px 28px; font-size: 17px; }

/* ============ Header ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(253,249,242,.72);
  backdrop-filter: blur(10px);
  transition: background .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}
.site-header.scrolled {
  background: rgba(253,249,242,.9);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(34,52,74,.08);
  border-bottom: 1px solid var(--line-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-mark { flex-shrink: 0; line-height: 0; }
.brand-mark img { display: block; border-radius: 8px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; }
.brand-title { font-family: var(--font-head); font-weight: 800; font-size: 17px; color: var(--navy); }
.brand-sub { font-size: 11px; letter-spacing: .08em; color: var(--amber-ink); font-weight: 700; }

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}
.main-nav a {
  font-weight: 600;
  font-size: 15px;
  color: var(--text-2);
  transition: color .15s ease;
}
.main-nav a:hover { color: var(--amber-ink); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.header-call { padding: 11px 18px; font-size: 14px; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: rgba(34,52,74,.05);
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  margin: 0 auto;
  transition: transform .2s ease, opacity .2s ease;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ Hero ============ */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(88vh, 720px);
  padding: 64px 0;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, rgba(10,18,32,.92) 0%, rgba(10,18,32,.72) 40%, rgba(10,18,32,.35) 70%, rgba(10,18,32,.15) 100%),
    linear-gradient(0deg, rgba(10,18,32,.55), transparent 45%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-text { max-width: 640px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(52,185,114,.18);
  border: 1px solid rgba(110,220,160,.4);
  color: #a8f0c6;
  padding: 7px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  margin: 0 0 20px;
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(52,185,114,.6);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(52,185,114,.6); }
  70% { box-shadow: 0 0 0 10px rgba(52,185,114,0); }
  100% { box-shadow: 0 0 0 0 rgba(52,185,114,0); }
}

.hero h1 {
  font-size: clamp(32px, 4.4vw, 52px);
  margin-bottom: 20px;
  color: #f7f9fc;
}
.hero h1 .accent { color: var(--amber-bright); }

.hero-lead {
  font-size: 17px;
  max-width: 52ch;
  margin-bottom: 28px;
  color: #d8e0ea;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}

.second-line-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.25);
  color: #eef2f7;
  font-weight: 600;
  font-size: 13.5px;
  backdrop-filter: blur(4px);
  transition: background .15s ease;
}
.second-line-btn:hover { background: rgba(255,255,255,.18); }
.second-line-btn .icon { width: 16px; height: 16px; }

.trust-badges {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding: 0;
  margin: 0;
}
.trust-badges li {
  font-size: 13px;
  font-weight: 700;
  color: #eef2f7;
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(4px);
}

.hero .btn-secondary {
  background: rgba(255,255,255,.12);
  color: #f7f9fc;
  border-color: rgba(255,255,255,.35);
  backdrop-filter: blur(6px);
}
.hero .btn-secondary:hover { background: rgba(255,255,255,.2); }

/* ============ Trust strip ============ */
.trust-strip {
  background: var(--bg-2);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 26px 0;
}
.trust-strip-title {
  font-weight: 800;
  font-family: var(--font-head);
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 16px;
}
.trust-strip-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  margin: 0;
  padding: 0;
}
.trust-strip-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--text-2);
  font-size: 14px;
}
.trust-strip-list .icon { color: var(--amber-ink); width: 18px; height: 18px; }

/* ============ Sections ============ */
.section { padding: 88px 0; }
.section-alt { background: var(--bg-2); }

.eyebrow {
  color: var(--amber-ink);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 13px;
  margin: 0 0 10px;
}
.section-title {
  font-size: clamp(26px, 3.2vw, 38px);
  max-width: 40ch;
}
.section-lead { max-width: 60ch; font-size: 16px; }

.grid { display: grid; gap: 24px; }
.services-grid { grid-template-columns: repeat(3, 1fr); margin-top: 40px; }
.regions-grid { grid-template-columns: repeat(3, 1fr); margin-top: 40px; }
.reviews-grid { grid-template-columns: repeat(3, 1fr); margin-top: 40px; }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 8px 20px rgba(34,52,74,.05);
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.service-card:hover, .region-card:hover {
  transform: translateY(-4px);
  border-color: var(--amber);
  background: #fffaf0;
  box-shadow: 0 14px 28px rgba(34,52,74,.1);
}
.card-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(179,118,10,.12);
  border-radius: 12px;
  color: var(--amber-ink);
  margin-bottom: 16px;
}
.card h3 { font-size: 18px; margin-bottom: 8px; }
.card p { margin: 0; font-size: 14.5px; }

/* ============ Calculator ============ */
.calculator {
  max-width: 560px;
  margin-top: 36px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.calculator-form label {
  display: block;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--navy);
}
.calculator-input-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.calculator-input-row input {
  flex: 1;
  min-width: 140px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--navy);
  font-size: 16px;
  font-family: var(--font-body);
}
.calculator-input-row input:focus {
  outline: 2px solid var(--amber-ink);
  outline-offset: 2px;
}
.calc-error {
  color: #c0392b;
  font-size: 13.5px;
  font-weight: 600;
  margin: 10px 0 0;
}
.calculator-result {
  margin-top: 22px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.calc-row {
  display: flex;
  justify-content: space-between;
  font-size: 14.5px;
  color: var(--text-2);
  padding: 6px 0;
}
.calc-row strong { color: var(--navy); }
.calc-total {
  border-top: 1px dashed var(--line);
  margin-top: 8px;
  padding-top: 12px;
  font-size: 18px;
}
.calc-total strong { color: var(--amber-ink); font-family: var(--font-head); }
.calc-note {
  margin: 20px 0 0;
  font-size: 12.5px;
  color: var(--text-2);
  line-height: 1.5;
}

/* ============ Neden biz ============ */
.why-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 0;
  margin: 36px 0 0;
}
.why-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 16px 18px;
  border-radius: var(--radius-sm);
}
.icon.check { color: var(--green-ink); }

/* ============ Hakkımızda / Zaman Çizelgesi ============ */
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  position: relative;
}
.timeline-step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 8px 20px rgba(34,52,74,.05);
}
.timeline-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(179,118,10,.12);
  color: var(--amber-ink);
  font-weight: 800;
  font-family: var(--font-head);
  font-size: 14px;
  margin-bottom: 14px;
}
.timeline-step h3 { font-size: 17px; margin-bottom: 6px; }
.timeline-step p { margin: 0; font-size: 14px; }
.timeline-note {
  margin-top: 28px;
  max-width: 75ch;
  border-left: 3px solid var(--amber);
  padding-left: 20px;
  font-size: 15.5px;
  color: var(--text-2);
}

/* ============ Yorumlar ============ */
.review-card p {
  color: var(--navy);
  font-style: italic;
  font-size: 15px;
}
.stars { color: var(--amber-ink); letter-spacing: 2px; margin-bottom: 12px; font-size: 15px; }
.review-author { font-size: 13px; color: var(--text-2); font-weight: 600; }
.reviews-cta { margin-top: 32px; }

/* ============ Galeri ============ */
.gallery-grid { grid-template-columns: repeat(2, 1fr); margin-top: 40px; }
.gallery-item {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 8px 20px rgba(34,52,74,.05);
  transition: transform .2s ease, box-shadow .2s ease;
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: 0 14px 28px rgba(34,52,74,.12); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }

/* ============ CTA band ============ */
.cta-band {
  background: linear-gradient(120deg, #fff3dc, #ffe6b3);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 56px 0;
}
.cta-band-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cta-band-inner p {
  color: var(--navy);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(20px, 2.6vw, 28px);
  max-width: 40ch;
  margin: 0;
}
.cta-band-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============ İletişim ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 36px;
  margin-top: 40px;
  align-items: start;
}
.contact-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.contact-list li a, .contact-list .contact-static {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 18px;
  border-radius: var(--radius-sm);
  transition: border-color .15s ease, background .15s ease;
}
.contact-list li a:hover { border-color: var(--amber); background: #fffaf0; }
.contact-list .icon { color: var(--amber-ink); margin-top: 2px; }
.contact-list strong { color: var(--navy); display: block; margin-bottom: 2px; font-size: 15px; }
.contact-list span span { font-size: 14px; color: var(--text-2); }
.contact-note {
  margin: 8px 0 0;
  font-size: 12.5px;
  color: var(--text-2);
  font-style: italic;
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ============ Footer ============ */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line-soft);
  padding: 56px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand { display: flex; gap: 12px; }
.footer-title { font-family: var(--font-head); font-weight: 800; font-size: 17px; margin: 0 0 4px; color: var(--navy); }
.footer-tagline { font-size: 13.5px; margin: 0 0 10px; }
.footer-phones { display: flex; flex-direction: column; gap: 2px; }
.footer-phone { color: var(--amber-ink); font-weight: 700; }

.footer-links p { color: var(--navy); font-weight: 700; margin-bottom: 12px; font-size: 14px; }
.footer-links ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 14px; color: var(--text-2); }
.footer-links a:hover { color: var(--amber-ink); }

.footer-seo p { font-size: 12.5px; line-height: 1.7; color: var(--text-2); margin: 0; }

.footer-bottom {
  border-top: 1px solid var(--line-soft);
  padding: 18px 0 100px;
}
.footer-bottom p { margin: 0; font-size: 12.5px; text-align: center; color: var(--text-2); }

/* ============ Sabit mobil arama çubuğu ============ */
.mobile-call-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 600;
  gap: 10px;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(253,249,242,.92);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
}
.mobile-call-bar .btn { flex: 1; }
.mobile-call-bar .btn-primary { flex: 1.4; }

/* ============ Scroll reveal ============ */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============ Responsive ============ */
@media (max-width: 1100px) {
  .main-nav ul { gap: 16px; }
  .main-nav a { font-size: 13.5px; }
}

@media (max-width: 992px) {
  .services-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .why-list { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-seo { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .header-call span { display: none; }
  .header-call .icon { margin: 0; }

  .main-nav.open {
    display: block;
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: rgba(253,249,242,.98);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
  }
  .main-nav.open ul {
    flex-direction: column;
    gap: 0;
    padding: 8px 20px 20px;
  }
  .main-nav.open a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .regions-grid, .reviews-grid, .services-grid, .gallery-grid { grid-template-columns: 1fr; }
  .why-list { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }

  .mobile-call-bar { display: flex; }
  .site-footer { padding-bottom: 0; }
}

@media (max-width: 480px) {
  .section { padding: 64px 0; }
  .hero { padding: 48px 0; min-height: min(78vh, 620px); }
  .calculator { padding: 22px; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
}
