/* =========================================================
   Ayrancılar Çilingir — ana stil
   1 değişkenler · 2 temel · 3 tipografi · 4 butonlar · 5 header
   6 kapak · 7 fotoğraf şeridi · 8 bölüm iskeleti · 9 hizmetler
   10 güven · 11 bölgeler · 12 hakkımızda · 13 iletişim
   14 son çağrı · 15 footer · 16 sabit düğmeler · 17 animasyon
   ========================================================= */

/* ---------- 1. Değişkenler ---------- */
:root {
  --paper:      #F7F4EE; /* Warm Ivory */
  --paper-2:    #FCFBF8; /* Soft White Surface */
  --ink:        #101722; /* Dark Text */
  --ink-2:      #4D5663; /* Body Text Slate */
  --ink-3:      #7D8490; /* Muted Gray Text */
  --rule:       #DED8CE; /* Border Warm Gray */
  --navy:       #142033; /* Primary Navy */
  --navy-deep:  #1D2C43; /* Hover Primary Navy */
  --navy-soft:  rgba(247, 244, 238, .7);
  --amber:      #C89432; /* Muted Gold */
  --amber-dark: #AE7922; /* Dark Gold Hover */
  --amber-soft: #DBC392;
  --amber-text: #77653F; /* Badge text */
  --wa-green:   #24785A; /* WhatsApp Green */
  --wa-green-bg:#EEF6F1;
  --card-border:#E5DED4;
  --card-hover: #F1ECE2;

  /* Tipografi */
  --f-display: "Saira Condensed", "Arial Narrow", Impact, sans-serif;
  --f-body:    "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --f-mono:    "IBM Plex Mono", ui-monospace, "SFMono-Regular", Consolas, monospace;

  /* Ölçü */
  --wrap:      1180px;
  --gutter:    24px;
  --sec-pad:   96px;
  --head-h:    64px;
  --radius:    4px;
  --radius-sm: 2px;

  --ease: cubic-bezier(.22, .9, .24, 1);
}

/* ---------- 2. Temel ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { text-size-adjust: 100%; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; }
a { color: inherit; }
ul, ol, dl, dd { margin: 0; padding: 0; }
li { list-style: none; }
h1, h2, h3, p { margin: 0; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

section[id] { scroll-margin-top: calc(var(--head-h) + 12px); }

:focus-visible {
  outline: 3px solid var(--amber-dark);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 100;
  background: var(--navy);
  color: var(--paper);
  padding: 10px 16px;
  border-radius: var(--radius);
  font-size: 15px;
  text-decoration: none;
  transition: top .18s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ---------- 3. Tipografi ---------- */
.rail {
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 14px 7px 11px;
  border-radius: 100px;
  background: var(--paper);
  border: 1px solid var(--rule);
  font-family: var(--f-mono);
  font-size: 12.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--amber-text);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 3px var(--amber-soft);
}

.sec-title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(2.1rem, 3.8vw, 3.1rem);
  line-height: 1.02;
  text-transform: uppercase;
}

.sec-lede {
  margin-top: 12px;
  max-width: 54ch;
  color: var(--ink-2);
}

.link-strong {
  display: inline-block;
  margin-top: 20px;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid var(--amber);
  padding-bottom: 2px;
}
.link-strong:hover { border-bottom-color: var(--ink); }

.is-placeholder { color: var(--ink-3); font-style: italic; }

