/* ============================================================
   BY Dekor — style.css
   Premium · Modern · Koyu Antrasit + Altın/Turuncu Vurgu
   ============================================================ */

/* -------- DEĞİŞKENLER -------- */
:root {
  /* Marka paleti
     Ana renk      #1C1C1C
     Arka plan     #F8F6F1
     Vurgu (altın) #C98A2C
     Yazı          #222222
     İkincil yazı  #666666 */
  --anthracite:      #1C1C1C;  /* ana koyu renk */
  --anthracite-2:    #262626;  /* koyu bölümlerdeki kartlar */
  --anthracite-3:    #2e2e2e;
  --dark:            #141414;  /* footer */
  --white:           #ffffff;
  --bg:              #F8F6F1;  /* sayfa arka planı (krem) */
  --light:           #F8F6F1;  /* form alanı arka planı */
  --text:            #222222;  /* ana yazı */
  --muted:           #666666;  /* ikincil yazı */
  --line:            rgba(255, 255, 255, 0.08);

  --gold:            #C98A2C;
  --gold-2:          #dba24a;
  --accent:          #C98A2C;
  --gradient-gold:   linear-gradient(135deg, #dba24a 0%, #C98A2C 55%, #b3791f 100%);

  --shadow-sm:       0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-md:       0 12px 32px rgba(0, 0, 0, 0.18);
  --shadow-lg:       0 24px 60px rgba(0, 0, 0, 0.28);

  --radius:          16px;
  --radius-sm:       10px;
  --container:       1200px;
  --transition:      0.3s cubic-bezier(0.4, 0, 0.2, 1);

  --font-head:       'Poppins', sans-serif;
  --font-body:       'Inter', sans-serif;
}

/* -------- RESET -------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.2;
  font-weight: 700;
}

/* -------- DÜZEN YARDIMCILARI -------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section--dark {
  background: var(--anthracite);
  color: var(--white);
}

.section__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.section__tag {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section__title {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section__subtitle {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.section--dark .section__subtitle {
  color: rgba(255, 255, 255, 0.65);
}

/* -------- BUTONLAR (sade · premium · kurumsal) -------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.2px;
  padding: 13px 26px;
  border-radius: 10px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

/* Birincil — logo altın tonu, dolu ve sade */
.btn--primary {
  background-color: var(--gold);
  color: #1a1a1a;
  box-shadow: 0 3px 10px rgba(28, 28, 28, 0.12);
}
.btn--primary:hover {
  background-color: #b3791f; /* hafif koyulaşma */
  transform: translateY(-2px);
}

/* İkincil — koyu zeminde ince çerçeveli, şeffaf */
.btn--ghost {
  background-color: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn--ghost:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 15px 32px;
  font-size: 15.5px;
}

.hero .btn--lg {
  padding: 16px 34px;
}

.btn--block {
  width: 100%;
}

/* -------- HEADER -------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 10px 0;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(28, 28, 28, 0.92);
  backdrop-filter: blur(12px);
  padding: 8px 0;
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 24px;
  color: var(--white);
  letter-spacing: 0.5px;
}

/* Görsel logo — oran korunur (genişlikten boyutlanır), dikeyde ortalı */
.logo__img {
  display: block;
  height: 66px;
  width: auto;
  object-fit: contain;
}

.logo__by {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav__list {
  display: flex;
  gap: 28px;
}

.nav__link {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 14.5px;
  position: relative;
  transition: var(--transition);
}

.nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  transition: var(--transition);
}

.nav__link:hover {
  color: var(--white);
}

.nav__link:hover::after {
  width: 100%;
}

/* Header içi mobil "Teklif Al" — masaüstünde gizli (nav'da zaten var) */
.header__cta {
  display: none;
}

/* -------- HAMBURGER -------- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1100;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* -------- HERO -------- */
.hero {
  position: relative;
  isolation: isolate; /* kendi stacking context'i: video arka plan görselinin üstünde kalır */
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0; /* .hero arka plan görselinin (fallback) üstünde, overlay'in altında */
}

/* Video yoksa yedek görsel.
   Görsel en üst katmanda: yüklenirse belirgin görünür, 404 olursa altındaki
   premium gradient + altın ışıltılar görünür kalır (asla düz siyah değil). */
.hero {
  background-color: #141414;
  background-image:
    url('assets/hero-bg.jpg?v=1'),
    radial-gradient(circle at 78% 22%, rgba(201, 138, 44, 0.30), transparent 55%),
    radial-gradient(circle at 12% 88%, rgba(201, 138, 44, 0.16), transparent 52%),
    linear-gradient(135deg, #25211a 0%, #1C1C1C 50%, #121212 100%);
  background-size: cover, auto, auto, auto;
  background-position: center, center, center, center;
  background-repeat: no-repeat;
}

/* Yön verilmiş yumuşak overlay: yazının olduğu sol taraf okunur kalır,
   sağ tarafta görsel/video daha çok ortaya çıkar. */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1; /* videonun üstünde */
  background:
    linear-gradient(90deg, rgba(18, 18, 18, 0.82) 0%, rgba(18, 18, 18, 0.55) 52%, rgba(18, 18, 18, 0.28) 100%),
    linear-gradient(180deg, rgba(18, 18, 18, 0.35) 0%, rgba(18, 18, 18, 0) 42%, rgba(18, 18, 18, 0.55) 100%);
}

.hero__content {
  position: relative;
  z-index: 2; /* overlay ve videonun üstünde — yazılar net */
  max-width: 820px;
  padding-top: 96px;
  padding-bottom: 96px;
  animation: fadeUp 1s ease both;
}

.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-2);
  padding: 8px 16px;
  margin-bottom: 24px;
  border: 1px solid rgba(201, 138, 44, 0.4);
  border-radius: 50px;
  background: rgba(201, 138, 44, 0.08);
  backdrop-filter: blur(4px);
}

