/* ==========================================================
   Şekermen İnşaat — Ana stil dosyası
   ========================================================== */

:root {
  /* Koyu zeminler — antrasit
     (değişken adları --navy-* olarak kaldı, tüm dosyada bu adla kullanılıyor) */
  --navy-900: #1b1d21;
  --navy-800: #24272c;
  --navy-700: #2e3239;
  --navy-600: #3b4048;

  /* Vurgu rengi — bakır */
  --gold-500: #b5723a;
  --gold-400: #c98a4b;
  --gold-300: #dda66c;

  /* Kaplama ve gölgelerde rgba() için — palet değişirse bunlar da değişmeli */
  --navy-rgb: 27, 29, 33;
  --gold-rgb: 201, 138, 75;

  --gray-50:  #f7f8fa;
  --gray-100: #eef0f4;
  --gray-200: #dde1e8;
  --gray-400: #9aa3b2;
  --gray-600: #5b6675;
  --gray-800: #2c3644;

  --white: #ffffff;

  --font: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --radius:    14px;
  --radius-sm: 8px;
  --shadow:    0 4px 24px rgba(var(--navy-rgb), .08);
  --shadow-lg: 0 18px 50px rgba(var(--navy-rgb), .16);

  --header-h: 84px;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button, input, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }

:focus-visible {
  outline: 3px solid var(--gold-400);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Dikey gizleme: left:-9999px RTL'de yatay taşma yaratıp sayfayı boşaltır */
.skip-link {
  position: absolute; top: 0; left: 0; z-index: 999;
  background: var(--gold-500); color: #fff; padding: .8rem 1.4rem; font-weight: 700;
  transform: translateY(-200%);
  transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); }

/* ---------- Layout ---------- */
.container { width: min(1240px, 100% - 3rem); margin-inline: auto; }

.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section-alt { background: var(--gray-50); }

.section-head { max-width: 720px; margin-bottom: 3rem; }
.section-head.center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-500); margin-bottom: .9rem;
}
.eyebrow::before {
  content: ''; width: 28px; height: 2px; background: var(--gold-500);
}
.section-head.center .eyebrow::before { display: none; }

h1, h2, h3, h4 { line-height: 1.18; font-weight: 800; color: var(--navy-900); letter-spacing: -.02em; }
h1 { font-size: clamp(2.1rem, 5.2vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }

.lead { font-size: clamp(1rem, 1.6vw, 1.14rem); color: var(--gray-600); margin-top: 1rem; }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.9rem;
  border-radius: var(--radius-sm);
  font-weight: 700; font-size: .95rem;
  border: 2px solid transparent;
  transition: transform .25s var(--ease), background .25s, color .25s, border-color .25s, box-shadow .25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--gold-500); color: #fff; border-color: var(--gold-500); }
.btn-primary:hover { background: var(--gold-400); border-color: var(--gold-400); box-shadow: 0 10px 26px rgba(var(--gold-rgb), .34); }

.btn-dark { background: var(--navy-800); color: #fff; border-color: var(--navy-800); }
.btn-dark:hover { background: var(--navy-700); border-color: var(--navy-700); }

.btn-outline { background: transparent; border-color: currentColor; }
.btn-outline:hover { background: var(--navy-900); color: #fff; border-color: var(--navy-900); }

.btn-ghost-light { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.35); backdrop-filter: blur(6px); }
.btn-ghost-light:hover { background: #fff; color: var(--navy-900); border-color: #fff; }

.btn-sm { padding: .6rem 1.1rem; font-size: .85rem; }
.btn-block { width: 100%; }

/* ==========================================================
   Header
   ========================================================== */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background .35s var(--ease), height .35s var(--ease), box-shadow .35s;
  background: linear-gradient(to bottom, rgba(var(--navy-rgb),.75), transparent);
}
.site-header.scrolled,
.site-header.solid {
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  height: 70px;
  box-shadow: 0 1px 0 var(--gray-200), var(--shadow);
}

.header-inner { display: flex; align-items: center; gap: 1.5rem; width: min(1240px, 100% - 3rem); margin-inline: auto; }

/* Logo */
.logo { display: flex; align-items: center; gap: .7rem; margin-right: auto; }
.logo-mark {
  width: 42px; height: 42px; flex: none;
  display: grid; place-items: center;
  background: var(--gold-500); color: #fff;
  border-radius: 10px;
  font-weight: 800; font-size: 1.35rem;
  transition: transform .3s var(--ease);
}
.logo:hover .logo-mark { transform: rotate(-6deg) scale(1.05); }
.logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.logo-text strong { font-size: 1.08rem; font-weight: 800; letter-spacing: .04em; color: #fff; transition: color .35s; }
.logo-text small  { font-size: .68rem; letter-spacing: .3em; color: var(--gold-400); font-weight: 600; }

.site-header.scrolled .logo-text strong,
.site-header.solid .logo-text strong { color: var(--navy-900); }

/* Menü */
.main-nav { display: flex; align-items: center; gap: 2.2rem; }
.main-nav > ul { display: flex; align-items: center; gap: 2.1rem; }

.main-nav a {
  position: relative;
  font-weight: 600; font-size: .95rem;
  color: rgba(255,255,255,.92);
  padding: .4rem 0;
  transition: color .3s;
}
.main-nav a::after {
  content: ''; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--gold-400);
  transition: width .3s var(--ease);
}
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.main-nav a.active { color: var(--gold-300); }

.site-header.scrolled .main-nav a,
.site-header.solid .main-nav a { color: var(--gray-800); }
.site-header.scrolled .main-nav a.active,
.site-header.solid .main-nav a.active { color: var(--gold-500); }

/* Başlık çipleri — telefon ve dil seçici aynı ölçü ve dili paylaşır */
.header-phone,
.lang-toggle {
  display: flex; align-items: center;
  height: 44px; padding: 0 .85rem;
  border: 1.5px solid rgba(255,255,255,.28);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(6px);
  color: #fff;
  transition: background .25s, border-color .25s, color .25s, transform .25s var(--ease);
}
.header-phone:hover,
.lang-toggle:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.55); transform: translateY(-1px); }

/* Telefon */
.header-phone { gap: .6rem; }
.hp-icon {
  width: 30px; height: 30px; flex: none; border-radius: 8px;
  display: grid; place-items: center;
  background: var(--gold-500); color: #fff;
  transition: transform .3s var(--ease), background .25s;
}
.header-phone:hover .hp-icon { background: var(--gold-400); transform: scale(1.06) rotate(-6deg); }
.hp-text { display: flex; flex-direction: column; line-height: 1.1; }
.hp-text small {
  font-size: .62rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  color: var(--gold-300); transition: color .25s;
}
.hp-text strong { font-size: .88rem; font-weight: 800; letter-spacing: .01em; white-space: nowrap; }