/* ---------- 4. Butonlar ve telefon plakası ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 22px;
  border-radius: var(--radius);
  font-size: 15.5px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: transform .14s var(--ease), background-color .14s var(--ease), color .14s var(--ease);
}
.btn__ico { width: 19px; height: 19px; flex: none; }

.btn--amber {
  background: var(--amber);
  color: var(--ink);
  border-bottom: 3px solid var(--amber-dark);
}
.btn--amber:hover { background: #F0A01A; transform: translateY(-1px); }

.btn--navy {
  background: var(--navy);
  color: #FFFFFF;
  border-bottom: 3px solid var(--navy-deep);
}
.btn--navy:hover { background: var(--navy-deep); transform: translateY(-1px); }
.btn--navy .btn__ico { color: var(--amber); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--paper); }

.btn--outline {
  background: #FFFFFF;
  color: #292522;
  border-color: #DDE8E1;
}
.btn--outline:hover { 
  background: #F0FAF4; 
  border-color: #25D366; 
}
.btn--outline .btn__ico { color: #25D366; }

.btn--ondark {
  color: var(--paper);
  border-color: rgba(250, 249, 246, .5);
}
.btn--ondark:hover { background: var(--paper); color: var(--navy); }

/* Telefon plakası — sayfanın en büyük nesnesi, kendisi arama bağlantısı */
.plate {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2px 18px;
  width: 100%;
  max-width: 460px;
  padding: 16px 22px 14px;
  background: var(--navy);
  color: var(--paper);
  border-radius: var(--radius);
  border-bottom: 4px solid var(--navy-deep);
  text-decoration: none;
  transition: transform .14s var(--ease), background-color .14s var(--ease);
}
.plate:hover { background: #1E3050; transform: translateY(-1px); }
.plate:active { transform: translateY(1px); }

.plate__label {
  grid-column: 1;
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #C9B78E;
}

.plate__num {
  grid-column: 1;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(2rem, 4.6vw, 2.9rem);
  line-height: 1.05;
  letter-spacing: .01em;
  white-space: nowrap;
  color: #FFFFFF;
}

.plate__arrow {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--navy);
}
.plate__arrow svg { width: 19px; height: 19px; }

.plate--sm { max-width: 420px; }

.plate--wa {
  display: flex !important;
  justify-content: center;
  background-color: #25D366 !important;
  color: #FFFFFF !important;
  border-bottom-color: #1DA851 !important;
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 3.5vw, 1.8rem);
  font-weight: 800;
  letter-spacing: .02em;
  padding: 16px 22px;
}
.plate--wa:hover {
  background-color: #21BF5A !important;
}
.plate--wa__ico {
  width: 26px;
  height: 26px;
}

/* ---------- 5. Header ---------- */
.site-head {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--paper-2);
  border-bottom: 1px solid #E8E2D8;
  transition: box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.site-head.is-scrolled {
  box-shadow: 0 4px 24px rgba(21, 34, 56, .08);
  border-bottom-color: transparent;
}

.site-head__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: var(--head-h);
}

.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; flex: none; }

.brand__mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  background: var(--amber);
  border-radius: var(--radius-sm);
  color: var(--navy);
}
.brand__mark svg { width: 21px; height: 21px; }

.brand__text { display: flex; flex-direction: column; line-height: 1.1; }

.brand__name {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 21px;
  text-transform: uppercase;
}

.brand__tag {
  margin-top: 2px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.nav { display: flex; align-items: center; gap: 26px; }
.nav__list { display: flex; align-items: center; gap: 22px; }

.nav__link {
  font-size: 15.5px;
  font-weight: 500;
  text-decoration: none;
  color: var(--ink-2);
  padding-block: 6px;
  border-bottom: 2px solid transparent;
}
.nav__link:hover { color: var(--ink); border-bottom-color: var(--amber); }

.nav__cta { padding: 10px 16px; display: inline-flex; align-items: center; gap: 6px; }
.nav__cta-num { font-family: var(--f-mono); font-size: 14px; font-weight: 500; white-space: nowrap; line-height: 1; vertical-align: middle; margin-top: 2px; }

.burger {
  display: none;
  align-items: center;
  gap: 9px;
  background: none;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 9px 12px;
  cursor: pointer;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink);
}
.burger__box { display: grid; gap: 4px; width: 18px; }
.burger__box i {
  display: block;
  height: 2px;
  background: var(--ink);
  transition: transform .18s var(--ease), opacity .18s var(--ease);
}
.site-head.is-open .burger__box i:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.site-head.is-open .burger__box i:nth-child(2) { opacity: 0; }
.site-head.is-open .burger__box i:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- 6. Kapak ---------- */
.hero-wrapper {
  position: relative;
  z-index: 10;
  background: var(--amber);
  padding-bottom: 4px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 60px));
  margin-bottom: -60px;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(540px, 72vh, 700px);
  overflow: hidden;
  isolation: isolate;
  background: var(--paper);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 60px));
}