.hero__title {
  font-size: clamp(36px, 5.4vw, 60px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
  max-width: 16ch;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
}

.hero__desc {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.94);
  max-width: 600px;
  margin-bottom: 40px;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.4);
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2; /* overlay'in üstünde görünür */
  width: 26px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.hero__scroll span {
  width: 4px;
  height: 8px;
  background: var(--gold-2);
  border-radius: 4px;
  animation: scrollDot 1.6s infinite;
}

@keyframes scrollDot {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* -------- GRID -------- */
.grid {
  display: grid;
  gap: 28px;
}

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

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

/* -------- KARTLAR -------- */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

/* -------- HİZMET KARTLARI -------- */
.service-card {
  position: relative;
  overflow: hidden;
  padding: 34px 30px;
  border: 1px solid rgba(28, 28, 28, 0.06);
  border-radius: 18px;
}

/* Üstte hover'da beliren ince altın aksan */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201, 138, 44, 0.25);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(201, 138, 44, 0.16), rgba(201, 138, 44, 0.06));
  border: 1px solid rgba(201, 138, 44, 0.18);
  margin-bottom: 22px;
  transition: var(--transition);
}

.service-card__icon svg {
  width: 28px;
  height: 28px;
}

.service-card:hover .service-card__icon {
  transform: scale(1.06);
  background: linear-gradient(135deg, rgba(201, 138, 44, 0.26), rgba(201, 138, 44, 0.12));
}

.service-card h3 {
  font-size: 19.5px;
  letter-spacing: -0.2px;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

/* -------- NEDEN BİZ -------- */
.why__item {
  padding: 30px 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(160deg, var(--anthracite-2) 0%, var(--anthracite) 100%);
  transition: var(--transition);
}

.why__item:hover {
  border-color: rgba(201, 138, 44, 0.45);
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

/* İkon + numara üst satırı */
.why__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.why__icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-2);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(201, 138, 44, 0.22), rgba(201, 138, 44, 0.09));
  border: 1px solid rgba(201, 138, 44, 0.28);
}

.why__icon svg {
  width: 25px;
  height: 25px;
}

.why__num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 30px;
  line-height: 1;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.9;
}

.why__item h4 {
  font-size: 17.5px;
  margin-bottom: 8px;
}

.why__item p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14.5px;
  line-height: 1.65;
}

/* -------- PROJELER GALERİSİ -------- */
/* GERÇEK GÖRSEL kartın zeminidir (img, z-index:1, kartı tamamen kaplar).
   Üstte yalnızca yazı okunurluğu için alttan koyu, hafif bir gradient (::before)
   bulunur. Emoji/ikon yer tutucu YOKTUR; görselin üstü tamamen kapatılmaz. */
.project {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4 / 3;
  /* Görsel yüklenene kadar görünecek nötr koyu zemin */
  background: linear-gradient(140deg, #2a2722 0%, #1C1C1C 70%, #161616 100%);
}

/* Gerçek görsel — kartın görsel zemini */
.project img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 1;
  z-index: 1;
  transition: transform 0.6s ease;
}

