/* ==========================================================================
   Tesisat Gelsin — Ana sayfa
   "Tesisat Gelsin.dc.html" tasarımından üretilmiştir.
   ========================================================================== */

:root{
  /* Renkler */
  --teal:#35BEC1;
  --teal-600:#1d9ea2;
  --teal-300:#4fd4d7;
  --ink:#06181a;
  --ink-700:#0e2a2c;
  --ink-900:#040f11;
  --orange:#F97316;
  --orange-600:#ea6a0d;
  --wa:#25D366;

  --paper:#f6f9f9;
  --surface:#fff;
  --surface-soft:#fbfdfd;

  --text:#0e2a2c;
  --text-muted:#4d6a6d;
  --text-soft:#5a7376;
  --text-quiet:#7d939a;
  --on-dark:#eefcfc;
  --on-dark-muted:#9fc2c4;
  --on-dark-quiet:#7fa9ab;

  --line:#e8efef;
  --line-2:#eaf0f0;
  --line-field:#d7e3e3;

  /* Tipografi */
  --font-display:'Sora',system-ui,-apple-system,sans-serif;
  --font-body:'Manrope',system-ui,-apple-system,sans-serif;
  --font-mono:'Space Grotesk',ui-monospace,monospace;

  /* Ölçü */
  --shell:1240px;
  --gutter:clamp(18px,4vw,40px);
  --section-y:clamp(64px,9vh,110px);
  --nav-h:72px;
  --radius-card:18px;
  --radius-stack:28px;

  --ease:cubic-bezier(.2,.7,.2,1);
}

*,*::before,*::after{ box-sizing:border-box; }

html{ scroll-behavior:smooth; scroll-padding-top:var(--nav-h); }
html,body{ overflow-x:clip; }

body{
  margin:0;
  background:var(--ink);
  font-family:var(--font-body);
  color:var(--text);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

img{ max-width:100%; }
a{ color:var(--teal-600); text-decoration:none; }
a:hover{ color:var(--teal); }
::selection{ background:var(--teal); color:var(--ink); }

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

address{ font-style:normal; }
blockquote{ margin:0; }
cite{ font-style:normal; }

.tg-skip{
  position:absolute; left:-9999px; top:0; z-index:300;
  background:var(--teal); color:var(--ink);
  font:700 14px var(--font-display); padding:12px 20px; border-radius:0 0 10px 0;
}
.tg-skip:focus{ left:0; }

/* --------------------------------------------------------------------------
   Animasyonlar
   -------------------------------------------------------------------------- */
@keyframes tg-pulse{ 0%,100%{ opacity:.45; transform:scale(1); } 50%{ opacity:1; transform:scale(1.25); } }
@keyframes tg-fade{ from{ opacity:0; transform:translateY(-6px); } to{ opacity:1; transform:none; } }
@keyframes tg-float{ 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-10px); } }

[data-reveal]{
  opacity:0; transform:translateY(26px);
  transition:opacity .7s var(--ease), transform .7s var(--ease);
}
[data-reveal][data-revealed]{ opacity:1; transform:none; }

/* --------------------------------------------------------------------------
   Ortak parçalar
   -------------------------------------------------------------------------- */
.tg-shell{ max-width:var(--shell); margin-inline:auto; padding-inline:var(--gutter); }
.tg-shell--narrow{ max-width:920px; }

.tg-accent{ color:var(--teal); }
.tg-accent-dark{ color:var(--teal-600); }

.tg-eyebrow{
  margin:0 0 12px;
  font:700 12px var(--font-mono);
  letter-spacing:.24em;
}
.tg-eyebrow--orange{ color:var(--orange); }
.tg-eyebrow--teal{ color:var(--teal); }
.tg-eyebrow--hero{
  display:flex; align-items:center; gap:14px;
  margin:0; color:var(--teal); letter-spacing:.3em;
}
.tg-eyebrow__rule{ width:42px; height:2px; background:var(--teal); flex:0 0 auto; }

.tg-h2{
  margin:0;
  font:800 clamp(26px,3.6vw,40px)/1.1 var(--font-display);
  letter-spacing:-.02em;
}
.tg-h2--narrow{ max-width:16ch; font-size:clamp(28px,4vw,44px); line-height:1.05; }
.tg-h2--light{ color:#fff; }

.tg-lede{ margin:0; color:var(--text-muted); font-size:16px; line-height:1.75; }
.tg-lede b{ color:var(--text); }

.tg-sec-head{
  display:flex; justify-content:space-between; align-items:flex-end;
  gap:30px; flex-wrap:wrap; margin-bottom:40px;
}
.tg-sec-head--center{
  flex-direction:column; align-items:center; text-align:center;
  gap:14px; margin-bottom:48px;
}
.tg-sec-head--center .tg-eyebrow{ margin-bottom:0; }
.tg-sec-head__note{
  margin:0; color:var(--text-muted);
  font-size:16px; line-height:1.65; max-width:400px;
}
.tg-sec-head--center .tg-sec-head__note{ max-width:620px; }
.tg-sec-head__note--light{ color:var(--on-dark-muted); }

.tg-grid{ display:grid; gap:18px; }
.tg-grid--services{ grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); }
.tg-grid--why{ grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:16px; }
.tg-grid--reviews{ grid-template-columns:repeat(auto-fit,minmax(320px,1fr)); }