.hero__image-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  z-index: 1;
}

.hero__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--paper) 0%, rgba(246, 242, 235, 0.9) 8%, rgba(246, 242, 235, 0.3) 25%, transparent 45%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-block: clamp(48px, 7vw, 84px) clamp(80px, 10vw, 120px);
}

.hero__content {
  width: 50%;
  padding-right: 48px;
}

.hero__title {
  margin-top: 20px;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(52px, 5vw, 78px);
  line-height: .92;
  letter-spacing: -.005em;
  text-transform: uppercase;
}

.hero__lede {
  margin-top: 18px;
  max-width: 36ch;
  font-size: clamp(17px, 1.5vw, 19px);
  color: var(--ink-2);
}

.hero__cta {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
  max-width: 640px;
}
.hero__cta .plate { max-width: 400px; }

.hero__trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-top: 36px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  color: var(--ink-2);
  font-weight: 500;
}
.trust-pill svg {
  width: 18px;
  height: 18px;
  color: var(--amber);
}

/* ---------- 8. Bölüm iskeleti ---------- */
.section { padding-block: var(--sec-pad); }

.section--band {
  background: var(--paper-2);
  border-block: 1px solid var(--rule);
}

.section--navy {
  background: var(--navy);
  color: var(--paper);
}

.sec-head {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 44px;
}
.sec-head .rail { padding-top: 8px; }

.sec-head--light .rail { color: rgba(250, 249, 246, .55); }
.sec-head--light .sec-lede { color: var(--navy-soft); }

/* ---------- 9. Hizmetler ---------- */
.section--hizmetler-light {
  position: relative;
  background: #FAF7F2;
  overflow: hidden;
  padding-block: clamp(80px, 12vw, 120px);
}

.hiz-light-glow {
  position: absolute;
  top: 10%;
  right: 15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(248, 229, 218, 0.4) 0%, rgba(248, 229, 218, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.hiz-light-deco {
  position: absolute;
  top: -20%;
  left: -10%;
  width: 400px;
  height: 400px;
  color: #E78652;
  opacity: 0.04;
  pointer-events: none;
  z-index: 1;
}

.hiz-light-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 60px;
  max-width: 1240px;
  margin-inline: auto;
}

/* LEFT SIDE */
.hiz-light-left {
  flex: 0 0 31%;
  padding-top: 10px;
}
.hiz-light-head {
  position: sticky;
  top: 120px;
}
.hiz-light-eyebrow {
  font-family: var(--f-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #E78652;
  margin-bottom: 16px;
}
.hiz-light-title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 34px);
  text-transform: uppercase;
  color: #292522;
  line-height: 1.05;
}
.hiz-light-lede {
  margin-top: 18px;
  font-size: 17px;
  color: #655D58;
  max-width: 330px;
  line-height: 1.5;
}
.hiz-light-call {
  display: inline-block;
  margin-top: 32px;
  font-size: 16px;
  font-weight: 500;
  color: #2B2725;
  text-decoration: none;
  transition: color .2s var(--ease);
}
.hiz-light-call:hover {
  color: #E78652;
}

/* RIGHT SIDE */
.hiz-light-right {
  flex: 1;
}
.hiz-light-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.hiz-lcard {
  position: relative;
  display: flex;
  align-items: center;
  gap: 26px;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFFFFF 65%, #FCF5F0 100%);
  border: 1px solid #E9DED6;
  border-radius: 12px;
  padding: 24px 22px;
  min-height: 140px;
  box-shadow: 0 8px 24px rgba(43, 39, 37, 0.04);
  transition: transform .28s var(--ease), border-color .28s var(--ease), box-shadow .28s var(--ease), background .28s var(--ease);
  cursor: default;
}