.project:hover img {
  transform: scale(1.08);
}

/* Yazı okunurluğu için hafif gradient — yalnızca alt kısım koyulaşır */
.project::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0) 75%);
  z-index: 2;
  pointer-events: none;
}

.project__caption {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--white);
  opacity: 0;
  transition: var(--transition);
}

.project:hover .project__caption {
  opacity: 1;
}

.project__caption h4 {
  font-size: 19px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.project__caption span {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-2);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 4px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

/* -------- HAKKIMIZDA GÖRSELİ -------- */
/* Aynı mantık: gerçek görsel birincil, "BY Dekor" yer tutucusu arkada */
.about__media {
  position: relative;
  aspect-ratio: 4 / 3;
  max-height: 520px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--anthracite-2), var(--anthracite-3));
}
.about__media::before {
  content: 'BY Dekor';
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 30px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.22);
}

/* -------- ÇALIŞMA SÜRECİ (yatay timeline) -------- */
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  position: relative;
}

/* Adımları birbirine bağlayan ince altın çizgi (yalnızca masaüstü) */
.process::before {
  content: '';
  position: absolute;
  top: 52px; /* numara dairesinin dikey merkezi */
  left: 9%;
  right: 9%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201, 138, 44, 0.45) 12%, rgba(201, 138, 44, 0.45) 88%, transparent);
  z-index: 0;
}

.process__step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 24px 16px 0;
}

.process__num {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 22px;
  color: var(--dark);
  background: var(--gradient-gold);
  box-shadow: 0 8px 22px rgba(201, 138, 44, 0.4), 0 0 0 7px rgba(201, 138, 44, 0.1);
}

.process__step h4 {
  font-size: 17.5px;
  margin-bottom: 8px;
}

.process__step p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14.5px;
  line-height: 1.6;
}

/* -------- HAKKIMIZDA -------- */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.about__media img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__text .section__title {
  text-align: left;
  margin-top: 14px;
}

.about__text p {
  color: var(--muted);
  margin-bottom: 18px;
}

.about__stats {
  display: flex;
  gap: 36px;
  margin: 28px 0 32px;
  flex-wrap: wrap;
}

.stat__num {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 34px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat__label {
  font-size: 14px;
  color: var(--muted);
}

/* -------- YORUMLAR -------- */
.review-card {
  padding: 32px 28px;
  background: var(--anthracite-2);
  border: 1px solid var(--line);
}

.review-card__stars {
  color: var(--gold-2);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.review-card p {
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  margin-bottom: 24px;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--dark);
  background: var(--gradient-gold);
}

.review-card__author strong {
  display: block;
  color: var(--white);
}

.review-card__author span {
  font-size: 13px;
  color: var(--gold-2);
}

/* -------- İLETİŞİM -------- */
.contact {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 28px;
  align-items: center;
}

.contact__form {
  padding: 36px;
  border: 1px solid #eef0f3;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1.5px solid #e2e5ea;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 16px; /* 16px: iOS odaklanınca otomatik yakınlaştırmayı engeller */
  color: var(--anthracite);
  background: var(--light);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(201, 138, 44, 0.12);
}

.form-group textarea {
  resize: vertical;
}

.form-success {
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: rgba(46, 160, 90, 0.12);
  color: #1f8a4c;
  font-weight: 600;
  text-align: center;
}
/* Gönderim hatası durumu */
.form-success--error {
  background: rgba(201, 60, 60, 0.1);
  color: #c0392b;
}

/* İletişim bilgi kartları */
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact__card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px;
  border: 1px solid #eef0f3;
}

.contact__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.contact__icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(201, 138, 44, 0.16), rgba(201, 138, 44, 0.08));
}

.contact__icon svg {
  width: 23px;
  height: 23px;
}

.contact__label {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 2px;
}

.contact__card a,
.contact__card span:not(.contact__label) {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--anthracite);
}
/* İki telefon numarası alt alta dizilsin */
.contact__card a {
  display: block;
  line-height: 1.55;
  transition: color 0.2s ease;
}
.contact__card a:hover { color: var(--gold); }

/* -------- FOOTER (modern · premium) -------- */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 64px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 44px;
}

/* Marka logosu (ekstra arka plan/kutu/gölge yok) */
.footer__logo {
  display: inline-block;
  margin-bottom: 18px;
}
.footer__logo img {
  display: block;
  height: 92px;
  width: auto;
}

.footer__brand p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 22px;
  max-width: 320px;
}