/* Dil seçici */
.lang-switcher { position: relative; }
.lang-toggle { gap: .5rem; font-weight: 700; font-size: .82rem; }
.lang-caret { opacity: .65; transition: transform .25s var(--ease); }
.lang-switcher.open .lang-caret { transform: rotate(180deg); }

/* SVG bayrak — yuvarlatılmış, ince çerçeveli */
.lang-flag {
  width: 22px; height: 15.4px; flex: none;
  border-radius: 3px; overflow: hidden; line-height: 0;
  box-shadow: 0 0 0 1px rgba(0,0,0,.12), 0 1px 2px rgba(0,0,0,.15);
}
.lang-flag svg { width: 100%; height: 100%; display: block; }

/* Başlık beyaza döndüğünde koyu varyant */
.site-header.scrolled .header-phone,
.site-header.solid   .header-phone,
.site-header.scrolled .lang-toggle,
.site-header.solid   .lang-toggle {
  color: var(--navy-900);
  background: var(--white);
  border-color: var(--gray-200);
  backdrop-filter: none;
}
.site-header.scrolled .header-phone:hover,
.site-header.solid   .header-phone:hover,
.site-header.scrolled .lang-toggle:hover,
.site-header.solid   .lang-toggle:hover { background: var(--gray-50); border-color: var(--gold-400); }

.site-header.scrolled .hp-text small,
.site-header.solid   .hp-text small { color: var(--gold-500); }

.lang-menu {
  position: absolute; top: calc(100% + .7rem); right: 0;
  min-width: 216px;
  background: #fff; border-radius: 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
  padding: .45rem;
  opacity: 0; visibility: hidden; transform: translateY(-8px) scale(.98); transform-origin: top right;
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
  z-index: 60;
}
.lang-switcher.open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }

/* Menüyü çipe bağlayan küçük ok */
.lang-menu::before {
  content: ''; position: absolute; top: -6px; right: 20px;
  width: 12px; height: 12px; background: #fff;
  border-left: 1px solid var(--gray-100); border-top: 1px solid var(--gray-100);
  transform: rotate(45deg);
}

.lang-menu-head {
  font-size: .66rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gray-400); padding: .5rem .7rem .45rem;
}

.lang-menu button {
  position: relative;
  display: flex; align-items: center; gap: .7rem;
  width: 100%; padding: .62rem .7rem;
  border-radius: 8px;
  font-size: .92rem; font-weight: 600; color: var(--gray-800);
  text-align: left;
  transition: background .2s, color .2s;
}
.lang-menu .lang-name { margin-right: auto; }
.lang-menu .lang-code {
  font-size: .68rem; font-weight: 800; letter-spacing: .05em;
  color: var(--gray-400); transition: color .2s;
}
.lang-menu .lang-check { position: absolute; right: .7rem; opacity: 0; font-weight: 800; font-size: .8rem; transition: opacity .2s; }
.lang-menu button:hover { background: var(--gray-50); }
.lang-menu button:hover .lang-flag { transform: scale(1.08); }
.lang-menu .lang-flag { transition: transform .2s var(--ease); }
.lang-menu button.active { background: rgba(var(--gold-rgb),.12); color: var(--gold-500); }
.lang-menu button.active .lang-name { color: var(--navy-900); }
.lang-menu button.active .lang-code { display: none; }
.lang-menu button.active .lang-check { opacity: 1; color: var(--gold-500); }

/* Hamburger */
.nav-toggle { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; gap: 5px; padding: 0 8px; }
.nav-toggle span { display: block; height: 2.5px; width: 100%; background: #fff; border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.site-header.scrolled .nav-toggle span,
.site-header.solid .nav-toggle span { background: var(--navy-900); }
.nav-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ==========================================================
   Hero
   ========================================================== */
.hero { position: relative; min-height: min(84vh, 700px); display: flex; align-items: center; background: var(--navy-900); overflow: hidden; }

.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 34%;
  opacity: 0;
  transition: opacity 1.4s var(--ease);
  will-change: opacity;
  filter: saturate(1.12) contrast(1.02) brightness(1.04);
}
/* Banner: zoom (Ken Burns) yok, görsel sabit ve tam görünür */
.hero-slide.active { opacity: 1; }
.hero-slides::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 52%, rgba(var(--navy-rgb),.55) 100%),
    linear-gradient(100deg,
      rgba(var(--navy-rgb),.90) 0%,
      rgba(var(--navy-rgb),.66) 30%,
      rgba(var(--navy-rgb),.34) 52%,
      rgba(var(--navy-rgb),.08) 76%,
      rgba(var(--navy-rgb),.02) 100%);
}

.hero-content { position: relative; z-index: 2; padding-top: var(--header-h); max-width: 720px; }
.hero-content .eyebrow { color: var(--gold-400); }
.hero h1 { color: #fff; }
.hero h1 em { font-style: normal; color: var(--gold-400); }
.hero p { color: rgba(255,255,255,.82); font-size: clamp(1rem, 1.7vw, 1.18rem); margin: 1.4rem 0 2.3rem; max-width: 560px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; }

.hero-stats {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1px;
  margin-top: 4rem;
  background: rgba(255,255,255,.14);
  border-radius: var(--radius); overflow: hidden;
}
.hero-stat { background: rgba(var(--navy-rgb),.55); backdrop-filter: blur(8px); padding: 1.6rem 1.3rem; }
.hero-stat strong { display: block; font-size: clamp(1.8rem, 3.4vw, 2.4rem); color: var(--gold-400); font-weight: 800; line-height: 1; }
.hero-stat span { font-size: .84rem; color: rgba(255,255,255,.7); font-weight: 600; }

.hero-dots { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; gap: .55rem; }
.hero-dots button {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(255,255,255,.4);
  transition: background .3s, width .3s var(--ease);
}
.hero-dots button.active { background: var(--gold-400); width: 28px; border-radius: 5px; }

/* Aktif slayt başlığı (sağ alt) */
.hero-caption { position: absolute; right: clamp(1rem, 4vw, 3rem); bottom: 2.4rem; z-index: 3; }
.hero-caption-item {
  display: none; text-align: right;
  padding: .7rem 1.1rem; border-radius: var(--radius);
  background: rgba(var(--navy-rgb),.5); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff; transition: transform .3s var(--ease), border-color .3s;
}
.hero-caption-item.active { display: block; animation: capIn .7s var(--ease) both; }
.hero-caption-item:hover { transform: translateY(-3px); border-color: var(--gold-400); }
.hero-caption-item .hcap-title { display: block; font-weight: 700; font-size: 1rem; }
.hero-caption-item .hcap-sub { display: block; font-size: .82rem; color: rgba(255,255,255,.72); margin-top: .15rem; }
@keyframes capIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }

/* Aşağı kaydır göstergesi */
.hero-scroll {
  position: absolute; left: clamp(1.5rem, 4vw, 4rem); bottom: 2rem; z-index: 3;
  display: flex; align-items: center; gap: .6rem;
  color: rgba(255,255,255,.7); font-size: .78rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  transition: color .3s;
}
.hero-scroll:hover { color: var(--gold-400); }
.hero-scroll-mouse {
  width: 22px; height: 36px; border: 2px solid currentColor; border-radius: 12px;
  display: inline-flex; justify-content: center; padding-top: 6px;
}
.hero-scroll-mouse span {
  width: 3px; height: 7px; border-radius: 3px; background: currentColor;
  animation: scrollDot 1.6s var(--ease) infinite;
}
@keyframes scrollDot { 0% { opacity: 0; transform: translateY(-4px); } 40% { opacity: 1; } 80%,100% { opacity: 0; transform: translateY(8px); } }
@media (prefers-reduced-motion: reduce) { .hero-scroll-mouse span { animation: none; } }

/* ---------- Split kart hero (anasayfa) ---------- */
.hero-split {
  position: relative; background: var(--navy-900); overflow: hidden;
  padding: calc(var(--header-h) + clamp(2rem, 5vw, 4rem)) 0 clamp(2.5rem, 5vw, 4.5rem);
}
.hero-split::before {
  content: ''; position: absolute; top: -20%; right: -8%; width: 46%; height: 95%;
  background: radial-gradient(closest-side, rgba(var(--gold-rgb), .16), transparent 72%);
  pointer-events: none;
}
.hero-split::after {  /* ince blueprint ızgara dokusu */
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(circle at 72% 45%, #000, transparent 70%);
          mask-image: radial-gradient(circle at 72% 45%, #000, transparent 70%);
}
.hero-split-inner {
  position: relative; z-index: 1; display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(1.8rem, 4vw, 4rem); align-items: center;
}

/* Sol içerik */
.hs-content { position: relative; }
.hs-panel { animation: hsIn .55s var(--ease) both; }
.hs-panel[hidden] { display: none; }
@keyframes hsIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.hs-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .5rem .95rem; border-radius: 100px;
  background: rgba(var(--gold-rgb), .14); border: 1px solid rgba(var(--gold-rgb), .42);
  color: var(--gold-300, #d9a066); font-size: .73rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
}
.hs-title {
  color: #fff; font-weight: 800; line-height: 1.08;
  font-size: clamp(1.9rem, 4vw, 3.05rem); margin: 1.1rem 0 .9rem;
}
.hs-desc {
  color: rgba(255,255,255,.76); line-height: 1.6;
  font-size: clamp(1rem, 1.5vw, 1.1rem); max-width: 46ch; margin-bottom: 2rem;
}
.hs-actions { display: flex; flex-wrap: wrap; gap: .8rem; }

/* Kontroller (sayaç + çubuklar + oklar) */
.hs-controls {
  display: flex; align-items: center; gap: clamp(1rem, 3vw, 2.2rem);
  margin-top: clamp(2rem, 4vw, 3rem); padding-top: 1.6rem;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hs-counter { font-weight: 800; letter-spacing: .04em; }
.hs-cur { color: var(--gold-400); font-size: 1.5rem; }
.hs-sep { color: rgba(255,255,255,.3); margin: 0 .35rem; }
.hs-total { color: rgba(255,255,255,.5); font-size: .95rem; }
.hs-bars { display: flex; gap: .5rem; flex: 1; }
.hs-bar {
  height: 4px; flex: 0 1 34px; max-width: 48px;
  border-radius: 4px; background: rgba(255,255,255,.18);
  border: 0; padding: 0; cursor: pointer; transition: background .3s, flex-basis .3s;
}
.hs-bar.active { background: var(--gold-400); flex-basis: 48px; }
.hs-arrows { display: flex; gap: .6rem; }
.hs-prev, .hs-next {
  width: 46px; height: 46px; border-radius: 50%; cursor: pointer;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.22); color: #fff;
  font-size: 1.4rem; line-height: 1; display: inline-flex; align-items: center; justify-content: center;
  transition: background .25s, border-color .25s, transform .25s;
}
.hs-prev:hover, .hs-next:hover { background: var(--gold-500); border-color: var(--gold-500); transform: translateY(-2px); }

/* Sağ görsel kartlar */
.hs-media { position: relative; aspect-ratio: 3 / 2; }
/* Kemerli (portal) siluet — üstü kavisli, mimari çerçeve */
.hs-card {
  position: absolute; inset: 14px; z-index: 1; overflow: hidden;
  border-radius: 34% 34% 12px 12px / 24% 24% 12px 12px;
  opacity: 0; visibility: hidden; transform: scale(1.02);
  transition: opacity .7s var(--ease), transform .7s var(--ease), visibility .7s;
  box-shadow: 0 30px 60px -22px rgba(0,0,0,.62);
}
.hs-card.active { opacity: 1; visibility: visible; transform: none; }
.hs-card img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; display: block; }
.hs-status {
  color: #fff; padding: .38rem .85rem; border-radius: 100px;
  font-size: .74rem; font-weight: 700; white-space: nowrap; flex-shrink: 0;
}
.hs-metabar {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: .45rem 1.2rem; padding: 2.4rem 1.4rem 1.2rem; color: #fff;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.74));
}
.hs-m { display: inline-flex; align-items: center; gap: .42rem; font-size: .85rem; font-weight: 600; }
.hs-m svg { width: 15px; height: 15px; fill: var(--gold-400); flex-shrink: 0; }
.hs-m-spec { color: rgba(255,255,255,.88); font-weight: 500; }

/* Katmanlı kemer çerçevesi (kartın arkasından taşar) + tecrübe mührü */
.hs-frame {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  border-radius: 38% 38% 18px 18px / 26% 26% 18px 18px;
  padding: 4px;
  /* Metalik bakır sheen — açık → koyu → açık */
  background: linear-gradient(135deg,
    #f2cd93 0%, #c98a4b 28%, #8a5a2e 50%, #e6b378 72%, #b5723a 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  filter: drop-shadow(0 3px 9px rgba(var(--gold-rgb), .38));
}
.hs-seal {
  position: absolute; left: -26px; top: 50%; transform: translateY(-50%); z-index: 3;
  display: flex; align-items: center; gap: .6rem;
  padding: .85rem 1.15rem; border-radius: 16px;
  background: var(--navy-800); border: 1px solid rgba(var(--gold-rgb), .38);
  box-shadow: 0 18px 38px -14px rgba(0,0,0,.65);
}
.hs-seal strong { color: var(--gold-400); font-size: 1.9rem; font-weight: 800; line-height: 1; }
.hs-seal span { font-size: .72rem; font-weight: 600; line-height: 1.15; color: rgba(255,255,255,.75); }

/* Mobil: üstte görsel banner, altta içerik */
@media (max-width: 860px) {
  .hero-split-inner { grid-template-columns: 1fr; gap: 1.6rem; }
  .hs-media { order: -1; }
  .hs-desc { max-width: none; }
  .hs-controls { margin-top: 1.8rem; }
  .hs-seal { left: 12px; top: auto; bottom: 12px; transform: none; padding: .7rem .95rem; }
  .hs-seal strong { font-size: 1.5rem; }
}
@media (max-width: 480px) {
  /* Mobilde kart ve çerçeve aynı yuvarlak-dikdörtgen biçimde, iç içe otursun */
  .hs-card  { border-radius: 16px; inset: 9px; }
  .hs-frame { border-radius: 22px; }   /* kart 16px + 9px iç boşluk → eş merkezli */
  .hs-controls { flex-wrap: wrap; gap: 1rem 1.4rem; }
  .hs-arrows { margin-left: auto; }
}

/* ---------- Sayfa başlığı (iç sayfalar) ---------- */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 5rem) 0 4.5rem;
  background: var(--navy-900);
  background-size: cover; background-position: center;
  color: #fff;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(var(--navy-rgb),.94), rgba(var(--navy-rgb),.68));
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; }
.page-hero p { color: rgba(255,255,255,.78); margin-top: .9rem; max-width: 620px; }