.hiz-lcard::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 20px;
  width: 20px;
  height: 2px;
  background: #F0C4AA;
  transition: width .28s var(--ease), background-color .28s var(--ease);
}

.hiz-lcard:hover {
  transform: translateY(-4px);
  border-color: #E78652;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF8F3 45%, #F8E5DA 100%);
  box-shadow: 0 12px 32px rgba(43, 39, 37, 0.08);
}
.hiz-lcard:hover::before {
  width: 42px;
  background: #E78652;
}

.hiz-lcard__ico {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFF1E9;
  border: 1.5px solid #F1C4AC;
  color: #E27643;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(248, 229, 218, 0.5);
  transition: background-color .28s var(--ease), color .28s var(--ease), border-color .28s var(--ease), transform .28s var(--ease);
}
.hiz-lcard__ico svg {
  width: 24px;
  height: 24px;
}
.hiz-lcard:hover .hiz-lcard__ico {
  background: #E78652;
  color: #FFFFFF;
  border-color: #E78652;
  transform: scale(1.05);
}

.hiz-lcard__content {
  flex: 1;
}
.hiz-lcard__title {
  font-family: var(--f-display);
  font-weight: 750;
  font-size: 20px;
  color: #292522;
  margin-bottom: 4px;
}
.hiz-lcard__desc {
  font-size: 16.5px;
  color: #655D58;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hiz-lcard__arrow {
  flex: 0 0 auto;
  color: #C9A28E;
  transition: transform .28s var(--ease), color .28s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hiz-lcard__arrow svg {
  width: 22px;
  height: 22px;
}
.hiz-lcard:hover .hiz-lcard__arrow {
  transform: translateX(4px);
  color: #E78652;
}

/* BOTTOM AREA */
.hiz-light-bot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #E9DED6;
}
.hiz-light-bot p {
  font-size: 15px;
  color: #6B625D;
}
.hiz-light-bot a {
  font-size: 15px;
  font-weight: 600;
  color: #2B2725;
  text-decoration: none;
  transition: color .2s var(--ease);
}
.hiz-light-bot a:hover {
  color: #E78652;
}

/* ---------- 10. Neden Biz ---------- */
.section--trust-dark {
  position: relative;
  background: #221D1A;
  overflow: hidden;
  margin-top: -4vw;
  padding-top: calc(clamp(80px, 12vw, 120px) + 4vw);
  padding-bottom: clamp(80px, 12vw, 120px);
  clip-path: polygon(0 4vw, 100% 0, 100% 100%, 0 100%);
}

.trust-top-edge {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4vw;
  z-index: 10;
  pointer-events: none;
}

.trust-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}
.trust-bg-glow--1 {
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: rgba(246, 216, 201, 0.04);
}
.trust-bg-glow--2 {
  bottom: -20%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(231, 134, 82, 0.03);
}
.trust-bg-deco {
  position: absolute;
  bottom: 10%;
  right: 15%;
  width: 300px;
  height: 300px;
  color: rgba(255, 255, 255, 0.02);
  pointer-events: none;
  z-index: 1;
}

.trust-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(40px, 6vw, 64px);
  max-width: 1240px;
  margin-inline: auto;
}

.trust-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 0;
}
.trust-eyebrow {
  font-family: var(--f-mono);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #CBA18A;
  margin-bottom: 16px;
}
.trust-title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(36px, 4vw, 46px);
  color: #FFF7F1;
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: 1.05;
}
.trust-lede {
  margin-top: 18px;
  font-size: 18px;
  color: #DCCFC7;
  max-width: 600px;
  line-height: 1.6;
}

/* GRID */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
}

.tcard {
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 14px;
  padding: 24px 20px;
  transition: transform .28s var(--ease), border-color .28s var(--ease), background .28s var(--ease), box-shadow .28s var(--ease);
}
.tcard-line {
  width: 24px;
  height: 2px;
  background: #E78652;
  margin-bottom: 16px;
  margin-inline: auto;
  transition: width .28s var(--ease), background-color .28s var(--ease);
}
.tcard-title {
  font-family: var(--f-display);
  font-weight: 750;
  font-size: 19px;
  color: #FFF7F1;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: .02em;
  text-align: center;
}
.tcard-desc {
  font-size: 16px;
  color: #DCCFC7;
  line-height: 1.55;
  text-align: left;
}