/* Kolon başlıkları — kurumsal, altın aksan çizgili */
.footer__col h4 {
  position: relative;
  color: var(--white);
  font-size: 16px;
  letter-spacing: 0.3px;
  margin-bottom: 20px;
  padding-bottom: 11px;
}
.footer__col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2px;
  background: var(--gradient-gold);
}

.footer__col ul li {
  margin-bottom: 11px;
}

.footer__col ul a,
.footer__contact a,
.footer__contact span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  transition: color 0.2s ease;
}
.footer__col ul a:hover,
.footer__contact a:hover {
  color: var(--gold-2);
}

/* İletişim satırları — modern çizgi ikon + hizalı */
.footer__contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 13px;
}
.footer__contact li svg {
  width: 17px;
  height: 17px;
  color: var(--gold);
  flex-shrink: 0;
}

/* Sosyal ikonlar — soft kare, antrasit zemin, hover'da altın aksan (glow yok) */
.socials {
  display: flex;
  gap: 10px;
}
.social {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.72);
  transition: var(--transition);
}
.social svg { width: 18px; height: 18px; }
.social:hover {
  border-color: var(--gold);
  color: var(--gold-2);
  background: rgba(201, 138, 44, 0.1);
}

/* Alt copyright — ince üst çizgi, ortalı, sade */
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

/* -------- SABİT WHATSAPP BUTONU -------- */
/* WhatsApp baloncuk — yalnızca ikon, sade ve profesyonel (parlama/pulse yok) */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.whatsapp-float:hover {
  background-color: #1ebe5b;
  transform: translateY(-2px);
}

.whatsapp-float__text {
  display: none; /* sadece ikon */
}

.whatsapp-float__icon {
  display: inline-flex;
}