/* Gerçek fotoğraflı sayfa başlığı — yavaş dikey pan */
.page-hero-photo { background-position: center 45%; animation: heroPan 22s ease-in-out infinite alternate; }
@keyframes heroPan { from { background-position: center 38%; } to { background-position: center 62%; } }
@media (prefers-reduced-motion: reduce) { .page-hero-photo { animation: none; } }

.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; font-size: .87rem; color: rgba(255,255,255,.6); margin-bottom: 1.1rem; }
.breadcrumb a { transition: color .2s; }
.breadcrumb a:hover { color: var(--gold-400); }
.breadcrumb span[aria-hidden] { opacity: .5; }
.breadcrumb .current { color: var(--gold-400); font-weight: 600; }

/* ==========================================================
   Kartlar / Grid
   ========================================================== */
.grid { display: grid; gap: 1.7rem; }
/* minmax min değeri konteynerden büyük olunca dar ekranda taşma yapar;
   min(Xpx, 100%) bunu engeller */
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fill, minmax(min(310px, 100%), 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr)); }

/* Hizmet kartı */
.service-card {
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 2.2rem 1.8rem;
  transition: transform .35s var(--ease), box-shadow .35s, border-color .35s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: var(--gold-500); transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px; height: 56px; border-radius: 12px;
  display: grid; place-items: center; font-size: 1.6rem;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  color: var(--gold-400);
  margin-bottom: 1.3rem;
  transition: transform .35s var(--ease);
}
.service-card:hover .service-icon { transform: scale(1.08) rotate(-5deg); }
.service-card h3 { margin-bottom: .6rem; }
.service-card p { color: var(--gray-600); font-size: .94rem; }

/* Süreç adımları (Nasıl Çalışıyoruz) */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.process-step {
  position: relative; padding: 2rem 1.6rem;
  background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: box-shadow .3s, transform .3s var(--ease), border-color .3s;
}
.process-step:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
/* Adımlar arası bağlantı çizgisi (masaüstü) */
.process-step:not(:last-child)::after {
  content: ''; position: absolute; top: 3.1rem; right: -.9rem; z-index: 1;
  width: 1.2rem; height: 2px;
  background: repeating-linear-gradient(90deg, var(--gold-500) 0 5px, transparent 5px 9px);
}
.process-num {
  display: inline-grid; place-items: center;
  width: 56px; height: 56px; border-radius: 15px; margin-bottom: 1.1rem;
  font-size: 1.45rem; font-weight: 800; letter-spacing: -.02em;
  background: var(--navy-800); color: var(--gold-400);
  box-shadow: inset 0 0 0 1px rgba(var(--gold-rgb), .22);
  transition: background .3s, color .3s;
}
.process-step:hover .process-num { background: linear-gradient(135deg, var(--gold-400), var(--gold-500)); color: #fff; }
.process-step h3 { font-size: 1.08rem; margin-bottom: .5rem; }
.process-step p { color: var(--gray-600); font-size: .92rem; line-height: 1.6; }

@media (max-width: 900px) {
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-step:not(:last-child)::after { display: none; }
}
@media (max-width: 520px) { .process-grid { grid-template-columns: 1fr; } }

/* Proje kartı */
.project-card {
  position: relative; display: block;
  border-radius: var(--radius); overflow: hidden;
  background: var(--navy-900);
  aspect-ratio: 4 / 3.2;
  box-shadow: var(--shadow);
}
.project-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s var(--ease), opacity .4s;
}
.project-card:hover img { transform: scale(1.09); }

.project-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(var(--navy-rgb),.94) 8%, rgba(var(--navy-rgb),.35) 48%, transparent 78%);
  transition: opacity .4s;
}