/* Butonlar */
.tg-btn{
  display:inline-flex; align-items:center; gap:9px;
  font:700 15px var(--font-display);
  border-radius:10px; padding:16px 28px;
  transition:transform .25s var(--ease), box-shadow .25s var(--ease),
             background-color .25s, color .25s, border-color .25s;
}
.tg-btn--teal{
  background:var(--teal); color:var(--ink);
  box-shadow:0 12px 34px rgba(53,190,193,.4);
}
.tg-btn--teal:hover{
  color:var(--ink);
  transform:translateY(-2px);
  box-shadow:0 16px 44px rgba(53,190,193,.55);
}
.tg-btn--ghost{
  border:1px solid rgba(255,255,255,.35); color:#fff;
  font-weight:600; padding:16px 26px;
  backdrop-filter:blur(6px);
}
.tg-btn--ghost:hover{ border-color:var(--teal); color:var(--teal); }
.tg-btn--ink{
  align-self:flex-start; margin-top:6px;
  background:var(--ink-700); color:#fff;
  font-size:14.5px; padding:15px 28px;
}
.tg-btn--ink:hover{ background:var(--teal); color:var(--ink); }

/* --------------------------------------------------------------------------
   Splash
   -------------------------------------------------------------------------- */
.tg-splash{
  position:fixed; inset:0; z-index:200;
  background:var(--ink);
  display:flex; align-items:center; justify-content:center;
  transition:opacity .6s ease, visibility .6s ease;
}
.tg-splash.is-done{ opacity:0; visibility:hidden; pointer-events:none; }

.tg-splash__inner{ display:flex; flex-direction:column; align-items:center; gap:26px; }
.tg-splash__logo{
  height:52px; width:auto;
  filter:brightness(0) invert(1);
  animation:tg-float 3s ease-in-out infinite;
}
.tg-splash__track{
  width:200px; height:3px; border-radius:99px;
  background:rgba(255,255,255,.14); overflow:hidden;
}
.tg-splash__bar{
  height:100%; width:0%;
  background:linear-gradient(90deg,var(--teal),var(--teal-300));
  transition:width .2s ease;
}
.tg-splash__label{
  margin:0;
  font:600 12px var(--font-mono);
  letter-spacing:.32em; color:var(--teal-300);
  text-align:center;
}

/* --------------------------------------------------------------------------
   Üst şerit
   Akışta kalır (sayfayla birlikte yukarı kayar), sticky nav üzerine biner.
   -------------------------------------------------------------------------- */
.tg-topbar{
  position:relative; z-index:99;
  background:var(--ink-900);
  border-bottom:1px solid rgba(53,190,193,.14);
}
.tg-topbar__inner{
  height:38px;
  display:flex; align-items:center;
  gap:clamp(12px,2.5vw,28px);
}
.tg-topbar__item{
  display:flex; align-items:baseline; gap:10px;
  min-width:0; white-space:nowrap;
}
.tg-topbar__label{
  flex:0 0 auto;
  font:700 10px var(--font-mono);
  letter-spacing:.26em; text-transform:uppercase;
  color:var(--teal);
}
.tg-topbar__value{
  font:500 12.5px var(--font-mono);
  letter-spacing:.1em; color:#c3d6d7;
  overflow:hidden; text-overflow:ellipsis;
  transition:color .25s;
}
a.tg-topbar__item:hover .tg-topbar__value{ color:var(--teal); }

/* İki ucu birbirine bağlayan ince çizgi — şeridi yatayda uzatır */
.tg-topbar__rule{
  flex:1 1 auto; min-width:24px;
  align-self:center; height:1px;
  background:linear-gradient(90deg,
    rgba(53,190,193,.30), rgba(53,190,193,.05) 50%, rgba(53,190,193,.30));
}

/* --------------------------------------------------------------------------
   Nav
   -------------------------------------------------------------------------- */
.tg-nav{
  position:sticky; top:0; z-index:100;
  margin-bottom:calc(var(--nav-h) * -1);
  background:rgba(255,255,255,0);
  border-bottom:1px solid transparent;
  transition:background-color .3s ease, border-color .3s ease,
             box-shadow .3s ease, backdrop-filter .3s ease;
}
.tg-nav.is-scrolled{
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(12px);
  border-bottom-color:#e6eded;
  box-shadow:0 6px 24px rgba(14,42,44,.06);
}