.whatsapp-float__icon svg {
  width: 27px;
  height: 27px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* ---- Tablet ---- */
@media (max-width: 992px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--5 { grid-template-columns: repeat(3, 1fr); }
  .about__inner { grid-template-columns: 1fr; gap: 40px; }
  .about__media { order: 2; }
  .contact { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process::before { display: none; } /* yatay çizgi sadece geniş ekranda */
  .regions-sec__inner { grid-template-columns: 1fr; gap: 36px; }
}

/* ============================================================
   MOBİL (≤768)  —  birincil öncelik
   ============================================================ */
@media (max-width: 768px) {
  html { scroll-padding-top: 92px; }

  .container { padding: 0 20px; }
  .section { padding: 54px 0; }
  .section__head { margin-bottom: 32px; }
  .section__subtitle { font-size: 16px; }

  /* ---- Header: kompakt, sade, premium ---- */
  .header { padding: 9px 0; }
  .header.scrolled { padding: 7px 0; }
  .logo { font-size: 22px; }
  .logo__img { height: 54px; }

  .header__cta {
    display: inline-flex;
    margin-left: auto;
    padding: 10px 18px;
    font-size: 13.5px;
  }

  .hamburger { display: flex; margin-left: 14px; }

  /* Off-canvas mobil menü */
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 330px;
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    padding: 0 28px;
    background: rgba(28, 28, 28, 0.98);
    backdrop-filter: blur(14px);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.4);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .nav.open { right: 0; }
  .nav__list { flex-direction: column; text-align: center; gap: 22px; }
  .nav__link { font-size: 20px; }
  .nav__cta { width: 100%; padding: 15px; font-size: 16px; }

  /* ---- Hero (sade & ferah, dikeyde ortalı) ---- */
  .hero { min-height: 90vh; min-height: 90svh; }
  .hero__content { max-width: 100%; padding-top: 80px; padding-bottom: 70px; }
  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(18, 18, 18, 0.55) 0%, rgba(18, 18, 18, 0.32) 45%, rgba(18, 18, 18, 0.68) 100%);
  }
  .hero__eyebrow { margin-bottom: 20px; }
  .hero__title { font-size: clamp(25px, 5.6vw, 32px); line-height: 1.25; max-width: 15ch; margin-bottom: 16px; }
  .hero__desc { font-size: 15px; line-height: 1.55; max-width: 90%; margin-bottom: 28px; }
  .hero__actions { flex-direction: row; flex-wrap: wrap; gap: 12px; }
  .hero__actions .btn { width: auto; }
  .hero .btn--lg { padding: 13px 22px; font-size: 14.5px; }
  .hero .hero__trust { display: none; } /* mobilde sadeleştir — video daha çok görünsün */
  .hero__scroll { display: none; }

  /* ---- Tek sütun kartlar ---- */
  .grid--3, .grid--5 { grid-template-columns: 1fr; gap: 18px; }

  /* Hizmet kartları */
  .service-card { padding: 28px 24px; }
  .service-card__icon { width: 58px; height: 58px; font-size: 26px; margin-bottom: 18px; }
  .service-card h3 { font-size: 19px; }
  .service-card p { font-size: 15.5px; }
  .service-card:hover { transform: none; box-shadow: var(--shadow-sm); }

  /* Neden biz */
  .why__item { padding: 26px 22px; }
  .why__num { font-size: 24px; }
  .why__item h4 { font-size: 18px; }
  .why__item p { font-size: 15px; color: rgba(255, 255, 255, 0.82); }
  .why__item:hover { transform: none; }

  /* Projeler */
  .project { aspect-ratio: 16 / 11; }
  .project__caption {
    opacity: 1;
  }
  .project:hover img { transform: none; }

  /* Süreç — dikey zaman çizelgesi */
  .process { grid-template-columns: 1fr; gap: 0; max-width: 440px; margin: 0 auto; }
  .process__step {
    text-align: left;
    position: relative;
    padding: 0 0 30px 76px;
    min-height: 62px;
  }
  .process__num {
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
    width: 54px;
    height: 54px;
    font-size: 21px;
  }
  .process__step:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 26px;
    top: 60px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(rgba(201, 138, 44, 0.6), rgba(201, 138, 44, 0.05));
  }
  .process__step h4 { font-size: 18px; }
  .process__step p { font-size: 15px; color: rgba(255, 255, 255, 0.7); }

  /* Hakkımızda */
  .about__text .section__title { font-size: clamp(26px, 7vw, 34px); }
  .about__text p { font-size: 15.5px; }
  .about__stats { gap: 18px; justify-content: space-between; }
  .stat { flex: 1; min-width: 92px; }
  .stat__num { font-size: 28px; }
  .about__text .btn { width: 100%; }

  /* Yorumlar */
  .review-card { padding: 28px 24px; }
  .review-card p { font-size: 15.5px; }

  /* İletişim */
  .form-row { grid-template-columns: 1fr; }
  .contact__form { padding: 26px 20px; }
  .contact__card { padding: 18px; }

  /* Footer — mobilde tek sütun */
  .footer { padding-top: 48px; }
  .footer__inner { grid-template-columns: 1fr; gap: 30px; padding-bottom: 30px; }
  .footer__col h4 { margin-bottom: 16px; }

  /* WhatsApp — dokunması kolay, içeriği kapatmaz */
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
  .whatsapp-float__text { display: none; }
  .whatsapp-float__icon svg { width: 27px; height: 27px; }
}

/* ============================================================
   KÜÇÜK TELEFONLAR (360 / 390 / 414 / 430)
   ============================================================ */
@media (max-width: 430px) {
  .container { padding: 0 16px; }
  .section { padding: 52px 0; }

  .logo { font-size: 21px; }
  .header__cta { padding: 9px 15px; font-size: 13px; }

  .hero__eyebrow { font-size: 12px; padding: 7px 14px; margin-bottom: 22px; }
  .hero__title { font-size: clamp(23px, 6.6vw, 29px); }
  .hero__content { padding-top: 76px; }

  .section__title { font-size: clamp(25px, 7.5vw, 32px); }

  .about__stats { gap: 12px; }
  .stat__num { font-size: 25px; }
  .stat__label { font-size: 13px; }
}

/* ---- Çok küçük (≤360) taşma güvenliği ---- */
@media (max-width: 360px) {
  .stat { min-width: 82px; }
  .hero__actions .btn { padding: 15px 24px; }
}

/* ============================================================
   ÇOK SAYFA — ortak bileşenler
   ============================================================ */

/* Aktif menü linki (bulunduğumuz sayfa) */
.nav__link--active { color: var(--gold-2); }
.nav__link--active::after { width: 100%; }