.tcard:hover {
  transform: translateY(-4px);
  border-color: rgba(231, 134, 82, 0.4);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(246, 216, 201, 0.08) 100%);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}
.tcard:hover .tcard-line {
  width: 42px;
  background: #D86E42;
}

/* ---------- 10.5. Rakamlarla Biz ---------- */
.section--stats-warm {
  position: relative;
  background: linear-gradient(135deg, #FAF7F2 0%, #FBE9DF 50%, #F7EFE8 100%);
  padding-block: clamp(80px, 10vw, 120px);
  overflow: hidden;
  margin-top: -1px;
}

.stats-top-curve {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: clamp(30px, 4vw, 60px);
  z-index: 10;
  pointer-events: none;
}

.stats-bg-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  z-index: 1;
}
.stats-bg-glow--tl {
  top: -10%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(244, 200, 178, 0.12);
}
.stats-bg-glow--br {
  bottom: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: rgba(231, 134, 82, 0.07);
}
.stats-bg-deco {
  position: absolute;
  bottom: 20%;
  left: 10%;
  width: 300px;
  height: 300px;
  color: rgba(231, 134, 82, 0.06);
  pointer-events: none;
  z-index: 1;
}

.stats-wrap {
  position: relative;
  z-index: 2;
}

.stats-head {
  text-align: center;
  margin-bottom: clamp(60px, 8vw, 90px);
}
.stats-eyebrow {
  font-family: var(--f-mono);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #E78652;
  margin-bottom: 16px;
}
.stats-title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(32px, 3.5vw, 42px);
  color: #292522;
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: 1.05;
}
.stats-lede {
  margin-top: 18px;
  font-size: 17px;
  color: #6B625D;
  line-height: 1.55;
  margin-inline: auto;
  max-width: 600px;
}

/* Timeline Layout (Desktop) */
.stats-timeline-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin-inline: auto;
  padding-block: 80px; /* space for absolute text */
}

.stats-line-track {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: transparent;
  transform: translateY(-50%);
  z-index: 1;
}
.stats-line-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: #D8B5A2;
}

.stats-points {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}

.stat-point {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 220px;
}

.stat-point:nth-child(odd) .stat-content {
  position: absolute;
  bottom: 100%;
  margin-bottom: 24px;
}
.stat-point:nth-child(even) .stat-content {
  position: absolute;
  top: 100%;
  margin-top: 24px;
}

.stat-node {
  position: relative;
  width: 16px;
  height: 16px;
  background: #FAF3ED;
  border: 2px solid #E78652;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease);
}
.stat-node-inner {
  width: 4px;
  height: 4px;
  background: #E78652;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.stat-node-halo {
  position: absolute;
  inset: -12px;
  background: rgba(231,134,82,0.12);
  border-radius: 50%;
  transform: scale(0);
  pointer-events: none;
  transition: transform 0.4s var(--ease);
}

.stat-content {
  width: 100%;
  opacity: 0;
  transform: translateY(10px);
}

.stat-number {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(52px, 5vw, 68px);
  color: #292522;
  line-height: 1;
  transition: color 0.3s ease;
  margin-bottom: 8px;
}
.stat-label {
  font-family: var(--f-mono);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .08em;
  color: #7A6860;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}
.stat-label::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #E78652;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

/* Hover effect */
.stat-point:hover .stat-node {
  transform: scale(1.3);
}
.stat-point:hover .stat-number {
  color: #D97242;
}
.stat-point:hover .stat-label::after {
  width: 24px;
}

/* Active Class applied by GSAP */
.stat-point.is-active .stat-node-inner { opacity: 1; }
.stat-point.is-active .stat-node-halo { transform: scale(1); }

/* ---------- 11. Bölgeler ---------- */
.section--areas-light {
  position: relative;
  background: #FAF7F2;
  padding-block: clamp(80px, 10vw, 120px);
  overflow: hidden;
}

.areas-dark-circle {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  background: transparent;
  border: 2px solid #E78652;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.areas-dark-circle::after {
  content: "";
  position: absolute;
  inset: 16px;
  background: transparent;
  border: 1px solid rgba(231, 134, 82, 0.15);
  border-radius: 50%;
  pointer-events: none;
}

.areas-dark-circle--bottom {
  top: auto;
  bottom: -80px;
  right: auto;
  left: -80px;
}

.areas-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  gap: clamp(40px, 6vw, 80px);
  max-width: 1240px;
  margin-inline: auto;
  align-items: center;
}

