:root {
  --ink: #141414;
  --muted: #5d6470;
  --line: #dce2e7;
  --paper: #ffffff;
  --soft: #f4f7f9;
  --night: #172026;
  --teal: #0f7c79;
  --amber: #f2b632;
  --red: #c83f34;
  --green: #128c5c;
  --shadow: 0 18px 50px rgba(20, 20, 20, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  letter-spacing: 0;
}

img,
svg {
  max-width: 100%;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  min-height: 74px;
  padding: 12px clamp(16px, 4vw, 40px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--amber);
  color: #111;
  font-weight: 900;
}

.brand strong,
.footer-brand {
  display: block;
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.desktop-nav a,
.mobile-nav a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.desktop-nav a[aria-current="page"] {
  color: var(--teal);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.icon-link,
.menu-toggle {
  min-width: 44px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
}

.icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 12px;
  text-decoration: none;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
}

.mobile-nav {
  display: none;
  grid-column: 1 / -1;
  gap: 12px;
  padding: 12px 0 4px;
}

.mobile-nav.is-open {
  display: grid;
}

.hero {
  position: relative;
  min-height: calc(100svh - 74px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background-image: url("assets/hero-cekici.jpg");
  background-size: cover;
  background-position: center right;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 13, 16, 0.88) 0%, rgba(10, 13, 16, 0.7) 42%, rgba(10, 13, 16, 0.18) 76%),
    linear-gradient(0deg, rgba(10, 13, 16, 0.46), rgba(10, 13, 16, 0));
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 32px));
  margin-left: clamp(16px, 7vw, 92px);
  padding: 44px 0;
  color: #fff;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0 0 18px;
  list-style: none;
  font-size: 0.9rem;
}

.breadcrumb li + li::before {
  content: ">";
  margin-right: 8px;
  color: rgba(255, 255, 255, 0.65);
}

.breadcrumb a {
  color: #fff;
  text-decoration-color: rgba(255, 255, 255, 0.35);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--teal);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.hero .eyebrow {
  color: var(--amber);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  max-width: 11ch;
  font-size: clamp(2.75rem, 8vw, 5.75rem);
}

h2 {
  font-size: clamp(1.8rem, 3.2vw, 3rem);
}

h3 {
  font-size: 1.15rem;
}

p {
  margin: 0;
}

.hero-copy {
  max-width: 68ch;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.hero-ctas,
.contact-actions,
.cta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--amber);
  color: #111;
}

.btn-whatsapp {
  background: var(--green);
  color: #fff;
}

.btn-secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.hero-facts li {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
}

.section {
  padding: clamp(56px, 8vw, 96px) 0;
}

.section-muted {
  background: var(--soft);
}

.section-dark {
  background: var(--night);
  color: #fff;
}

.trust-band {
  padding: 24px 0;
  background: var(--ink);
  color: #fff;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.trust-grid div {
  display: grid;
  gap: 4px;
  padding: 14px 0;
}

.trust-grid strong {
  color: var(--amber);
  font-size: 1.35rem;
}

.trust-grid span {
  color: rgba(255, 255, 255, 0.76);
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.section-intro,
.section-head,
.content-stack,
.process-layout > div,
.contact-layout > div {
  display: grid;
  gap: 18px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-head p,
.section-intro p,
.content-stack p,
.process-layout p,
.contact-layout p {
  color: var(--muted);
}

.section-dark .section-head p,
.section-dark .process-layout p {
  color: rgba(255, 255, 255, 0.78);
}

.card-grid {
  display: grid;
  gap: 16px;
}

.card-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card-grid.locations {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.service-card,
.location-card,
.contact-form {
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 12px 34px rgba(20, 20, 20, 0.06);
}

.service-card {
  display: grid;
  gap: 12px;
}

.service-card p,
.location-card p {
  color: var(--muted);
}

.text-link,
.service-card a,
.content-stack a,
.faq-list a,
.contact-layout a:not(.btn),
.site-footer a {
  color: var(--teal);
  font-weight: 800;
}

.keyword-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.keyword-row span {
  padding: 8px 10px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.location-card {
  display: grid;
  gap: 14px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.gallery-card {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(20, 20, 20, 0.06);
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  background: #dce2e7;
}

.gallery-card figcaption {
  padding: 12px 14px;
  color: var(--ink);
  font-weight: 900;
}

.card-link {
  display: inline-flex;
  align-items: center;
  font-weight: 900;
  color: var(--teal);
  text-decoration: none;
}

.card-link::after {
  content: "›";
  margin-left: 8px;
  font-size: 1.4rem;
}

.process-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.steps li {
  display: grid;
  gap: 8px;
  padding: 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.steps strong {
  color: var(--amber);
}

.cta-panel {
  background: linear-gradient(90deg, #fff 0%, #f8fbfb 100%);
}

.cta-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
}

.cta-links {
  justify-content: flex-end;
  margin-top: 0;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

summary {
  min-height: 56px;
  display: flex;
  align-items: center;
  padding: 16px 18px;
  font-weight: 900;
  cursor: pointer;
}

details p {
  padding: 0 18px 18px;
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 6px;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

textarea {
  resize: vertical;
}

.form-note {
  min-height: 22px;
  color: var(--teal);
  font-weight: 800;
}

.site-footer {
  padding: 56px 0 96px;
  background: #111;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 28px;
}

.footer-grid h2 {
  margin-bottom: 12px;
  font-size: 1rem;
}

.footer-grid p,
.footer-grid a {
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-bottom {
  width: min(1120px, calc(100% - 32px));
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 28px;
  margin: 28px auto 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.68);
}

.footer-bottom a {
  color: #fff;
}

.sticky-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 60;
  display: none;
  grid-template-columns: 1fr;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
}

.sticky-cta a {
  min-width: 0;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 8px;
  background: var(--red);
  color: #fff;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  font-size: 1rem;
  box-shadow: 0 14px 34px rgba(200, 63, 52, 0.38);
}

@media (max-width: 1040px) {
  .desktop-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .card-grid.locations {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 68px;
    padding: 10px 16px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .hero {
    min-height: calc(100svh - 68px);
    background-position: center right 35%;
  }

  .hero-content {
    width: min(100% - 28px, 680px);
    margin: 0 auto;
    padding: 32px 0 96px;
  }

  h1 {
    max-width: 10ch;
    font-size: clamp(2.45rem, 14vw, 4.25rem);
  }

  .split,
  .process-layout,
  .cta-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .card-grid.two,
  .steps,
  .trust-grid,
  .footer-grid,
  .card-grid.locations,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .cta-links {
    justify-content: flex-start;
  }

  .btn {
    width: 100%;
  }

  .icon-link span:last-child {
    display: none;
  }

  .footer-bottom {
    display: grid;
  }

  .sticky-cta {
    display: grid;
  }
}