.tg-nav__bar{
  max-width:var(--shell); margin-inline:auto; padding-inline:var(--gutter);
  height:var(--nav-h);
  display:flex; align-items:center; justify-content:space-between; gap:20px;
}

.tg-nav__brand{ display:flex; align-items:center; flex:0 0 auto; }
.tg-nav__brand img{
  height:34px; width:auto;
  filter:brightness(0) invert(1);
  transition:filter .3s;
}
.tg-nav.is-scrolled .tg-nav__brand img{ filter:none; }

.tg-nav__links{ display:flex; gap:clamp(14px,2vw,32px); justify-content:center; }
.tg-nav__links a{
  font:600 14.5px var(--font-display);
  color:#e6f4f4;
  transition:color .3s;
}
.tg-nav.is-scrolled .tg-nav__links a{ color:#33565a; }
.tg-nav__links a:hover{ color:var(--teal); }

.tg-nav__actions{ display:flex; align-items:center; gap:10px; flex:0 0 auto; }

.tg-nav__cta{
  display:inline-flex; align-items:center; gap:8px;
  background:var(--orange); color:#fff;
  font:700 13.5px var(--font-display);
  padding:11px 18px; border-radius:999px; white-space:nowrap;
  box-shadow:0 8px 22px rgba(249,115,22,.32);
  transition:background-color .25s, transform .25s var(--ease);
}
.tg-nav__cta:hover{ background:var(--orange-600); color:#fff; transform:translateY(-1px); }
.tg-dot{
  width:7px; height:7px; border-radius:50%; background:#fff;
  animation:tg-pulse 2s infinite;
}

.tg-nav__burger{
  display:none;
  width:42px; height:42px; padding:0;
  background:rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.28);
  border-radius:11px; cursor:pointer;
  flex-direction:column; align-items:center; justify-content:center; gap:5px;
  transition:background-color .25s, border-color .25s;
}
.tg-nav__burger span{
  display:block; width:18px; height:2px; border-radius:2px;
  background:#fff; transition:transform .28s var(--ease), opacity .2s;
}
.tg-nav.is-scrolled .tg-nav__burger{ background:#eef5f5; border-color:#dbe8e8; }
.tg-nav.is-scrolled .tg-nav__burger span{ background:var(--ink-700); }
.tg-nav__burger[aria-expanded="true"] span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.tg-nav__burger[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.tg-nav__burger[aria-expanded="true"] span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   Bölüm istifi
   Her bölüm bir öncekinin üstüne yuvarlak köşeyle biner ve yapışarak
   (sticky) altındaki bölümün üzerinden kaymasına izin verir.

   Yapışkanlık .is-stacked sınıfına bağlı ve `top` değerini main.js veriyor:
   - viewport'a sığan bölüm  → top:0   (üst kenardan yapışır)
   - viewport'tan uzun bölüm → top:vh-h (negatif; ALT kenarından yapışır)
   İkinci durum şart: top:0 ile uzun bir bölüm tepeye çivilenip alt içeriği
   bir sonraki bölümün altında kalıyor ve hiç okunamıyordu. Negatif top ile
   bölüm, alt kenarı viewport'un altına gelene kadar normal kayar; ancak
   tamamı okunduktan sonra yapışır. JS yoksa efekt devre dışı kalır, sayfa
   yalnızca binmeyle sorunsuz çalışır.
   -------------------------------------------------------------------------- */
#tg-site > section{ position:relative; }
#tg-site > section:not(:first-of-type){
  margin-top:calc(var(--radius-stack) * -1);
  border-radius:var(--radius-stack) var(--radius-stack) 0 0;
  box-shadow:0 -22px 60px rgba(6,24,26,.22);
}
#tg-site:not(.tg-page) > section.is-stacked{ position:sticky; top:0; }
#tg-site > footer{ position:relative; z-index:10; }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.tg-hero{
  position:relative; overflow:hidden;
  min-height:94vh;
  display:flex; flex-direction:column; justify-content:space-between;
  background:#0b0c0d; color:#f4f6f6;
}
.tg-hero__media{ position:absolute; inset:0; overflow:hidden; }
.tg-hero__media img{
  position:absolute; inset:0;
  width:100%; height:100%; object-fit:cover;
  background:#16191b;
}
.tg-hero__scrim{
  position:absolute; inset:0;
  background:linear-gradient(180deg,
    rgba(11,12,13,.72) 0%, rgba(11,12,13,.28) 34%,
    rgba(6,24,26,.55) 62%, rgba(6,24,26,.94) 100%);
}
.tg-hero__glow{
  position:absolute; inset:0;
  background:radial-gradient(680px 340px at 82% 22%, rgba(53,190,193,.22), transparent 70%);
}
.tg-hero__spacer{ position:relative; height:var(--nav-h); flex:0 0 auto; }

.tg-hero__body{
  position:relative;
  width:100%; max-width:var(--shell); margin-inline:auto;
  padding:0 var(--gutter) clamp(40px,6vh,64px);
  display:flex; flex-direction:column; gap:26px;
}
.tg-hero__title{
  margin:0;
  font:800 clamp(38px,7vw,86px)/1 var(--font-display);
  letter-spacing:-.03em; max-width:14ch;
}
.tg-hero__foot{
  display:flex; justify-content:space-between; align-items:flex-end;
  gap:40px; flex-wrap:wrap;
}
.tg-hero__lede{
  margin:0; max-width:520px;
  color:#c9d3d3; line-height:1.65;
  font-size:clamp(15px,1.4vw,18px);
}
.tg-hero__cta{ display:flex; gap:12px; flex-wrap:wrap; }

/* --------------------------------------------------------------------------
   Hizmetler
   -------------------------------------------------------------------------- */
.tg-services{ background:var(--paper); }
.tg-services .tg-shell{ padding-block:var(--section-y); }

.tg-card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius-card);
  display:flex; flex-direction:column;
  transition:transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.tg-card:hover{
  transform:translateY(-6px);
  box-shadow:0 22px 48px rgba(14,42,44,.13);
  border-color:#bfe9ea;
}