.areas-left {
  flex: 0 0 35%;
}

.areas-eyebrow {
  font-family: var(--f-mono);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #E78652;
  margin-bottom: 16px;
}

.areas-title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(32px, 3.5vw, 42px);
  color: #292522;
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: 1.05;
}

.areas-lede {
  margin-top: 18px;
  font-size: 17px;
  color: #6B625D;
  line-height: 1.55;
  max-width: 400px;
}

.areas-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  background: #2B2725;
  color: #FFFFFF;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: background-color 0.3s ease;
}

.areas-cta svg {
  width: 18px;
  height: 18px;
  color: #E78652;
  transition: transform 0.3s ease, color 0.3s ease;
}

.areas-cta:hover {
  background: #E78652;
}

.areas-cta:hover svg {
  transform: translateX(4px);
  color: #FFFFFF;
}

.areas-right {
  flex: 1;
}

.chip-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
}

.loc-chip {
  background: #FFFFFF;
  border: 1px solid #E9DED6;
  color: #3B3430;
  border-radius: 999px;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(41, 37, 34, 0.03);
  transition: all 0.25s ease;
  cursor: default;
}

.loc-chip:hover {
  background: linear-gradient(135deg, #E78652 0%, #D97242 100%);
  border-color: #E78652;
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(231, 134, 82, 0.2);
}

/* Map Area */
.areas-map-wrap {
  margin-top: clamp(55px, 6vw, 75px);
  position: relative;
  z-index: 2;
}
.areas-map-box {
  position: relative;
  background: #F7F1EC;
  border-radius: 18px;
  border: 1px solid #E9DED6;
  box-shadow: 0 18px 50px rgba(74, 50, 39, 0.08);
  overflow: hidden;
  height: clamp(400px, 40vw, 440px);
  opacity: 0;
  transform: translateY(20px);
}
.map-iframe-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.map-iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(15%) contrast(98%);
}
.map-corner-label {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(250, 247, 242, 0.92);
  color: #6B625D;
  border: 1px solid #E9DED6;
  border-radius: 999px;
  padding: 6px 14px;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  z-index: 2;
}
.map-info-panel {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: clamp(300px, 40vw, 340px);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border: 1px solid #E9DED6;
  border-radius: 14px;
  padding: 22px;
  z-index: 10;
  box-shadow: 0 12px 30px rgba(74, 50, 39, 0.06);
  opacity: 0;
  transform: translateY(10px);
}
.map-info-eyebrow {
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  color: #E78652;
  text-transform: uppercase;
}
.map-info-title {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 700;
  color: #292522;
  margin-top: 6px;
}
.map-info-address {
  font-size: 14px;
  color: #6B625D;
  margin-top: 6px;
  line-height: 1.4;
}
.map-info-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #6B625D;
  margin-top: 12px;
}
.status-dot {
  width: 8px;
  height: 8px;
  background: #E78652;
  border-radius: 50%;
}
.map-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  background: #292522;
  color: #FFFFFF;
  border-radius: 10px;
  padding: 12px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.25s var(--ease);
}
.map-btn svg {
  width: 16px;
  height: 16px;
  color: #E78652;
  transition: all 0.25s var(--ease);
}
.map-btn:hover {
  background: linear-gradient(135deg, #E78652 0%, #D97242 100%);
  transform: translateY(-2px);
}
.map-btn:hover svg {
  color: #FFFFFF;
}

/* ---------- 12. Müşterilerimizden Gelenler ---------- */
.section--reviews {
  position: relative;
  background: linear-gradient(135deg, #221D1A 0%, #2B211D 55%, #241B18 100%);
  padding-block: clamp(80px, 10vw, 120px);
  overflow: hidden;
  margin-top: -1px;
}

.reviews-top-curve {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: clamp(30px, 4vw, 60px);
  z-index: 10;
  pointer-events: none;
}

.reviews-bg-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  background: #E78652;
  opacity: 0.06;
  z-index: 1;
}
.reviews-bg-glow--left {
  top: 10%;
  left: -10%;
  width: 50vw;
  height: 50vw;
}
.reviews-bg-glow--right {
  bottom: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
}

.reviews-quote-deco {
  position: absolute;
  top: -20px;
  right: -5%;
  width: 300px;
  color: rgba(231,134,82,0.04);
  pointer-events: none;
  z-index: 1;
}

.reviews-wrap {
  position: relative;
  z-index: 2;
}

.reviews-head {
  text-align: center;
  margin-bottom: clamp(50px, 6vw, 70px);
}
.reviews-eyebrow {
  font-family: var(--f-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .2em;
  color: #E78652;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.reviews-title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 48px);
  color: #FFF8F3;
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: 1.05;
}
.reviews-lede {
  margin-top: 18px;
  font-size: clamp(16px, 2vw, 18px);
  color: #D4C3BA;
  line-height: 1.6;
  max-width: 650px;
  margin-inline: auto;
}

.reviews-drag-hint-text {
  font-family: var(--f-mono);
  font-size: 13px;
  color: #BCAEA5;
  margin-top: 16px;
  letter-spacing: .05em;
}

.reviews-carousel-wrapper {
  margin-inline: calc(var(--gutter) * -1);
  padding-inline: var(--gutter);
  padding-bottom: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
}
.reviews-carousel-wrapper::-webkit-scrollbar { display: none; }
.reviews-carousel-wrapper.is-dragging { cursor: grabbing; scroll-snap-type: none; }

.reviews-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
}

.review-card {
  position: relative;
  background: linear-gradient(145deg, #FFFDFC 0%, #FFFDFC 65%, #FAEEE7 100%);
  border: 1px solid rgba(231,134,82,0.18);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.14);
  display: flex;
  flex-direction: column;
  transition: all 0.28s var(--ease);
  opacity: 0;
  transform: translateY(20px);
  flex: 0 0 calc(33.333% - 16px);
  scroll-snap-align: start;
}

.r-card-accent {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 24px;
  height: 3px;
  background: #E78652;
  border-radius: 999px;
  transition: width 0.28s var(--ease);
}

.r-card-quote {
  width: 28px;
  height: 28px;
  color: #E78652;
  margin-top: 20px;
  margin-bottom: 16px;
}

.r-card-stars {
  display: flex;
  gap: 4px;
  color: #E78652;
  margin-bottom: 16px;
}
.r-card-stars svg {
  width: 14px;
  height: 14px;
}

.r-card-text {
  color: #3B3430;
  font-size: 16.5px;
  line-height: 1.6;
  font-weight: 500;
  flex: 1;
}

.r-card-divider {
  width: 100%;
  height: 1px;
  background: #EFE4DD;
  margin-block: 24px 20px;
}

.r-card-customer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.r-avatar {
  width: 44px;
  height: 44px;
  background: #F8E5DA;
  color: #D97242;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-mono);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .05em;
  transition: all 0.28s var(--ease);
}

.r-cust-info {
  display: flex;
  flex-direction: column;
}

.r-cust-name {
  color: #292522;
  font-size: 15.5px;
  font-weight: 700;
}

.r-cust-loc {
  color: #8B7970;
  font-size: 14px;
  margin-top: 2px;
}

/* Hover State */
.review-card:hover {
  transform: translateY(-5px);
  border-color: rgba(231,134,82,0.48);
  box-shadow: 0 24px 55px rgba(0,0,0,0.18);
  background: linear-gradient(145deg, #FFFFFF 0%, #FFF8F3 55%, #F8E5DA 100%);
}
.review-card:hover .r-card-accent {
  width: 48px;
}
.review-card:hover .r-avatar {
  background: #E78652;
  color: #FFFFFF;
}

/* ---------- 15. Footer ---------- */
.site-foot {
  position: relative;
  background: #191411;
  color: #BCAEA5;
  padding-bottom: 40px;
  overflow: hidden;
  margin-top: -1px;
}

.footer-top-wave {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: clamp(35px, 6vw, 110px);
  z-index: 10;
  pointer-events: none;
}

.footer-deco-bg {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 400px;
  height: 400px;
  color: rgba(231,134,82,0.035);
  pointer-events: none;
  z-index: 1;
}
.footer-deco-bg svg { width: 100%; height: 100%; }

.footer-wrap {
  position: relative;
  z-index: 2;
  padding-top: clamp(60px, 8vw, 140px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 60px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-col--brand {
  padding-right: 20px;
}

.footer-brand {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 20px;
  color: #FFF7F1;
  letter-spacing: .02em;
}

.footer-subtext {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  color: #E78652;
  margin-top: 8px;
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 14.5px;
  line-height: 1.6;
}

.footer-col-title {
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .15em;
  color: #E78652;
  margin-bottom: 24px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  color: #BCAEA5;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.24s var(--ease);
  position: relative;
  width: fit-content;
}

.footer-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: #E78652;
  transition: width 0.24s var(--ease);
}

.footer-nav a:hover {
  color: #FFF7F1;
}
.footer-nav a:hover::after {
  width: 100%;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-tel {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 700;
  color: #FFF7F1;
  text-decoration: none;
  transition: color 0.24s var(--ease);
}
.footer-tel svg { width: 20px; height: 20px; color: #E78652; }
.footer-tel:hover { color: #E78652; }

.footer-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.14);
  color: #FFF7F1;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.24s var(--ease);
  width: fit-content;
}
.footer-wa svg { width: 18px; height: 18px; color: #25D366; }
.footer-wa:hover {
  border-color: #25D366;
  background: rgba(37, 211, 102, 0.1);
}

.footer-address {
  margin-top: 8px;
  font-size: 14.5px;
  line-height: 1.5;
}

.footer-avail {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .1em;
  color: #E78652;
  margin-top: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13.5px;
  color: #8F8179;
}

.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  color: #8F8179;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover {
  color: #FFF7F1;
}

/* ---------- 16. Sabit düğmeler ---------- */
.float-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 44;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.float-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 20px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(21, 34, 56, .22);
  transition: transform .16s var(--ease);
}
.float-cta__btn svg { width: 18px; height: 18px; flex: none; }
.float-cta__btn:hover { transform: translateY(-2px); }
.float-cta__btn--tel { background: var(--amber); color: var(--ink); }
.float-cta__btn--wa { background: #25D366; color: #FFFFFF; }

.callbar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 45;
  border-top: 1px solid rgba(21, 34, 56, .15);
  background: var(--paper);
  padding-bottom: env(safe-area-inset-bottom);
  transition: transform .22s var(--ease);
}
.callbar.is-hidden { transform: translateY(110%); }

.callbar__btn {
  flex: 1 1 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 58px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
}
.callbar__btn svg { width: 20px; height: 20px; flex: none; }
.callbar__btn--tel { background: var(--amber); color: var(--ink); }
.callbar__btn--wa { background: #25D366; color: #FFFFFF; }

/* ---------- 17. Belirme animasyonu ---------- */
/* Yalnızca <html class="js"> varken çalışır: JavaScript kapalıysa hiçbir şey gizlenmez. */
html.js .anim {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
  transition-delay: calc(var(--d, 0) * 90ms);
}
html.js .anim.is-in { opacity: 1; transform: none; }

html.js .pcard.anim { transform: translateY(34px) scale(.98); }
html.js .pcard.anim.is-in { transform: none; }