.project-body { position: absolute; inset: auto 0 0 0; z-index: 2; padding: 1.6rem; color: #fff; }
.project-body h3 { color: #fff; font-size: 1.2rem; margin-bottom: .3rem; }
.project-meta { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; font-size: .82rem; color: rgba(255,255,255,.72); }
.project-meta span:not(:last-child)::after { content: '·'; margin-left: .5rem; opacity: .6; }

.project-summary {
  color: rgba(255,255,255,.8); font-size: .88rem; margin-top: .6rem;
  max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height .45s var(--ease), opacity .35s, margin-top .35s;
}
.project-card:hover .project-summary { max-height: 90px; opacity: 1; }

.badge {
  position: absolute; top: 1rem; left: 1rem; z-index: 3;
  padding: .38rem .8rem; border-radius: 40px;
  font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.badge-completed { background: rgba(34, 160, 100, .92); color: #fff; }
.badge-ongoing   { background: rgba(var(--gold-rgb), .95); color: #fff; }
.badge-planned   { background: rgba(90, 110, 140, .92); color: #fff; }

/* Filtre */
.filter-bar { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2.5rem; }
.filter-bar button {
  padding: .6rem 1.3rem; border-radius: 40px;
  border: 1.5px solid var(--gray-200);
  font-size: .88rem; font-weight: 600; color: var(--gray-600);
  transition: all .25s;
}
.filter-bar button:hover { border-color: var(--navy-800); color: var(--navy-900); }
.filter-bar button.active { background: var(--navy-900); border-color: var(--navy-900); color: #fff; }

/* ==========================================================
   Hakkımızda bölümü
   ========================================================== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }

.about-media { position: relative; }
.about-media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 4/4.4; object-fit: cover; }
.about-media::before {
  content: ''; position: absolute; inset: -14px auto auto -14px;
  width: 55%; height: 55%;
  border: 3px solid var(--gold-500); border-radius: var(--radius);
  z-index: -1;
}
.about-badge {
  position: absolute; right: -12px; bottom: 32px;
  background: var(--navy-900); color: #fff;
  padding: 1.3rem 1.7rem; border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.about-badge strong { display: block; font-size: 2rem; color: var(--gold-400); line-height: 1; }
.about-badge span { font-size: .8rem; color: rgba(255,255,255,.7); font-weight: 600; }

.check-list { display: grid; gap: .85rem; margin-top: 1.8rem; }
.check-list li { display: flex; align-items: flex-start; gap: .75rem; color: var(--gray-600); font-size: .96rem; }
.check-list li::before {
  content: '✓'; flex: none;
  width: 22px; height: 22px; margin-top: 2px;
  display: grid; place-items: center;
  background: var(--gold-500); color: #fff;
  border-radius: 50%; font-size: .72rem; font-weight: 800;
}

/* Değerler / misyon-vizyon */
.value-card {
  padding: 2.2rem 1.9rem; border-radius: var(--radius);
  background: #fff; border: 1px solid var(--gray-200);
  border-top: 3px solid var(--gold-500);
  transition: transform .35s var(--ease), box-shadow .35s;
}
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.value-card h3 { margin-bottom: .7rem; }
.value-card p { color: var(--gray-600); font-size: .95rem; }

/* Zaman çizelgesi */
.timeline { position: relative; padding-left: 2.4rem; }
.timeline::before { content: ''; position: absolute; left: 7px; top: 8px; bottom: 8px; width: 2px; background: var(--gray-200); }
.timeline-item { position: relative; padding-bottom: 2.2rem; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: ''; position: absolute; left: -2.4rem; top: 6px;
  width: 16px; height: 16px; border-radius: 50%;
  background: #fff; border: 3px solid var(--gold-500);
}
.timeline-item time { font-size: .82rem; font-weight: 700; color: var(--gold-500); letter-spacing: .06em; }
.timeline-item h3 { font-size: 1.1rem; margin: .3rem 0 .4rem; }
.timeline-item p { color: var(--gray-600); font-size: .93rem; }

/* İstatistik şeridi */
.stats-strip { background: var(--navy-900); color: #fff; position: relative; overflow: hidden; }
.stats-strip::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 15% 50%, rgba(var(--gold-rgb),.22), transparent 55%);
}
.stats-strip .container { position: relative; z-index: 2; }
.stat-item { text-align: center; padding: 1.2rem; }
.stat-item strong { display: block; font-size: clamp(2.1rem, 4.2vw, 3rem); color: var(--gold-400); font-weight: 800; line-height: 1.1; }
.stat-item span { font-size: .9rem; color: rgba(255,255,255,.68); font-weight: 600; }

/* CTA */
.cta {
  background: linear-gradient(120deg, var(--navy-900), var(--navy-700));
  color: #fff; text-align: center; position: relative; overflow: hidden;
}
.cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(var(--gold-rgb),.25), transparent 50%);
}
.cta .container { position: relative; z-index: 2; }
.cta h2 { color: #fff; }
.cta p { color: rgba(255,255,255,.78); max-width: 560px; margin: 1rem auto 2rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; }

/* Müşteri yorumları */
.testimonial {
  background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius);
  padding: 2rem 1.8rem; height: 100%;
  display: flex; flex-direction: column; gap: 1.1rem;
  transition: box-shadow .3s, transform .3s var(--ease), border-color .3s;
}
.testimonial:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.testi-stars { color: var(--gold-500); letter-spacing: .15em; font-size: 1rem; }
.testimonial blockquote { margin: 0; font-size: .98rem; line-height: 1.7; color: var(--navy-700); flex: 1; }
.testimonial figcaption { display: flex; align-items: center; gap: .8rem; border-top: 1px solid var(--gray-200); padding-top: 1.1rem; }
.testi-avatar {
  width: 46px; height: 46px; flex: none; border-radius: 50%;
  display: grid; place-items: center; font-weight: 800; font-size: .95rem;
  background: var(--navy-800); color: var(--gold-400);
}
.testi-who { display: flex; flex-direction: column; line-height: 1.35; }
.testi-who strong { font-size: .95rem; }
.testi-who small { color: var(--gray-500); font-size: .8rem; }

/* SSS (accordion) */
.faq-list { max-width: 820px; margin-inline: auto; }
.faq-item {
  border: 1px solid var(--gray-200); border-radius: var(--radius-sm);
  margin-bottom: .8rem; background: var(--gray-50); overflow: hidden;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.faq-item[open] { border-color: var(--gold-500); box-shadow: var(--shadow); background: #fff; }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 1.15rem 1.4rem;
  font-weight: 700; font-size: 1rem; color: var(--navy-800);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-ico { position: relative; width: 18px; height: 18px; flex: none; }
.faq-ico::before, .faq-ico::after { content: ''; position: absolute; background: var(--gold-500); transition: opacity .3s; }
.faq-ico::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq-ico::after  { left: 8px; top: 0; width: 2px; height: 18px; }
.faq-item[open] .faq-ico::after { opacity: 0; }
.faq-answer { padding: 0 1.4rem 1.25rem; }
.faq-answer p { color: var(--gray-600); font-size: .94rem; line-height: 1.7; margin: 0; }

/* ==========================================================
   Proje detay
   ========================================================== */
.detail-grid { display: grid; grid-template-columns: 1.65fr 1fr; gap: 3rem; align-items: start; }

.detail-body { font-size: 1.02rem; color: var(--gray-600); }
.detail-body h2 { font-size: 1.5rem; margin: 2rem 0 .8rem; }
.detail-body h3 { font-size: 1.2rem; margin: 1.6rem 0 .6rem; }
.detail-body p  { margin-bottom: 1.1rem; }
.detail-body ul { list-style: disc; padding-left: 1.4rem; margin-bottom: 1.1rem; }
.detail-body li { margin-bottom: .45rem; }
.detail-body img { border-radius: var(--radius); margin: 1.5rem 0; }
.detail-body a { color: var(--gold-500); text-decoration: underline; }

.info-card {
  background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 1.8rem;
  position: sticky; top: 96px;
}
.info-card h3 { font-size: 1.05rem; margin-bottom: 1.2rem; padding-bottom: .9rem; border-bottom: 1px solid var(--gray-200); }
.info-row { display: flex; justify-content: space-between; gap: 1rem; padding: .7rem 0; border-bottom: 1px dashed var(--gray-200); font-size: .92rem; }
.info-row:last-of-type { border-bottom: 0; }
.info-row dt { color: var(--gray-400); font-weight: 600; }
.info-row dd { color: var(--navy-900); font-weight: 700; text-align: right; }

.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(180px, 100%), 1fr)); gap: .9rem; margin-top: 1.5rem; }
.gallery a { border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 4/3; position: relative; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery a:hover img { transform: scale(1.09); }
.gallery a::after {
  content: '🔍'; position: absolute; inset: 0;
  display: grid; place-items: center; font-size: 1.4rem;
  background: rgba(var(--navy-rgb),.55); opacity: 0; transition: opacity .3s;
}
.gallery a:hover::after { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(6, 14, 25, .95);
  display: none; place-items: center; padding: 2rem;
}
.lightbox.open { display: grid; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: var(--radius); object-fit: contain; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute; color: #fff; font-size: 2rem;
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,.1); display: grid; place-items: center;
  transition: background .25s;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,.25); }
.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-prev  { left: 1.5rem;  top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 1.5rem; top: 50%; transform: translateY(-50%); }

/* ==========================================================
   Formlar
   ========================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.4rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 1.4rem; }
.contact-info .office-list { margin-bottom: 0; }

.form-card { position: relative; overflow: hidden; background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius); padding: clamp(1.6rem, 3vw, 2.4rem); box-shadow: var(--shadow); }
.form-card::before {
  content: ''; position: absolute; left: 0; right: 0; top: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold-400), var(--gold-500) 55%, var(--navy-900));
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: .85rem; font-weight: 700; color: var(--navy-900); margin-bottom: .45rem; }
.form-group label .req { color: #d64545; }

.form-control {
  width: 100%; padding: .85rem 1rem;
  border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm);
  background: var(--gray-50);
  transition: border-color .25s, background .25s, box-shadow .25s;
}
.form-control:focus {
  outline: none; border-color: var(--gold-500); background: #fff;
  box-shadow: 0 0 0 4px rgba(var(--gold-rgb),.13);
}
.form-control.is-invalid { border-color: #d64545; background: #fff5f5; }
textarea.form-control { resize: vertical; min-height: 140px; }

.field-error { display: block; color: #d64545; font-size: .8rem; font-weight: 600; margin-top: .35rem; }

/* Bal küpü — botlar için gizli alan (RTL'de taşma yaratmayan gizleme) */
.hp-field {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  clip: rect(0 0 0 0); clip-path: inset(50%);
  overflow: hidden; white-space: nowrap;
}

.alert { padding: 1rem 1.2rem; border-radius: var(--radius-sm); margin-bottom: 1.4rem; font-size: .92rem; font-weight: 600; border-left: 4px solid; }
.alert-success { background: #eaf7f0; color: #1a6b45; border-color: #22a064; }
.alert-error   { background: #fdeded; color: #a12c2c; border-color: #d64545; }
.alert-info    { background: #eaf2fb; color: #1c4d80; border-color: #3b7dd8; }

/* İletişim bilgi kutuları */
.contact-info { display: grid; gap: 1rem; }
.contact-item {
  display: flex; gap: 1.1rem; align-items: flex-start;
  padding: 1.4rem; border-radius: var(--radius);
  background: var(--gray-50); border: 1px solid var(--gray-200);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.contact-item { position: relative; overflow: hidden; }
.contact-item::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(var(--gold-400), var(--gold-500));
  transform: scaleY(0); transform-origin: top; transition: transform .35s var(--ease);
}
.contact-item:hover { transform: translateX(4px); box-shadow: var(--shadow); border-color: transparent; }
.contact-item:hover::before { transform: scaleY(1); }
.contact-item .icon {
  width: 48px; height: 48px; flex: none; border-radius: 12px;
  display: grid; place-items: center; font-size: 1.2rem;
  background: var(--navy-700); color: var(--gold-400);
  box-shadow: inset 0 0 0 1px rgba(var(--gold-rgb),.18);
  transition: transform .3s var(--ease), background .3s;
}
.contact-item:hover .icon { transform: scale(1.06) rotate(-3deg); background: var(--navy-800); }

/* Hızlı aksiyon butonları */
.contact-quick { display: flex; gap: .8rem; margin-top: 1.7rem; flex-wrap: wrap; }
.contact-quick .btn {
  flex: 1 1 0; min-width: 150px;
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
}
.btn-whatsapp { background: #3f7d5a; color: #fff; }
.btn-whatsapp:hover { background: #356b4d; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(63,125,90,.25); }

/* Yanıt süresi rozeti */
.contact-promise {
  display: flex; align-items: center; gap: .6rem;
  margin-top: 1.3rem; padding: .85rem 1.1rem;
  background: #eef3ef; color: #355c47;
  border-radius: var(--radius-sm); font-size: .9rem; font-weight: 600;
}
.contact-promise strong { color: #2b4a39; }
.contact-promise .dot {
  width: 9px; height: 9px; flex: none; border-radius: 50%; background: #3f7d5a;
  box-shadow: 0 0 0 0 rgba(63,125,90,.5); animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(63,125,90,.45); }
  70%  { box-shadow: 0 0 0 8px rgba(63,125,90,0); }
  100% { box-shadow: 0 0 0 0 rgba(63,125,90,0); }
}
.contact-item h3 { font-size: .95rem; margin-bottom: .2rem; }
.contact-item p, .contact-item a { color: var(--gray-600); font-size: .93rem; }
.contact-item a:hover { color: var(--gold-500); }

.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); line-height: 0; margin-top: 1.4rem; }
.map-wrap iframe { width: 100%; height: 380px; border: 0; }

/* Ofis kartları */
.office-list { display: grid; gap: 1.4rem; margin-bottom: 2rem; }
.office-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.8rem; align-items: start; }
.office-card {
  position: relative; overflow: hidden;
  padding: 1.6rem; border-radius: var(--radius);
  background: var(--gray-50); border: 1px solid var(--gray-200);
  transition: box-shadow .3s, border-color .3s;
  display: flex; flex-direction: column;
}
.office-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(var(--gold-400), var(--gold-500));
  transform: scaleY(0); transform-origin: top; transition: transform .35s var(--ease);
}
.office-card.is-primary::before { transform: scaleY(1); }
.office-card:hover { box-shadow: var(--shadow); border-color: transparent; }
.office-card:hover::before { transform: scaleY(1); }

.office-head { display: flex; align-items: center; gap: .9rem; margin-bottom: .9rem; }
.office-head h3 { font-size: 1.05rem; margin: 0; }
.office-badge {
  width: 42px; height: 42px; flex: none; border-radius: 12px;
  display: grid; place-items: center; font-size: 1.05rem;
  background: var(--navy-700); color: var(--gold-400);
  box-shadow: inset 0 0 0 1px rgba(var(--gold-rgb),.18);
}
.office-address { color: var(--gray-600); font-size: .93rem; line-height: 1.6; }

/* Ofis satış sorumlusu */
.office-manager {
  display: flex; align-items: flex-start; gap: .8rem;
  margin-top: 1.1rem; padding: .9rem 1rem; border-radius: 12px;
  background: rgba(var(--navy-rgb), .04);
  border: 1px solid var(--gray-200);
}
.office-badge-person { width: 38px; height: 38px; font-size: 1rem; border-radius: 10px; }
.office-manager-info { display: flex; flex-direction: column; gap: .12rem; min-width: 0; }
.office-manager-role {
  font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--gold-500);
}
.office-manager-name { font-size: 1rem; font-weight: 700; color: var(--navy-800); }
.office-manager-phone { font-size: .95rem; font-weight: 600; color: var(--navy-700); }
.office-manager-phone:hover { color: var(--gold-500); }
.office-manager-actions { display: flex; gap: .5rem; margin-top: .5rem; flex-wrap: wrap; }
.office-manager-actions .btn { padding: .45rem .85rem; font-size: .8rem; }

.office-phone { margin-top: .8rem; }
.office-phone a { font-size: 1.05rem; font-weight: 700; color: var(--navy-700); }
.office-phone a:hover { color: var(--gold-500); }
.office-card .contact-quick { margin-top: 1.2rem; }

/* İletişim — her ofis kartının altına oturan harita (kart kenarlarına tam yaslanır) */
.office-card-map {
  margin: 1.3rem -1.6rem -1.6rem; box-shadow: none;
  border: 0; border-top: 1px solid var(--gray-200); border-radius: 0;
}
.office-card-map iframe { display: block; width: 100%; height: 240px; border: 0; }

@media (max-width: 768px) {
  .office-card-map iframe { height: 220px; }
}

/* Altbilgideki ofis blokları */
.contact-list .footer-office { flex-direction: column; gap: .25rem; }
.contact-list .footer-office strong { color: var(--gold-400); font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; }
.contact-list .footer-office-addr { display: block; line-height: 1.55; }

/* ==========================================================
   Footer
   ========================================================== */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,.66); padding-top: clamp(3.5rem, 6vw, 5rem); }