.tg-card__media{ position:relative; }
.tg-card__shot{
  display:block; overflow:hidden;
  border-radius:calc(var(--radius-card) - 1px) calc(var(--radius-card) - 1px) 0 0;
  background:#dfe9e9;
}
.tg-card__shot img{
  display:block; width:100%; height:100%;
  aspect-ratio:16/10; object-fit:cover;
  transition:transform .6s var(--ease);
}
.tg-card:hover .tg-card__shot img{ transform:scale(1.06); }

.tg-card__icon{
  position:absolute; right:20px; bottom:-24px; z-index:2;
  width:52px; height:52px; border-radius:16px;
  background:linear-gradient(135deg,var(--teal),var(--teal-600));
  display:grid; place-items:center; font-size:24px;
  box-shadow:0 12px 26px rgba(53,190,193,.4);
}
.tg-card__body{
  flex:1; padding:30px;
  display:flex; flex-direction:column; gap:14px;
}
.tg-card__title{ margin:0; padding-right:56px; font:700 21px var(--font-display); }
.tg-card__text{
  margin:0; flex:1;
  color:var(--text-soft); font-size:14.5px; line-height:1.65;
}
.tg-card__link{
  font:700 13.5px var(--font-display); color:var(--orange);
  transition:gap .2s, color .2s;
}
.tg-card__link:hover{ color:var(--orange-600); }

/* --------------------------------------------------------------------------
   Hakkımızda
   -------------------------------------------------------------------------- */
.tg-about{
  background:var(--surface);
  border-top:1px solid var(--line-2);
  border-bottom:1px solid var(--line-2);
}
.tg-about__grid{
  padding-block:var(--section-y);
  display:grid; grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:clamp(36px,5vw,72px); align-items:center;
}
.tg-about__media{ position:relative; margin:0; }
.tg-about__media img{
  display:block; width:100%;
  height:clamp(360px,52vh,520px); object-fit:cover;
  border-radius:20px; background:#dfe9e9;
}
.tg-about__badge{
  position:absolute; left:-18px; bottom:-24px;
  background:var(--ink-700); color:#fff;
  border-radius:16px; padding:22px 26px;
  display:flex; align-items:center; gap:16px;
  box-shadow:0 20px 44px rgba(14,42,44,.25);
}
.tg-about__badge-num{
  font:800 40px var(--font-display); color:var(--teal); line-height:1;
}
.tg-about__badge-label{
  font:600 13px var(--font-body); line-height:1.4; color:#bfe4e5;
}

.tg-about__body{ display:flex; flex-direction:column; gap:20px; }
.tg-about__body .tg-h2{ font-size:clamp(26px,3.6vw,40px); }

.tg-ticks{
  list-style:none; margin:4px 0 0; padding:0;
  display:grid; grid-template-columns:1fr 1fr; gap:10px 22px;
}
.tg-ticks li{
  display:flex; align-items:center; gap:10px;
  font-size:14.5px; font-weight:600; color:var(--text);
}
.tg-tick{ color:var(--teal); flex:0 0 auto; }

/* --------------------------------------------------------------------------
   Neden Biz
   -------------------------------------------------------------------------- */