/* -------- İÇ SAYFA BAŞLIK BANNER'I -------- */
.page-hero {
  position: relative;
  padding: 118px 0 58px;
  text-align: center;
  color: var(--white);
  overflow: hidden;
  background-color: #141414;
  background-image:
    radial-gradient(circle at 78% 18%, rgba(201, 138, 44, 0.28), transparent 55%),
    radial-gradient(circle at 12% 90%, rgba(201, 138, 44, 0.14), transparent 52%),
    linear-gradient(135deg, #25211a 0%, #1C1C1C 52%, #121212 100%);
}

.page-hero__crumb {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 14px;
}

.page-hero__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.page-hero__subtitle {
  max-width: 640px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
}

/* AI üretilen banner görselleri (generate-images.mjs).
   Görsel yoksa koyu overlay #141414 üzerinde kalır → site bozulmaz. */
.page-hero--services,
.page-hero--projects,
.page-hero--about,
.page-hero--contact {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page-hero--services {
  background-image:
    radial-gradient(circle at 80% 18%, rgba(201, 138, 44, 0.14), transparent 55%),
    linear-gradient(rgba(18, 18, 18, 0.72), rgba(18, 18, 18, 0.84)),
    url('assets/banner-services.jpg');
}
.page-hero--projects {
  background-image:
    radial-gradient(circle at 80% 18%, rgba(201, 138, 44, 0.14), transparent 55%),
    linear-gradient(rgba(18, 18, 18, 0.72), rgba(18, 18, 18, 0.84)),
    url('assets/banner-projects.jpg');
}
.page-hero--about {
  background-image:
    radial-gradient(circle at 80% 18%, rgba(201, 138, 44, 0.14), transparent 55%),
    linear-gradient(rgba(18, 18, 18, 0.72), rgba(18, 18, 18, 0.84)),
    url('assets/banner-about.jpg');
}
.page-hero--contact {
  background-image:
    radial-gradient(circle at 80% 18%, rgba(201, 138, 44, 0.14), transparent 55%),
    linear-gradient(rgba(18, 18, 18, 0.72), rgba(18, 18, 18, 0.84)),
    url('assets/banner-contact.jpg');
}

/* -------- "TÜMÜNÜ GÖR" MERKEZ BUTON -------- */
.section__more {
  text-align: center;
  margin-top: 44px;
}

/* -------- HİZMET KARTI "TEKLİF AL" LİNKİ -------- */
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  color: var(--gold);
  transition: gap var(--transition);
}
.service-card__link:hover { gap: 11px; }

/* -------- PROJELER SAYFASI — başlık + açıklama her zaman görünür -------- */
.gallery--page .project { aspect-ratio: 4 / 3; }
.gallery--page .project__caption {
  opacity: 1;
}
.project__caption p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.82);
  margin-top: 5px;
  letter-spacing: 0;
  text-transform: none;
}

/* -------- CTA BANDI (sayfa altı çağrı) -------- */
.cta-band {
  color: var(--white);
  /* Üstte altın ışıltı, altta footer rengine (#141414) doğal geçiş */
  background:
    radial-gradient(circle at 85% 20%, rgba(201, 138, 44, 0.22), transparent 55%),
    linear-gradient(180deg, var(--anthracite) 0%, var(--dark) 100%);
}
.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px 40px;
  padding: 50px 0;
  flex-wrap: wrap;
}
.cta-band h2 {
  font-size: clamp(26px, 4vw, 40px);
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 520px;
}
.cta-band__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* -------- ÇOK SAYFA — MOBİL -------- */
@media (max-width: 768px) {
  .page-hero { padding: 104px 0 46px; }
  .page-hero__subtitle { font-size: 15.5px; }

  .section__more .btn { width: 100%; }

  .cta-band__inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 44px 0;
  }
  .cta-band p { margin: 0 auto; }
  .cta-band__actions { justify-content: center; }
  .cta-band__actions .btn { width: 100%; }
}

@media (max-width: 430px) {
  .page-hero { padding: 96px 0 42px; }
}

/* ============================================================
   KURUMSAL YENİDEN DÜZENLEME — ana sayfa bileşenleri
   ============================================================ */

/* -------- HERO GÜVEN MADDELERİ -------- */
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 30px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  max-width: 620px;
}
.hero__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.92);
}
.hero__trust-item svg {
  width: 19px;
  height: 19px;
  color: var(--gold-2);
  flex-shrink: 0;
}

/* -------- TANITIM ÖZELLİK KUTULARI -------- */
.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 28px 0 30px;
}
.feature-box {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px 18px;
  border: 1px solid #ece8e0;
  border-radius: 12px;
  background: var(--white);
}
.feature-box__icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: var(--gold);
  background: linear-gradient(135deg, rgba(201, 138, 44, 0.16), rgba(201, 138, 44, 0.06));
  border: 1px solid rgba(201, 138, 44, 0.18);
}
.feature-box__icon svg { width: 20px; height: 20px; }
.feature-box span {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.3;
}