.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer-brand p { font-size: .92rem; margin-top: 1.1rem; max-width: 320px; }
.footer-col h3 { color: #fff; font-size: 1rem; margin-bottom: 1.2rem; position: relative; padding-bottom: .7rem; }
.footer-col h3::after { content: ''; position: absolute; left: 0; bottom: 0; width: 32px; height: 2px; background: var(--gold-500); }
.footer-col ul { display: grid; gap: .7rem; }
.footer-col a { font-size: .92rem; transition: color .25s, padding-left .25s; }
.footer-col ul:not(.contact-list) a:hover { color: var(--gold-400); padding-left: 5px; }
.contact-list li { display: flex; gap: .6rem; font-size: .92rem; align-items: flex-start; }
.contact-list a:hover { color: var(--gold-400); }

.social { display: flex; gap: .6rem; margin-top: 1.5rem; }
.social a {
  width: 38px; height: 38px; border-radius: 9px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.08); color: #fff;
  font-weight: 700; font-size: .9rem;
  transition: background .25s, transform .25s var(--ease);
}
.social a:hover { background: var(--gold-500); transform: translateY(-3px); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.4rem 0; }
.footer-bottom .container { display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: .84rem; }
.footer-note { opacity: .55; font-size: .78rem !important; }
.footer-bottom .fb-left   { flex: 1; text-align: left; }
.footer-bottom .fb-center { flex: 1; text-align: center; }
.footer-bottom .fb-right  { flex: 1; text-align: right; }