.tg-why{
  position:relative; overflow:hidden;
  background:var(--ink); color:var(--on-dark);
}
.tg-why__grid-bg{
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(53,190,193,.05) 1px,transparent 1px),
    linear-gradient(90deg,rgba(53,190,193,.05) 1px,transparent 1px);
  background-size:52px 52px;
}
.tg-why__glow{
  position:absolute; inset:0;
  background:radial-gradient(700px 380px at 78% 12%, rgba(53,190,193,.16), transparent 70%);
}
.tg-why .tg-shell{ position:relative; padding-block:var(--section-y); }
.tg-why .tg-h2{ max-width:18ch; font-size:clamp(28px,4vw,44px); line-height:1.08; }

.tg-why-card{
  background:rgba(255,255,255,.03);
  border:1px solid rgba(53,190,193,.16);
  border-radius:16px; padding:28px;
  display:flex; flex-direction:column; gap:12px;
  transition:transform .3s var(--ease), border-color .3s, background-color .3s;
}
.tg-why-card:hover{
  transform:translateY(-5px);
  border-color:var(--teal);
  background:rgba(53,190,193,.07);
}
.tg-why-card__icon{ font-size:26px; }
.tg-why-card h3{ margin:0; font:700 18px var(--font-display); color:#fff; }
.tg-why-card p{ margin:0; color:var(--on-dark-muted); font-size:14px; line-height:1.65; }

/* --------------------------------------------------------------------------
   SSS
   -------------------------------------------------------------------------- */
.tg-faq{ background:var(--surface); border-top:1px solid var(--line-2); }
.tg-faq .tg-shell{ padding-block:var(--section-y); }
.tg-faq .tg-sec-head{ margin-bottom:44px; }

.tg-accordion{ display:flex; flex-direction:column; gap:12px; }

.tg-faq-item{
  background:var(--surface-soft);
  border:1px solid var(--line);
  border-radius:14px; overflow:hidden;
  transition:border-color .25s;
}
.tg-faq-item.is-open{ border-color:var(--teal); }
.tg-faq-item h3{ margin:0; font:inherit; }

.tg-faq-item__q{
  width:100%; background:none; border:none; cursor:pointer;
  text-align:left; padding:22px 24px;
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  font:700 clamp(15px,1.6vw,18px) var(--font-display);
  color:var(--ink-700);
}
.tg-faq-item__sign{
  flex:0 0 auto; width:26px; height:26px; border-radius:50%;
  display:grid; place-items:center;
  background:#e3f6f6; color:var(--teal-600);
  font-size:18px; font-weight:700; line-height:1;
  transition:transform .25s, background-color .25s, color .25s;
}
.tg-faq-item.is-open .tg-faq-item__sign{
  background:var(--teal); color:var(--ink); transform:rotate(45deg);
}

.tg-faq-item__panel{ display:none; }
.tg-faq-item.is-open .tg-faq-item__panel{ display:block; animation:tg-fade .3s ease; }
.tg-faq-item__panel p{
  margin:0; padding:0 24px 22px;
  color:var(--text-muted); font-size:15px; line-height:1.75;
}

/* --------------------------------------------------------------------------
   Sayaç şeridi
   -------------------------------------------------------------------------- */
.tg-stats{ background:var(--ink-700); color:#fff; }
.tg-stats__grid{
  padding-block:clamp(40px,6vh,64px);
  display:grid; grid-template-columns:repeat(auto-fit,minmax(170px,1fr));
  gap:26px; text-align:center;
}
.tg-stat__num{
  display:block;
  font:800 clamp(34px,4vw,52px) var(--font-display);
  color:var(--teal); line-height:1;
}
.tg-stat__label{
  display:block; margin-top:8px;
  color:var(--on-dark-muted); font-size:14px;
}

/* --------------------------------------------------------------------------
   Yorumlar
   -------------------------------------------------------------------------- */
.tg-reviews{ background:var(--paper); }
.tg-reviews .tg-shell{ padding-block:var(--section-y); }
.tg-reviews .tg-sec-head{ margin-bottom:40px; }

.tg-review{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius-card);
  padding:32px;
  display:flex; flex-direction:column; gap:18px;
}
.tg-review__stars{ margin:0; color:var(--orange); font-size:20px; letter-spacing:3px; }
.tg-review__text{ margin:0; color:#33565a; font-size:15.5px; line-height:1.75; }
.tg-review__by{ display:flex; align-items:center; gap:12px; margin-top:2px; }
.tg-avatar{
  width:44px; height:44px; border-radius:50%; flex:0 0 auto;
  display:grid; place-items:center;
  font:700 16px var(--font-display);
}
.tg-avatar--teal{ background:var(--teal); color:var(--ink); }
.tg-avatar--orange{ background:var(--orange); color:#fff; }
.tg-review__name{ display:block; font:700 15px var(--font-display); color:var(--text); }
.tg-review__role{ display:block; font-size:13px; color:var(--text-quiet); }

/* --------------------------------------------------------------------------
   İletişim
   -------------------------------------------------------------------------- */
.tg-contact{
  position:relative; overflow:hidden;
  background:var(--ink); color:var(--on-dark);
}
.tg-contact__glow{
  position:absolute; inset:0;
  background:radial-gradient(600px 340px at 15% 20%, rgba(53,190,193,.16), transparent 70%);
}
.tg-contact__grid{
  position:relative;
  padding-block:var(--section-y);
  display:grid; grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:clamp(36px,5vw,64px);
}
.tg-contact__intro{ display:flex; flex-direction:column; gap:22px; }
.tg-contact__intro .tg-eyebrow{ margin-bottom:0; }
.tg-contact__intro .tg-h2{ font-size:clamp(28px,4vw,46px); line-height:1.08; }
.tg-contact__intro .tg-sec-head__note{ max-width:440px; }

.tg-channels{ list-style:none; margin:6px 0 0; padding:0; display:flex; flex-direction:column; gap:12px; }
.tg-channels a,
.tg-channel__static{
  display:flex; align-items:center; gap:16px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(53,190,193,.2);
  border-radius:14px; padding:18px 20px;
  color:var(--on-dark);
  transition:border-color .25s, background-color .25s;
}
.tg-channels a:hover{
  border-color:var(--teal);
  background:rgba(53,190,193,.08);
  color:var(--on-dark);
}
.tg-channel__icon{
  width:44px; height:44px; border-radius:12px; flex:0 0 auto;
  display:grid; place-items:center; font-size:20px;
}
.tg-channel__icon--teal{ background:var(--teal); color:var(--ink); }
.tg-channel__icon--wa{ background:var(--wa); color:#fff; }
.tg-channel__icon--orange{ background:var(--orange); color:#fff; }
.tg-channel__icon--ink{
  background:var(--ink-700); color:var(--teal);
  border:1px solid rgba(53,190,193,.3);
}
.tg-channel__kicker{ display:block; font-size:12px; color:var(--on-dark-quiet); }
.tg-channel__value{ display:block; font:700 17px var(--font-display); }
.tg-channel__value--plain{ font:600 15px var(--font-body); }

/* Form */
.tg-form{
  background:var(--surface); color:var(--ink-700);
  border-radius:20px; padding:clamp(26px,3vw,38px);
  display:flex; flex-direction:column; gap:16px;
  box-shadow:0 30px 70px rgba(0,0,0,.35);
}
.tg-form__title{ margin:0 0 4px; font:700 22px var(--font-display); }

.tg-field{ display:flex; flex-direction:column; gap:7px; }
.tg-field__label{ font:600 13px var(--font-body); color:#33565a; }
.tg-field input,
.tg-field select,
.tg-field textarea{
  font:400 15px var(--font-body); color:var(--ink-700);
  padding:13px 15px;
  border:1px solid var(--line-field); border-radius:10px;
  background:var(--surface-soft);
  transition:border-color .2s, box-shadow .2s;
}
.tg-field textarea{ resize:vertical; min-height:88px; }
.tg-field input:focus,
.tg-field select:focus,
.tg-field textarea:focus{
  outline:none; border-color:var(--teal);
  box-shadow:0 0 0 3px rgba(53,190,193,.18);
}
.tg-field.is-invalid input,
.tg-field.is-invalid textarea{ border-color:#e05252; background:#fff7f7; }

.tg-form__submit{
  margin-top:4px;
  background:var(--orange); color:#fff;
  border:none; cursor:pointer;
  font:700 15.5px var(--font-display);
  padding:16px; border-radius:11px;
  transition:background-color .25s;
}
.tg-form__submit:hover{ background:var(--orange-600); }
.tg-form__submit.is-sent{ background:var(--teal); color:var(--ink); }

.tg-form__note{ margin:0; font-size:12px; color:#8aa0a0; text-align:center; }
.tg-form__note.is-error{ color:#c33; font-weight:600; }

/* --------------------------------------------------------------------------
   Hizmet detay sayfaları
   -------------------------------------------------------------------------- */
/* Alt sayfalarda bölüm binmesi yok (ID'li kuralı ezmek için #tg-site şart). */
#tg-site.tg-page > section{ margin-top:0; border-radius:0; box-shadow:none; }

.tg-phero{
  position:relative; overflow:hidden;
  background:var(--ink); color:var(--on-dark);
}
.tg-phero__grid{
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(53,190,193,.05) 1px,transparent 1px),
    linear-gradient(90deg,rgba(53,190,193,.05) 1px,transparent 1px);
  background-size:52px 52px;
}
.tg-phero__glow{
  position:absolute; inset:0;
  background:radial-gradient(700px 380px at 78% 18%, rgba(53,190,193,.18), transparent 70%);
}
.tg-phero__inner{
  position:relative;
  padding-top:calc(var(--nav-h) + clamp(46px,7vh,80px));
  padding-bottom:clamp(46px,7vh,80px);
  display:flex; flex-direction:column; gap:18px;
}
.tg-crumb{
  display:flex; align-items:center; gap:10px; flex-wrap:wrap;
  font:600 12px var(--font-mono); letter-spacing:.16em;
  color:var(--on-dark-quiet); text-transform:uppercase;
}
.tg-crumb a{ color:var(--teal); }
.tg-crumb a:hover{ color:var(--teal-300); }
.tg-crumb [aria-current]{ color:#fff; }
.tg-phero__title{
  margin:0;
  font:800 clamp(30px,5.4vw,60px)/1.05 var(--font-display);
  letter-spacing:-.03em;
}

.tg-detail{ background:var(--surface); }
.tg-detail .tg-shell{
  padding-top:clamp(40px,6vh,64px);
  padding-bottom:var(--section-y);
}

.tg-detail__media{
  margin:0 0 clamp(32px,5vh,48px);
  border-radius:20px; overflow:hidden;
  box-shadow:0 30px 70px rgba(6,24,26,.28);
  background:#dfe9e9;
}
.tg-detail__media img{
  display:block; width:100%; height:auto;   /* height özniteliği aspect-ratio'yu ezmesin */
  aspect-ratio:16/10; object-fit:cover;
}

.tg-detail__body{ display:flex; flex-direction:column; gap:18px; }
.tg-detail__body .tg-h2{ margin-bottom:2px; }
.tg-detail__lede{
  margin:0; color:var(--text-muted);
  font-size:16px; line-height:1.8;
}
.tg-detail__lede b{ color:var(--ink-700); }
.tg-detail__lede--accent{ color:var(--teal-600); }

.tg-feats{
  margin-top:clamp(18px,3vh,30px);
  display:grid; grid-template-columns:repeat(auto-fit,minmax(290px,1fr));
  gap:clamp(24px,3.4vw,38px);
}
.tg-feat{ display:flex; gap:16px; }
.tg-feat__n{
  flex:0 0 auto; width:34px; height:34px; margin-top:2px;
  border-radius:50%; background:var(--surface);
  border:1px solid var(--line);
  box-shadow:0 8px 18px rgba(14,42,44,.09);
  display:grid; place-items:center;
  font:700 13px var(--font-display); color:var(--teal-600);
}
.tg-feat h3{
  margin:0 0 8px;
  font:700 18px var(--font-display); color:var(--teal-600);
}
.tg-feat p{
  margin:0; color:var(--text-muted);
  font-size:14.5px; line-height:1.7;
}

.tg-cta{
  margin-top:clamp(40px,6vh,66px);
  background:var(--ink-900); color:var(--on-dark);   /* footer ile aynı ton */
  border-radius:20px; padding:clamp(28px,4vw,40px);
  display:flex; align-items:center; justify-content:space-between;
  gap:26px; flex-wrap:wrap;
}
.tg-cta__title{
  margin:0 0 8px;
  font:800 clamp(20px,2.4vw,26px)/1.25 var(--font-display);
  color:#fff; max-width:22ch;
}
.tg-cta__text{ margin:0; color:var(--on-dark-muted); font-size:15px; line-height:1.65; max-width:44ch; }
.tg-cta__actions{ display:flex; gap:12px; flex-wrap:wrap; }
.tg-btn--ghost-dark{
  border:1px solid rgba(255,255,255,.35); color:#fff;
  font-weight:600; font-size:15px; padding:16px 26px;
}
.tg-btn--ghost-dark:hover{ border-color:var(--teal); color:var(--teal); }

.tg-others{ margin-top:clamp(40px,6vh,66px); }
.tg-others__head{
  margin:0 0 16px;
  font:700 12px var(--font-mono); letter-spacing:.24em;
  color:var(--orange); text-transform:uppercase;
}
.tg-others__list{ display:flex; flex-wrap:wrap; gap:10px; }
.tg-others__list a{
  background:var(--surface-soft); border:1px solid var(--line);
  border-radius:999px; padding:11px 20px;
  font:600 14px var(--font-display); color:var(--text-muted);
  transition:border-color .25s, color .25s, background-color .25s;
}
.tg-others__list a:hover{
  border-color:var(--teal); color:var(--teal-600); background:#f2fbfb;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.tg-footer{ background:var(--ink-900); color:#8fb0b2; }
.tg-footer__grid{
  padding:56px var(--gutter) 28px;
  display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:36px;
}
.tg-footer__brand{ display:flex; flex-direction:column; gap:16px; max-width:320px; }
.tg-footer__brand img{
  height:38px; width:auto; align-self:flex-start;
  filter:brightness(0) invert(1);
}
.tg-footer__brand p{ margin:0; font-size:14px; line-height:1.7; }

.tg-footer__social{ display:flex; gap:10px; }
.tg-soc{
  width:40px; height:40px; border-radius:10px;
  background:rgba(255,255,255,.06);
  display:grid; place-items:center; font-size:17px;
  transition:background-color .25s;
}
.tg-soc--tel:hover{ background:var(--teal); }
.tg-soc--wa:hover{ background:var(--wa); }
.tg-soc--mail:hover{ background:var(--orange); }

.tg-footer__col{ display:flex; flex-direction:column; gap:12px; }
.tg-footer__head{
  margin:0 0 4px;
  font:700 14px var(--font-display); color:#fff;
}
.tg-footer__col a{ color:#8fb0b2; font-size:14px; }
.tg-footer__col a:hover{ color:var(--teal); }
.tg-footer__addr{ font-size:14px; line-height:1.6; }
.tg-footer__tel{ color:var(--teal) !important; font-weight:600; }

.tg-footer__bar{ border-top:1px solid rgba(255,255,255,.08); }
.tg-footer__bar-inner{
  padding-block:20px;
  display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap;
  font-size:13px; color:#6a8b8d;
}

/* --------------------------------------------------------------------------
   Sabit arama butonu
   Telefon, sitenin geri kalanında olduğu gibi teal ile temsil ediliyor.
   -------------------------------------------------------------------------- */
.tg-fab{
  position:fixed; right:22px; bottom:22px; z-index:90;
  width:58px; height:58px; border-radius:50%;
  background:var(--teal); color:var(--ink);
  display:grid; place-items:center; font-size:26px;
  box-shadow:0 10px 30px rgba(53,190,193,.45);
  animation:tg-float 3s ease-in-out infinite;
  transition:transform .25s var(--ease);
}
.tg-fab:hover{ transform:scale(1.08); color:var(--ink); }

/* --------------------------------------------------------------------------
   Duyarlı davranış
   -------------------------------------------------------------------------- */
@media (max-width:900px){
  .tg-topbar__label{ letter-spacing:.18em; }
  .tg-topbar__value{ font-size:12px; letter-spacing:.06em; }

  .tg-nav__burger{ display:flex; }

  .tg-nav__links{
    position:absolute; left:0; right:0; top:var(--nav-h);
    display:none; flex-direction:column; gap:0;
    padding:8px var(--gutter) 18px;
    background:rgba(255,255,255,.97);
    backdrop-filter:blur(14px);
    border-bottom:1px solid #e6eded;
    box-shadow:0 18px 40px rgba(14,42,44,.14);
  }
  .tg-nav__links.is-open{ display:flex; animation:tg-fade .25s ease; }
  .tg-nav__links a,
  .tg-nav.is-scrolled .tg-nav__links a{
    color:#33565a; padding:14px 2px;
    border-bottom:1px solid #eef4f4;
    font-size:16px;
  }
  .tg-nav__links a:last-child{ border-bottom:none; }

  .tg-hero__foot{ align-items:flex-start; gap:26px; }
  .tg-about__badge{ left:0; }
}

@media (max-width:560px){
  :root{ --radius-stack:20px; }

  /* Adres bu genişlikte tek satıra sığmıyor; e-postayı ortalayıp bırakıyoruz.
     Adres, İletişim bölümünde ve footer'da zaten var. */
  .tg-topbar__inner{ justify-content:center; }
  .tg-topbar__item--adres,
  .tg-topbar__rule{ display:none; }

  .tg-nav__cta{ padding:10px 14px; font-size:12.5px; }
  .tg-hero{ min-height:88vh; }
  .tg-hero__cta{ width:100%; }
  .tg-hero__cta .tg-btn{ flex:1 1 100%; justify-content:center; }

  .tg-card__body{ padding:24px; }
  .tg-cta{ padding:26px; }
  .tg-cta__actions{ width:100%; }
  .tg-cta__actions .tg-btn{ flex:1 1 100%; justify-content:center; }
  .tg-ticks{ grid-template-columns:1fr; }
  .tg-about__badge{ padding:18px 20px; }
  .tg-about__badge-num{ font-size:32px; }
  .tg-review{ padding:24px; }
  .tg-footer__bar-inner{ justify-content:flex-start; }
  .tg-fab{ right:16px; bottom:16px; width:52px; height:52px; font-size:25px; }
}

/* Hareket azaltma tercihi */
@media (prefers-reduced-motion:reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{
    animation-duration:.001ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.001ms !important;
  }
  [data-reveal]{ opacity:1 !important; transform:none !important; }
}

/* Yazdırma */
@media print{
  .tg-splash,.tg-topbar,.tg-nav,.tg-fab,.tg-form__submit{ display:none !important; }
  #tg-site > section,
  #tg-site > section.is-stacked{
    margin-top:0; border-radius:0; box-shadow:none;
    position:relative !important; top:auto !important;
  }
  body{ background:#fff; }
}