/* -------- GÖRSELLİ HİZMET KARTLARI -------- */
.svc-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid #ece8e0;
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201, 138, 44, 0.25);
}
.svc-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #2a2722, #1C1C1C);
}
.svc-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.svc-card:hover .svc-card__media img { transform: scale(1.06); }
.svc-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px 24px 26px;
}
.svc-card__body h3 {
  font-size: 19px;
  letter-spacing: -0.2px;
  margin-bottom: 9px;
}
.svc-card__body p {
  flex: 1;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.65;
  margin-bottom: 16px;
}
.svc-card__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  color: var(--gold);
  transition: gap var(--transition);
}
.svc-card__link svg { width: 16px; height: 16px; }
.svc-card__link:hover { gap: 11px; }

/* -------- HİZMET BÖLGELERİ (chip / pill) -------- */
.regions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 780px;
  margin: 0 auto;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 50px;
  border: 1px solid #e4ddd0;
  background: var(--white);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--text);
  transition: var(--transition);
}
.chip svg { width: 15px; height: 15px; color: var(--gold); flex-shrink: 0; }
.chip:hover {
  border-color: var(--gold);
  background: rgba(201, 138, 44, 0.06);
  transform: translateY(-2px);
}

/* -------- FOOTER SOSYAL SVG -------- */
.social svg { width: 18px; height: 18px; }

/* -------- KURUMSAL BİLEŞENLER — MOBİL -------- */
@media (max-width: 768px) {
  .hero__trust {
    gap: 12px 22px;
    margin-top: 30px;
    padding-top: 22px;
  }
  .hero__trust-item { font-size: 13.5px; }
  .about__features { gap: 12px; }
  .feature-box { padding: 14px 15px; }
}

@media (max-width: 430px) {
  .about__features { grid-template-columns: 1fr; }
  .chip { padding: 10px 16px; font-size: 14px; }
}

/* ============================================================
   MOBİL ALT SABİT AKSİYON BARI  (Ara / WhatsApp / Teklif Al)
   Yalnızca mobilde görünür; script.js tarafından enjekte edilir.
   ============================================================ */
.mobile-bar { display: none; }

@media (max-width: 768px) {
  .mobile-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 900; /* header (1000) menü açıkken üstte kalır */
    background: rgba(20, 20, 20, 0.97);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.35);
    padding-bottom: env(safe-area-inset-bottom); /* iPhone/Android güvenli alan */
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .mobile-bar__btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-height: 60px;
    padding: 9px 6px;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 11.5px;
    letter-spacing: 0.2px;
    color: rgba(255, 255, 255, 0.88);
  }
  .mobile-bar__btn + .mobile-bar__btn {
    border-left: 1px solid rgba(255, 255, 255, 0.09);
  }
  .mobile-bar__btn svg { width: 21px; height: 21px; }
  .mobile-bar__btn--wa { color: #2bd366; }
  .mobile-bar__btn--cta { color: var(--gold-2); }
  .mobile-bar__btn:active { background: rgba(255, 255, 255, 0.06); }

  /* İçerik ve footer alt barın arkasında kalmasın */
  body { padding-bottom: calc(62px + env(safe-area-inset-bottom)); }

  /* Eski sağ-alt WhatsApp float'ı mobilde gizli (artık alt barda var) */
  .whatsapp-float { display: none; }

  /* Menü açıkken alt bar aşağı kayıp gizlensin (çakışma olmasın) */
  body.menu-open .mobile-bar { transform: translateY(110%); }
}

/* ============================================================
   YAPTIĞIMIZ İŞLER — görselli iş kartları (koyu bölüm)
   ============================================================ */
.work-card {
  display: flex;
  flex-direction: column;
  background: var(--anthracite-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.work-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 138, 44, 0.5);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(201, 138, 44, 0.25);
}

.work-card__media {
  height: 190px;
  overflow: hidden;
  background: linear-gradient(135deg, #2a2722, #1C1C1C);
}
.work-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.work-card:hover .work-card__media img { transform: scale(1.06); }

.work-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 22px 24px;
}
.work-card__body h3 {
  font-size: 18.5px;
  color: var(--white);
  letter-spacing: -0.2px;
  margin-bottom: 8px;
}
.work-card__body p {
  flex: 1;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14.5px;
  line-height: 1.65;
  margin-bottom: 16px;
}
.work-card__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--gold-2);
  transition: gap var(--transition);
}
.work-card__link svg { width: 15px; height: 15px; }
.work-card__link:hover { gap: 11px; }