.to-top {
  position: fixed; right: 1.5rem; bottom: 1.5rem; z-index: 90;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--gold-500); color: #fff; font-size: 1.2rem;
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .3s, transform .3s var(--ease), visibility .3s, background .25s;
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--navy-900); }

/* ==========================================================
   Boş durum / sayfalama / 404
   ========================================================== */
.empty-state { text-align: center; padding: 4rem 1.5rem; color: var(--gray-400); }
.empty-state .icon { font-size: 3rem; margin-bottom: 1rem; opacity: .5; }
.empty-state h3 { color: var(--gray-600); margin-bottom: .5rem; }

.pagination { display: flex; justify-content: center; gap: .45rem; margin-top: 3rem; flex-wrap: wrap; }
.pagination a, .pagination span {
  min-width: 42px; height: 42px; padding: 0 .8rem;
  display: grid; place-items: center;
  border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm);
  font-weight: 700; font-size: .9rem; color: var(--gray-600);
  transition: all .22s;
}
.pagination a:hover { border-color: var(--navy-900); color: var(--navy-900); }
.pagination .current { background: var(--navy-900); border-color: var(--navy-900); color: #fff; }
.pagination .disabled { opacity: .4; pointer-events: none; }

.error-page { min-height: 78vh; display: grid; place-items: center; text-align: center; padding: calc(var(--header-h) + 3rem) 1.5rem 4rem; }
.error-code { font-size: clamp(5rem, 16vw, 10rem); font-weight: 800; line-height: 1; color: var(--gray-100); letter-spacing: -.04em; }
.error-page h1 { margin: -1rem 0 .8rem; }
.error-page p { color: var(--gray-600); margin-bottom: 2rem; }

/* ==========================================================
   Google Translate — varsayılan arayüzü gizle
   ========================================================== */
#google_translate_element { display: none !important; }
.goog-te-banner-frame, .skiptranslate iframe { display: none !important; }
body { top: 0 !important; }
.goog-tooltip, .goog-tooltip:hover { display: none !important; }
.goog-text-highlight { background: none !important; box-shadow: none !important; }

/* Arapça (RTL) düzeltmeleri */
html[dir="rtl"] .logo { margin-right: 0; margin-left: auto; }
html[dir="rtl"] .lang-menu { right: auto; left: 0; transform-origin: top left; }
html[dir="rtl"] .lang-menu::before { right: auto; left: 20px; }
html[dir="rtl"] .lang-menu .lang-check { right: auto; left: .7rem; }
html[dir="rtl"] .eyebrow::before { display: none; }
html[dir="rtl"] .timeline { padding-left: 0; padding-right: 2.4rem; }
html[dir="rtl"] .timeline::before { left: auto; right: 7px; }
html[dir="rtl"] .timeline-item::before { left: auto; right: -2.4rem; }
html[dir="rtl"] .detail-body ul { padding-left: 0; padding-right: 1.4rem; }
html[dir="rtl"] .footer-col h3::after { left: auto; right: 0; }
html[dir="rtl"] .info-row dd { text-align: left; }
html[dir="rtl"] .alert { border-left: 0; border-right: 4px solid; }
html[dir="rtl"] .service-card::before { transform-origin: right; }

/* ==========================================================
   Görünüme girince animasyon
   ========================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ==========================================================
   Duyarlı (responsive)
   ========================================================== */
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.2rem; }
  .detail-grid { grid-template-columns: 1fr; }
  .info-card { position: static; }
}

@media (max-width: 900px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 480px; margin-inline: auto; }
  .about-badge { right: 12px; }
  .nav-cta { display: none; }
}