@media (max-width: 768px) {
  .work-card__media { height: 200px; }
}

/* ============================================================
   HİZMET BÖLGELERİ — koyu, premium, dekoratif konum
   ============================================================ */
.regions-sec {
  background:
    radial-gradient(circle at 88% 28%, rgba(201, 138, 44, 0.14), transparent 50%),
    var(--dark);
}
.regions-sec__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  align-items: center;
}
.regions-sec .section__title {
  text-align: left;
  margin-bottom: 0;
}
.regions-sec__desc {
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.7;
  max-width: 540px;
  margin: 14px 0 28px;
}

/* Bölge chip'leri (koyu bölüm — daha okunaklı) */
.regions-sec .regions {
  justify-content: flex-start;
  max-width: none;
  margin: 0;
}
.regions-sec .chip {
  padding: 12px 22px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(201, 138, 44, 0.3);
}
.regions-sec .chip svg { color: var(--gold-2); }
.regions-sec .chip:hover {
  background: rgba(201, 138, 44, 0.14);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* Dekoratif konum (radar/ping) görseli */
.regions-sec__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.regions-ping {
  position: relative;
  width: 230px;
  height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.regions-ping::before,
.regions-ping::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201, 138, 44, 0.22);
}
.regions-ping::before { width: 100%; height: 100%; }
.regions-ping::after { width: 64%; height: 64%; border-color: rgba(201, 138, 44, 0.35); }
.regions-ping__core {
  position: relative;
  z-index: 1;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-2);
  background: linear-gradient(135deg, rgba(201, 138, 44, 0.22), rgba(201, 138, 44, 0.06));
  border: 1px solid rgba(201, 138, 44, 0.4);
  box-shadow: 0 0 40px rgba(201, 138, 44, 0.18);
}
.regions-ping__core svg { width: 40px; height: 40px; }

@media (max-width: 768px) {
  .regions-sec__visual { display: none; } /* mobilde kompakt kalsın */
  .regions-sec .chip { padding: 11px 18px; font-size: 14.5px; }
}

/* ============================================================
   RENK AKIŞI DENGESİ + BÖLÜM RÖTUŞLARI
   ============================================================ */

/* Hizmetler bölümü — Hakkımızda (krem) bölümünden hafif ayrışsın (beyaz + ince çizgi) */
#hizmetler {
  background: #ffffff;
  border-top: 1px solid rgba(28, 28, 28, 0.05);
}

/* Sürecimiz — koyu yerine açık/krem premium (sıcak ton) */
.surec-light {
  background: #f4eee2; /* sıcak açık ton; krem ve beyazdan ayrışır */
}
.surec-light .process__step h4 {
  color: var(--anthracite);
}
.surec-light .process__step p {
  color: #5d5d5d; /* koyu zemin yerine açık zeminde okunaklı */
}

/* Footer — yazılar biraz daha okunaklı (hantal olmadan) */
.footer__brand p { font-size: 15.5px; line-height: 1.75; }
.footer__col h4 { font-size: 17.5px; }
.footer__col ul a,
.footer__contact a,
.footer__contact li { font-size: 15.5px; }
.footer__bottom { font-size: 14.5px; }

/* ============================================================
   WHATSAPP NUMARA SEÇİM KUTUSU (float / alt bar tıklayınca)
   ============================================================ */
.wa-pop {
  position: fixed;
  right: 24px;
  bottom: 92px; /* float butonunun üstünde */
  z-index: 1001;
  width: 252px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.25);
  padding: 10px;
  animation: waPopIn 0.18s ease;
}
.wa-pop[hidden] { display: none; }

@keyframes waPopIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}

.wa-pop__title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 12.5px;
  color: #6a6a6a;
  padding: 8px 10px 6px;
}
.wa-pop__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 12px;
  transition: background 0.15s ease;
}
.wa-pop__item:hover { background: #f4f4f5; }
.wa-pop__item .wa-ic {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wa-pop__item .wa-ic svg { width: 21px; height: 21px; }
.wa-pop__txt strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14.5px;
  color: #1a1a1a;
}
.wa-pop__txt small { font-size: 12px; color: #777; }

@media (max-width: 768px) {
  .wa-pop {
    right: 14px;
    left: 14px;
    width: auto;
    bottom: calc(74px + env(safe-area-inset-bottom)); /* alt barın üstünde */
  }
}