@media (max-width: 860px) {
  .container { width: min(1240px, 100% - 2.2rem); }

  .nav-toggle { display: flex; }

  .main-nav {
    position: fixed; inset: 0 0 0 auto;
    width: min(330px, 84vw);
    flex-direction: column; align-items: stretch; justify-content: flex-start;
    gap: 0;
    background: #fff;
    padding: calc(var(--header-h) + 1.2rem) 1.6rem 2rem;
    box-shadow: -12px 0 40px rgba(var(--navy-rgb),.18);
    transform: translateX(105%);
    transition: transform .4s var(--ease);
    overflow-y: auto;
    z-index: 95;
  }
  .main-nav.open { transform: translateX(0); }

  .main-nav > ul { flex-direction: column; align-items: stretch; gap: 0; }
  .main-nav > ul li { border-bottom: 1px solid var(--gray-100); }
  .main-nav a,
  .site-header .main-nav a { display: block; padding: 1rem .2rem; color: var(--navy-900); font-size: 1rem; }
  .main-nav a::after { display: none; }
  .main-nav a.active,
  .site-header .main-nav a.active { color: var(--gold-500); }

  /* Açılır menüde telefon, tam genişlikte belirgin bir blok olur */
  .nav-cta { display: block; margin-top: 1.6rem; }
  .nav-cta .header-phone {
    width: 100%; height: 56px; justify-content: center;
    color: #fff; background: var(--gold-500); border-color: var(--gold-500);
    backdrop-filter: none;
  }
  .nav-cta .header-phone:hover { background: var(--gold-400); border-color: var(--gold-400); }
  .nav-cta .hp-icon { background: rgba(255,255,255,.22); }
  .nav-cta .header-phone:hover .hp-icon { background: rgba(255,255,255,.3); }
  .nav-cta .hp-text small { color: rgba(255,255,255,.85); }
  .nav-cta .hp-text strong { font-size: 1rem; }

  .nav-backdrop {
    position: fixed; inset: 0; z-index: 94;
    background: rgba(var(--navy-rgb),.5); backdrop-filter: blur(2px);
    opacity: 0; visibility: hidden; transition: opacity .35s, visibility .35s;
  }
  .nav-backdrop.show { opacity: 1; visibility: visible; }

  body.nav-open { overflow: hidden; }

  /* Menü açıkken kapatma düğmesi beyaz çekmecenin üstünde kalır —
     görünür olması için koyu renge çevir ve çekmecenin üstüne al */
  .nav-toggle { position: relative; z-index: 96; }
  body.nav-open .nav-toggle span,
  .site-header.scrolled .nav-toggle.active span { background: var(--navy-900); }

  html[dir="rtl"] .main-nav { inset: 0 auto 0 0; transform: translateX(-105%); }
  html[dir="rtl"] .main-nav.open { transform: translateX(0); }
}

@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; gap: 0; }
  /* Mobil: görsel tam görünen 16:9 banner (üstte), metin altta */
  .hero { display: block; min-height: 0; padding: 0 0 .5rem; }
  .hero-slides { position: relative; inset: auto; height: auto; aspect-ratio: 16 / 9; margin-top: var(--header-h); }
  .hero-slides::after { background: linear-gradient(180deg, rgba(var(--navy-rgb),0) 60%, rgba(var(--navy-rgb),.4) 100%); }
  .hero-dots { bottom: auto; top: calc(var(--header-h) + 56.25vw - 2.1rem); }
  .hero-content { position: relative; padding: 1.9rem 0 2.4rem; max-width: none; }
  .hero-stats { margin-top: 2.5rem; grid-template-columns: 1fr 1fr; }
  .hero-actions .btn { flex: 1 1 100%; }
  .hero-caption, .hero-scroll { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .footer-bottom .fb-left, .footer-bottom .fb-center, .footer-bottom .fb-right { text-align: center; }
  .page-hero { padding: calc(var(--header-h) + 3rem) 0 3rem; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .lightbox-prev, .lightbox-next { width: 42px; height: 42px; font-size: 1.4rem; }
  .lightbox-prev { left: .5rem; } .lightbox-next { right: .5rem; }
}

@media (max-width: 420px) {
  .header-inner { gap: .7rem; }
  .logo-text strong { font-size: .95rem; }
  .logo { gap: .55rem; }
  /* Dar ekranda kod gizlenir, bayrak kalır */
  .lang-toggle #langCurrent { display: none; }
  .lang-toggle { padding: 0 .55rem; }
  .hero-stats { grid-template-columns: 1fr; }
}

@media print {
  .site-header, .site-footer, .to-top, .lang-switcher, .nav-toggle, .hero-dots { display: none !important; }
  body { color: #000; }
}

/* ==========================================================
   Cila / mikro-etkileşimler (2026-07-21)
   ========================================================== */

/* 1) Metin seçim rengi — bakır */
::selection    { background: var(--gold-500); color: #fff; }
::-moz-selection { background: var(--gold-500); color: #fff; }

/* 2) Özel kaydırma çubuğu */
html { scrollbar-color: var(--gold-500) var(--gray-100); scrollbar-width: thin; }
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb {
  background: var(--gold-500); border-radius: 8px;
  border: 3px solid var(--gray-100); background-clip: padding-box;
}
::-webkit-scrollbar-thumb:hover { background: var(--gold-400); }

/* 3) Üstte okuma ilerleme çubuğu */
.read-progress {
  position: fixed; top: 0; left: 0; z-index: 200;
  height: 3px; width: 0;
  background: linear-gradient(90deg, var(--gold-400), var(--gold-500));
  box-shadow: 0 0 8px rgba(var(--gold-rgb), .5);
  transition: width .12s linear; pointer-events: none;
}

/* 4) Menüde kayan alt çizgi */
.main-nav ul a { position: relative; }
.main-nav ul a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -5px;
  height: 2px; background: var(--gold-500);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.main-nav ul a:hover::after,
.main-nav ul a.active::after { transform: scaleX(1); }

/* 5) Buton oklarında hover kayması (yalnızca metinden SONRAKI ok) */
.btn > span[aria-hidden]:last-child { display: inline-block; transition: transform .3s var(--ease); }
.btn:hover > span[aria-hidden]:last-child { transform: translateX(4px); }

/* 6) Koyu bölümlere hafif blueprint ızgara dokusu */
.stats-strip::after, .cta::after {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(circle at 50% 40%, #000, transparent 78%);
          mask-image: radial-gradient(circle at 50% 40%, #000, transparent 78%);
}

/* 7) Görsel fade-in (JS 'loaded' sınıfını ekler; JS yoksa görsel görünür kalır) */
img.fade-img { opacity: 0; transition: opacity .6s var(--ease); }
img.fade-img.loaded { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .read-progress { transition: none; }
  .btn:hover > span[aria-hidden]:last-child { transform: none; }
  img.fade-img { opacity: 1; transition: none; }
}
