/* =========================================================
   MODA CAM BALKON — style.css (TEMİZ / SLIDER-READY)
   - HERO slider mevcut (BOZULMADI)
   - Yeni: REVEAL STAGE + GLASS PANEL (overlay)
========================================================= */

/* ========== RESET ========== */
*{ box-sizing:border-box; }
html, body{ height:100%; }
body{
  margin:0;
  background:#fff;
  color:#0f172a;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", sans-serif;
}

/* ========== NAVBAR (Sticky) ========== */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(15,23,42,.08);
  backdrop-filter: blur(10px);
}
.site-header__wrap{
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.brand{
  color:#0f172a;
  text-decoration:none;
  font-weight:900;
  letter-spacing:.2px;
}
.nav{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}
.nav a{
  color: rgba(15,23,42,.78);
  text-decoration:none;
  font-weight:700;
  opacity:.95;
  transition: opacity .15s ease;
}
.nav a:hover{ opacity:1; }

/* ========== HERO (Slider Altyapısı) ========== */
.hero{
  position: relative;             /* dots için */
  background:#fff;
  padding: 54px 0;
  transition: filter .25s ease;   /* pause hissi */
}
.hero.is-paused{
  filter: brightness(0.92);
}

.hero__viewport{ overflow:hidden; }

.hero__track{
  display:flex;
  will-change: transform;
  transform: translate3d(0,0,0);
}

.hero__slide{ flex: 0 0 100%; }

.hero__wrap{
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;

  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 44px;
  align-items: center;
}

/* SOL METİN */
.hero__left h1{
  margin: 0 0 14px;
  font-size: 54px;
  line-height: 1.06;
  letter-spacing: -0.02em;
  font-weight: 900;

  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;

  background: linear-gradient(90deg, #2563eb, #0ea5e9, #22c55e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__left p{
  margin: 0 0 18px;
  max-width: 640px;
  font-size: 16.5px;
  line-height: 1.78;
  color: rgba(15,23,42,.74);
}

/* CTA (İletişim İçin) */
.hero__btn{
  display:inline-flex;
  align-items:center;
  gap:10px;

  padding: 12px 18px;
  border-radius: 14px;
  text-decoration:none;
  font-weight:800;

  background:#25D366;
  color:#062012;

  box-shadow: 0 10px 26px rgba(37,211,102,.22);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.hero__btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(37,211,102,.28);
  filter: saturate(1.05);
}

/* WhatsApp ikon boyutu */
.wp-icon{
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
}

/* Pulse nokta */
.wp-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.95);
  box-shadow: 0 0 0 0 rgba(255,255,255,.55);
  animation: wpPulse 1s infinite;
}
@keyframes wpPulse{
  0%   { transform: scale(.92); opacity:.75; box-shadow: 0 0 0 0 rgba(255,255,255,.55); }
  50%  { transform: scale(1);   opacity:1;  box-shadow: 0 0 0 10px rgba(255,255,255,0); }
  100% { transform: scale(.92); opacity:.75; box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

/* CTA titreşim: sadece aktif slide */
.hero__btn.is-active{ animation: wpShake 1s infinite; }
@keyframes wpShake{
  0%{ transform: translateX(0); }
  2%{ transform: translateX(-2px); }
  4%{ transform: translateX(2px); }
  6%{ transform: translateX(-2px); }
  8%{ transform: translateX(2px); }
  10%{ transform: translateX(0); }
  100%{ transform: translateX(0); }
}

/* SAĞ GÖRSEL — kırpma yok (contain) */
.hero__right{
  display:flex;
  align-items:center;
  justify-content:center;
}
.hero__right img{
  width: 100%;
  max-width: 560px;
  height: 420px;
  object-fit: contain;
  display:block;
  background: transparent;
}

/* Dots (sayaç) */
.hero__dots{
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
  pointer-events: none;
}
.hero__dots .dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(15,23,42,.22);
  opacity: .7;
  transition: transform .25s ease, background .25s ease, opacity .25s ease;
}
.hero__dots .dot.is-active{
  background: #25D366;
  opacity: 1;
  transform: scale(1.45);
}

/* ========== HERO RESPONSIVE ========== */
@media (max-width: 900px){
  .hero{ padding: 34px 0; }
  .hero__wrap{
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: start;
  }
  .hero__left h1{ font-size: 40px; }
  .hero__right img{
    max-width: 100%;
    height: 300px;
  }
}

/* =========================================================
   REVEAL STAGE (Hero üstüne panel)
   NOT: Hero BOZULMADAN çalışır
========================================================= */
.reveal-stage{
  position: relative;
  height: 200vh; /* scroll alanı */
}

.reveal-stage__sticky{
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: #fff;
}

/* Hero sahnede altta kalsın */
.reveal-stage .hero{
  position: relative;
  z-index: 1;
}

/* Panel sahnede üstte */
.glass-panel{
  position: absolute;
  inset: 0;
  z-index: 30;
  pointer-events: none;

  /* 🔥 JS class istemiyoruz: panel hep var, sadece aşağıda bekler */
  opacity: 1;
}

/* Ayrı bg kullanmıyoruz, panelin kendisine veriyoruz */
.glass-panel__bg{ display:none; }

/* panel: full ekran + mavi arka plan */
.glass-panel__panel{
  position:absolute;
  inset:0;
  height:100vh;

  background: linear-gradient(180deg,#dceeff,#c6e2ff);

  /* başlangıç: tamamen aşağıda */
  transform: translate3d(0, 100vh, 0);
  will-change: transform;
}

.glass-panel__wrap{
  max-width:1180px;
  margin:0 auto;
  padding:80px 18px;

  height:100%;

  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.glass-panel__image img{
  width:100%;
  border-radius:22px;
  box-shadow:0 40px 80px rgba(0,0,0,.18);
  display:block;
}

/* içerik: arka plan üstünde (kart yok) */
.glass-panel__content{
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}
@media(max-width:900px){
  .glass-panel__wrap{
    grid-template-columns:1fr;
    gap:28px;
    padding: 60px 18px;
  }
}
/* ===== 20+ rozet ===== */
.glass-panel__image{
  position: relative;
}

.xp-badge{
  position: absolute;
  right: 22px;
  bottom: 22px;

  width: 190px;
  height: 190px;
  border-radius: 999px;

  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 26px 60px rgba(0,0,0,.18);

  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.xp-badge__num{
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  color: #0ea5e9;
}

.xp-badge__text{
  margin-top: 10px;
  font-weight: 800;
  color: rgba(15,23,42,.90);
  line-height: 1.2;
}
/* Görsel başlangıçta bulanık */
.glass-panel__image img{
  filter: blur(18px);
  transform: scale(1.05);
  transition: filter 1.2s ease, transform 1.2s ease;
}

/* Reveal başlayınca netleşsin */
.reveal-stage.is-revealing .glass-panel__image img{
  filter: blur(0);
  transform: scale(1);
}
.glass-panel__content{
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 1s ease, transform 1s ease;
}

/* Reveal başlayınca */
.reveal-stage.is-revealing .glass-panel__content{
  opacity: 1;
  transform: translateX(0);
}
.xp-badge{
  transform: scale(0.7);
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.reveal-stage.is-revealing .xp-badge{
  transform: scale(1);
  opacity: 1;
}
/* Stage içindeki “normal beyaz içerik” */
.content-stage{
  height: 100vh;          /* sticky sahnede tam ekran dursun */
  display: flex;
  align-items: center;
  background: #fff;       /* istediğin: beyaz */
  position: relative;
  z-index: 5;             /* glass-panel altında kalsın */
}

.content-stage__wrap{
  max-width:1180px;
  margin:0 auto;
  padding: 80px 18px;
  width:100%;
}

/* glass-panel zaten üstte (z-index:20) sende var */
/* 2. sahne beyaz zemin */
.stage-white{
  position:absolute;
  inset:0;
  background:#fff;
  z-index:1;
}

/* glass panel her zaman üstte */
.glass-panel{
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:20;
  opacity:1;              /* 2. sahnede hiç kaybolmasın */
}

/* panel başlangıçta tamamen aşağıda */
.glass-panel__panel{
  position:absolute;
  left:0; right:0; bottom:0;
  height:100vh;
  transform: translate3d(0, 110%, 0);
  will-change: transform;
  background:#fff;        /* İSTEDİĞİN: 2. sürgü alanı beyaz */
}
/* ========== SAHNE 2 (beyaz) ========== */
.reveal-stage--white,
.reveal-stage--white .reveal-stage__sticky{
  background:#fff;
}

/* Sahne 2 iç içerik */
.why{ padding: 70px 0; }
.why__wrap{
  max-width:1180px;
  margin:0 auto;
  padding:0 18px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:48px;
  align-items:start;
}
.why__left img{
  width:100%;
  height:340px;
  object-fit:cover;
  border-radius:18px;
  display:block;
}
.why__list{
  list-style:none;
  margin:18px 0 0;
  padding:0;
  display:grid;
  gap:14px;
}
.why__list li{
  display:grid;
  gap:6px;
}
.why__list b{ font-size:18px; }
.why__list span{ color:rgba(15,23,42,.72); }

.why__kicker{ color:#0ea5e9; font-weight:800; margin-bottom:10px; }
.why__title{ margin:0 0 12px; font-size:40px; line-height:1.12; }
.why__text{ margin:0 0 18px; color:rgba(15,23,42,.72); line-height:1.7; }

.why__img img{
  width:100%;
  height:260px;
  object-fit:cover;
  border-radius:18px;
  display:block;
  background:#eef6ff;
}

/* Overlay beyaz panel */
.glass-panel--white{ opacity:1; z-index:20; }
.glass-panel--white .glass-panel__panel{
  background:#fff;
  transform: translate3d(0, 110%, 0);
}

/* mobil */
@media (max-width: 900px){
  .why__wrap{ grid-template-columns:1fr; gap:22px; }
  .why__title{ font-size:30px; }
}
/* HERO ve ABOUT görselleri ortak boyut */
.hero__right img,
.about-image img {
  width: 100%;
  max-width: 520px;      /* masaüstü genişlik */
  height: 420px;         /* SABİT yükseklik */
  object-fit: contain;  /* kırpma yok */
  display: block;
  margin-inline: auto;
}
/* ===============================
   WHY US SECTION
=============================== */

.why-us{
  padding:100px 0;
  background:#fff;
}

.why-us__grid{
  max-width:1180px;
  margin:0 auto;
  padding:0 18px;

  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:flex-start;
}

/* Görseller */
.why-us__image img{
  width:100%;
  height:380px;
  object-fit:contain;
  display:block;
  border-radius:14px;
  background:#f4f6f8;
}

/* SOL LİSTE */
.why-us__list{
  list-style:none;
  padding:0;
  margin-top:30px;
  display:flex;
  flex-direction:column;
  gap:18px;
}

.why-us__list li{
  display:flex;
  gap:12px;
}

.check{
  width:22px;
  height:22px;
  border-radius:6px;
  background:#22c55e;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  flex-shrink:0;
}

.why-us__list strong{
  font-size:17px;
  display:block;
  margin-bottom:2px;
}

.why-us__list p{
  margin:0;
  color:#475569;
  line-height:1.6;
}

/* SAĞ TARAF */
.kicker{
  color:#0ea5e9;
  font-weight:700;
  letter-spacing:.5px;
}

.why-us__right h2{
  margin:10px 0 16px;
  font-size:34px;
}

.why-us__text{
  color:#475569;
  line-height:1.75;
  margin-bottom:26px;
}

/* RESPONSIVE */
@media(max-width:900px){
  .why-us__grid{
    grid-template-columns:1fr;
  }

  .why-us__image img{
    height:280px;
  }
}
/* ===============================
   SCROLL IMAGE REVEAL EFFECT
=============================== */

.reveal-img{
  opacity:0;
  transform:translateY(40px) scale(.96);
  filter:blur(6px);
  transition:
    opacity .8s ease,
    transform .8s ease,
    filter .8s ease;
}

.reveal-img.is-visible{
  opacity:1;
  transform:translateY(0) scale(1);
  filter:blur(0);
}
/* ===============================
   TEXT SCROLL REVEAL
=============================== */

.reveal-left{
  opacity:0;
  transform:translateX(-40px);
  transition:
    opacity .8s ease,
    transform .8s ease;
}

.reveal-right{
  opacity:0;
  transform:translateX(40px);
  transition:
    opacity .8s ease,
    transform .8s ease;
}

.reveal-left.is-visible,
.reveal-right.is-visible{
  opacity:1;
  transform:translateX(0);
}
/* =========================
   SAHNE 2 — WHY US
========================= */
.why-us{
  background:#fff;
  padding: 72px 0;
}

.why-us__grid{
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;

  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

/* sol görsel */
.why-us__image{
  border-radius: 10px;
  overflow: hidden;
}
.why-us__image img{
  width: 100%;
  height: 340px;           /* İKİ GÖRSEL AYNI BOY */
  object-fit: cover;
  display:block;
  border-radius: 10px;
}

/* sol liste */
.why-us__list{
  list-style:none;
  padding: 18px 0 0;
  margin: 0;
  display:grid;
  gap: 14px;
}
.why-us__list li{
  display:flex;
  gap: 12px;
  align-items:flex-start;
}
.check{
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: #22c55e;
  color:#fff;
  font-weight:900;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top: 3px;
  flex: 0 0 auto;
}
.why-us__list strong{
  display:block;
  font-size: 18px;
  line-height: 1.25;
}
.why-us__list p{
  margin: 6px 0 0;
  color: rgba(15,23,42,.72);
  line-height: 1.6;
  font-size: 15.5px;
}

/* sağ yazılar */
.kicker{
  display:inline-block;
  color: #06b6d4;
  font-weight: 800;
  letter-spacing: .2px;
  margin-bottom: 10px;
}
.why-us__right h2{
  margin: 0 0 12px;
  font-size: 40px;
  letter-spacing: -0.02em;
}
.why-us__text{
  margin: 0 0 18px;
  color: rgba(15,23,42,.78);
  line-height: 1.8;
  font-size: 16px;
}

/* =========================
   REVEAL ANİMASYON — GÜVENLİ
   - JS yoksa: her şey görünür
   - JS varsa: .reveal-on body ile animasyon başlar
========================= */
[data-reveal]{
  opacity: 1;                 /* JS yoksa GÖRÜNÜR */
  transform: none;
  filter: none;
}

.reveal-on [data-reveal]{
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  filter: blur(10px);
  transition: opacity .55s ease, transform .65s cubic-bezier(.22,.61,.36,1), filter .75s ease;
  will-change: opacity, transform, filter;
}

.reveal-on [data-reveal="left"]{ transform: translate3d(-28px, 0, 0); filter: blur(8px); }
.reveal-on [data-reveal="right"]{ transform: translate3d(28px, 0, 0); filter: blur(8px); }
.reveal-on [data-reveal="img"]{ transform: translate3d(0, 22px, 0); filter: blur(14px); }

.reveal-on .is-in{
  opacity: 1;
  transform: translate3d(0,0,0);
  filter: blur(0);
}

/* mobil */
@media (max-width: 900px){
  .why-us__grid{ grid-template-columns: 1fr; gap: 28px; }
  .why-us__right h2{ font-size: 32px; }
  .why-us__image img{ height: 280px; }
}
/* =========================
   SAHNE 3 — İŞ SÜRECİMİZ
========================= */
.process{
  padding: 90px 0 80px;
  background: #f6f8fb;
}

.process .container{
  max-width: 1180px;
}

.process__head{
  max-width: 760px;
  margin: 0 auto 56px;
}

.process__kicker{
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .06em;
  color: #1aa7b1;
  margin-bottom: 10px;
}

.process__title{
  font-weight: 800;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.15;
  margin: 0 0 18px;
  color: #0b2239;
}

.process__desc{
  margin: 0 auto;
  max-width: 680px;
  color: rgba(11,34,57,.72);
  font-size: 16px;
  line-height: 1.7;
}

.process__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 46px;
  align-items: start;
}

/* kart gibi durmasın: arka plan transparan */
.process__item{
  position: relative;
  padding-left: 86px; /* soldaki büyük numara için */
  min-height: 340px;
}

.process__num{
  position: absolute;
  left: 0;
  top: 210px;
  font-weight: 900;
  font-size: 86px;
  line-height: 1;
  color: #1aa7b1;
  opacity: .9;
}

.process__img{
  width: 170px;
  height: 170px;
  border-radius: 999px;
  overflow: hidden;
  margin: 0 0 18px;
  box-shadow: 0 16px 40px rgba(11,34,57,.10);
  background: #fff;
}

.process__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.process__h{
  font-size: 22px;
  line-height: 1.25;
  margin: 0 0 10px;
  font-weight: 800;
  color: #0b2239;
}

.process__p{
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(11,34,57,.72);
}

.process__p strong{
  color: #0b2239;
  font-weight: 800;
}

/* alttaki küçük turkuaz nokta */
.process__dot{
  position: absolute;
  left: 28px;
  bottom: 18px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #1aa7b1;
}

/* responsive */
@media (max-width: 992px){
  .process__grid{ grid-template-columns: 1fr; gap: 28px; }
  .process__item{ padding-left: 78px; }
  .process__num{ top: 210px; font-size: 78px; }
}
/* SAHNE 3 — ORTALAMA DÜZELTME */
.process__item{
  text-align: center;
  padding-left: 0;
}

.process__num{
  position: relative;
  left: auto;
  top: auto;
  margin: 0 auto 10px;
}

.process__img{
  margin: 0 auto 18px;
}

.process__dot{
  position: relative;
  left: auto;
  bottom: auto;
  display: block;
  margin: 18px auto 0;
}
/* SAHNE 3 — ÜST BAŞLIK ORTALAMA */
.process__head{
  text-align: center;
}

.process__kicker{
  justify-content: center;
}

.process__desc{
  margin-left: auto;
  margin-right: auto;
}
/* =========================
   REVEAL YÖN AYARI (SAHNE 3)
========================= */

/* ÜSTTEN GELSİN */
[data-reveal="top"]{
  opacity: 0;
  transform: translateY(-40px);
}

/* ALTTAN GELSİN */
[data-reveal="bottom"]{
  opacity: 0;
  transform: translateY(40px);
}

/* Aktif olunca */
.reveal-on [data-reveal].is-in{
  opacity: 1;
  transform: translate(0,0);
  transition: opacity .7s ease, transform .7s ease;
}
/* REVEAL HIZ YAVAŞLATMA */
.reveal-on [data-reveal].is-in{
  opacity: 1;
  transform: translate(0,0);
  transition: opacity 1.1s ease, transform 1.1s ease;
}
/* =========================
   SAHNE 4 — BİZ KİMİZ
========================= */
.about{
  padding: 90px 0;
  background: #fff;
}

.about .container{ max-width: 1180px; }

.about__grid{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: start;
}

/* Sol */
.about__kicker{
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .06em;
  color: #1aa7b1;
  margin-bottom: 12px;
}

.about__title{
  font-weight: 900;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.15;
  margin: 0 0 18px;
  color: #0b2239;
}

.about__text p{
  margin: 0 0 12px;
  color: rgba(11,34,57,.75);
  line-height: 1.8;
  font-size: 15px;
}

.about__text strong{
  color: #0b2239;
  font-weight: 900;
}

.about__strong{
  margin-top: 14px;
  font-weight: 900;
  color: #0b2239;
}

/* Sağ */
.about__right{ position: relative; }

.about__masonry{
  position: relative;
  min-height: 430px;
  padding-right: 18px;
}

.about__img{
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(11,34,57,.14);
  background: #fff;
}

.about__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Büyük altta */
.about__img--big{
  width: 74%;
  height: 360px;
  border-radius: 16px;
}

/* Küçük sağ üst */
.about__img--small{
  position: absolute;
  right: 0;
  top: 0;
  width: 58%;
  height: 210px;
  border-radius: 16px;
}

/* 500 rozet */
.about__badge{
  position: absolute;
  right: 10%;
  top: 52%;
  width: 190px;
  height: 190px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(11,34,57,.18);
  display: grid;
  place-content: center;
  text-align: center;
}

.about__badgeNum{
  font-weight: 900;
  font-size: 52px;
  line-height: 1;
  color: #1aa7b1;
  margin-bottom: 6px;
}

.about__badgeText{
  font-weight: 800;
  color: #0b2239;
  font-size: 18px;
}

/* Responsive */
@media (max-width: 992px){
  .about{ padding: 70px 0; }
  .about__grid{ grid-template-columns: 1fr; gap: 36px; }
  .about__masonry{ min-height: 420px; }
  .about__img--big{ width: 100%; height: 320px; }
  .about__img--small{ width: 70%; height: 200px; }
  .about__badge{ right: 8%; top: 58%; width: 170px; height: 170px; }
}
/* =========================
   BOUNCE REVEAL (HAFİF)
========================= */
.reveal-on [data-reveal].is-in{
  opacity: 1;
  transform: translate(0,0) scale(1);
  transition:
    opacity 1.1s ease,
    transform 1.1s cubic-bezier(.22,1.12,.32,1);
}
/* =========================
   REVEAL MESAFE ARTTIRMA
========================= */

/* sağdan gelenler */
[data-reveal="right"]{
  opacity: 0;
  transform: translateX(80px);
}

/* soldan gelenler */
[data-reveal="left"]{
  opacity: 0;
  transform: translateX(-80px);
}

/* yukarıdan */
[data-reveal="top"]{
  opacity: 0;
  transform: translateY(-50px);
}

/* alttan */
[data-reveal="bottom"]{
  opacity: 0;
  transform: translateY(50px);
}
/* SAHNE 4 — ORTALAMA */
.about__left{
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about__right{
  display: flex;
  justify-content: center;
}
/* SAHNE 4 — SOLA YAPIŞMA DÜZELT */
.about .container{
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.about__grid{
  align-items: center; /* yazı + görsel dikeyde daha düzgün */
}
/* =========================
   UÇTAN UCA GELİŞ EFEKTİ
========================= */

/* Yazılar: en sağdan */
[data-reveal="right"]{
  opacity: 0;
  transform: translateX(140px);
}

/* Görseller: en soldan */
[data-reveal="left"]{
  opacity: 0;
  transform: translateX(-140px);
}

/* Yukarıdan */
[data-reveal="top"]{
  opacity: 0;
  transform: translateY(-60px);
}

/* Alttan */
[data-reveal="bottom"]{
  opacity: 0;
  transform: translateY(60px);
}
/* =========================
   GERÇEK UÇTAN UCA REVEAL
========================= */

/* Yazılar: ekranın en sağ dışından */
[data-reveal="right"]{
  opacity: 0;
  transform: translateX(40vw);
}

/* Görseller: ekranın en sol dışından */
[data-reveal="left"]{
  opacity: 0;
  transform: translateX(-40vw);
}

/* Yukarıdan */
[data-reveal="top"]{
  opacity: 0;
  transform: translateY(-80px);
}

/* Alttan */
[data-reveal="bottom"]{
  opacity: 0;
  transform: translateY(80px);
}
/* =========================
   REVEAL SÜPER YAVAŞ
========================= */
.reveal-on [data-reveal].is-in{
  opacity: 1;
  transform: translate(0,0);
  transition:
    opacity 2s ease,
    transform 2s cubic-bezier(.22,1.12,.32,1);
}
/* =========================
   SAHNE 4 — BLUR KAPAT
========================= */
#about [data-reveal]{
  filter: none !important;
  backdrop-filter: none !important;
}
/* =========================
   SAHNE 5 — MÜŞTERİ YORUMLARI
========================= */
.testimonials{
  padding: 90px 0;
  background: #0a1524;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.testimonials .container{
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ÜST/ALT IŞIK */
.testimonials::before,
.testimonials::after{
  content:"";
  position:absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  height: 260px;
  pointer-events:none;
  filter: blur(40px);
  opacity: .55;
}
.testimonials::before{
  top: -120px;
  background: radial-gradient(circle at 50% 60%, rgba(26,167,177,.85), rgba(26,167,177,0) 60%);
}
.testimonials::after{
  bottom: -140px;
  background: radial-gradient(circle at 50% 40%, rgba(255,255,255,.35), rgba(255,255,255,0) 62%);
}

/* Head */
.test-head{ max-width: 760px; margin: 0 auto 48px; }
.test-kicker{
  font-weight: 900;
  letter-spacing: .08em;
  font-size: 13px;
  color: rgba(26,167,177,1);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.test-title{
  font-weight: 900;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.15;
  margin: 0 0 14px;
}
.test-desc{
  margin: 0 auto;
  max-width: 660px;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
  font-size: 15px;
}

/* Grid */
.test-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

/* 3D */
.t-card{ perspective: 1200px; min-height: 290px; }
.t-inner{
  position: relative;
  height: 100%;
  transform-style: preserve-3d;
  transform: rotateY(35deg) translateY(20px);
  transition: transform 1.8s cubic-bezier(.22,1.12,.32,1);
}
.t-card.is-in .t-inner{ transform: rotateY(0deg) translateY(0); }

/* hafif hover */
@media (hover:hover){
.t-card.is-in:hover .t-inner{
  transform: rotateY(-18deg) translateY(-6px);
}
}
/* Face */
.t-face{
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 22px;
  backface-visibility: hidden;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  background: rgba(255,255,255,.06);
}

/* iç ışık (kartın üst/alt parlaması) */
.t-face::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(1000px 220px at 50% -10%, rgba(26,167,177,.22), transparent 55%),
    radial-gradient(900px 220px at 50% 115%, rgba(255,255,255,.12), transparent 55%);
  opacity: .95;
  pointer-events:none;
}

/* Back */
.t-back{
  transform: rotateY(180deg);
  background: rgba(255,255,255,.08);
}

/* İçerik */
.t-stars{ letter-spacing: 2px; font-size: 14px; color: rgba(26,167,177,1); margin-bottom: 10px; }
.t-title{ margin: 0 0 10px; font-weight: 900; font-size: 18px; }
.t-quote{ margin: 0 0 14px; color: rgba(255,255,255,.74); line-height: 1.7; font-size: 14.5px; }
.t-meta{ display:flex; align-items:center; gap:10px; color: rgba(255,255,255,.65); font-size: 13px; }
.t-dot{ opacity: .6; }

.t-backTitle{ font-weight: 900; font-size: 16px; margin-bottom: 12px; }
.t-list{ margin: 0; padding: 0 0 0 18px; color: rgba(255,255,255,.78); line-height: 1.75; font-size: 14.5px; }

/* Responsive */
@media (max-width: 992px){
  .test-grid{ grid-template-columns: 1fr; }
  .t-card{ min-height: 270px; }
}
/* =========================
   DARK NAVBAR
========================= */
.site-header{
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-header--dark{
  background:#0a1524;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.site-header__wrap{
  max-width:1180px;
  margin:0 auto;
  padding:18px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.brand{
  color:#fff;
  font-weight:800;
  font-size:20px;
  text-decoration:none;
}

.nav{
  display:flex;
  align-items:center;
}

.nav__link{
  color:rgba(255,255,255,.85);
  text-decoration:none;
  font-weight:600;
  margin-left:28px;
  transition:color .2s ease;
}

.nav__link:hover{
  color:#1aa7b1;
}
/* NAVBAR YAZILARI GÖRÜNMÜYOR — FIX */
.site-header--dark .nav__link{
  color: #ffffff !important;
  opacity: .92;
}

.site-header--dark .nav__link:hover{
  color: #1aa7b1 !important;
  opacity: 1;
}

.site-header--dark .brand{
  color: #ffffff !important;
}
/* =========================
   İŞLERİMİZ — SOL SABİT / SAĞ LİSTE
========================= */

/* Eğer global .container yoksa */
.container{
  max-width:1180px;
  margin:0 auto;
  padding-left:24px;
  padding-right:24px;
}

.projects-layout{
  display:grid !important;
  grid-template-columns: 1.2fr .8fr !important;
  gap: 56px !important;
  align-items: start !important;
}

/* Sol büyük görsel */
.projects-main img{
  width:100% !important;
  height:520px;
  object-fit:cover;
  border-radius:22px;
  box-shadow:0 30px 60px rgba(0,0,0,.25);
  display:block;
}

/* Sağ liste */
.projects-list{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.p-item{
  display:flex;
  align-items:center;
  gap:14px;
  background:#fff;
  padding:14px;
  border-radius:16px;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
  transition: transform .35s ease, box-shadow .35s ease;
  cursor:pointer;
}

/* Sağa değil SOLA kayacak = soldaki büyük görsele doğru */
.p-item:hover{
  transform: translateX(-26px);
  box-shadow:0 18px 40px rgba(0,0,0,.14);
}

.p-item img{
  width:92px;
  height:92px;
  object-fit:cover;
  border-radius:12px;
  flex:0 0 auto;
}

.p-item h3{
  margin:0;
  font-size:16px;
  font-weight:800;
  color:#0b2239;
}

/* Mobilde alt alta normal */
@media (max-width: 900px){
  .projects-layout{
    grid-template-columns: 1fr !important;
  }
  .projects-main img{
    height:360px;
  }
  .p-item:hover{
    transform:none;
  }
}
/* İŞLERİMİZ — SAĞ KARTLAR SOLA KAYSIN */
.p-item:hover{
  transform: translateX(-26px);
}
/* İŞLERİMİZ — DAHA YAKIN + DAHA BELİRGİN KAYMA */
.projects-layout{
  gap: 28px !important;                 /* 56px gibi büyükse ez */
  grid-template-columns: 1.25fr .75fr !important;
}

.p-item{
  transform: translateX(0);
}

.p-item:hover{
  transform: translateX(-55px) !important;  /* daha net */
}
/* =========================
   İŞLERİMİZ – YATAY SLIDER
========================= */

.works{
  margin-top:40px;
}

.works__viewport{
  overflow:hidden;
  width:100%;
}

.works__track{
  display:flex;
  gap:28px;
  flex-wrap: nowrap;
  will-change: transform;
}

/* TÜM KARTLAR */
.work-card{
  flex:0 0 280px;
  height:380px;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 12px 30px rgba(0,0,0,.15);
  background:#000;
}

.work-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* SOLDaki sabit görsel kırpılmasın */
.work-card--big img{
  object-fit: contain !important;
  background: rgba(255,255,255,.35); /* boşluk kalırsa güzel dursun */
}

/* DOTLAR */
.works__dots{
  display:flex;
  justify-content:center;
  gap:10px;
  margin-top:22px;
}

.works__dots span{
  width:10px;
  height:10px;
  border-radius:50%;
  background:#ccc;
}
/* =========================
   WORKS — SOL SABİT / SAĞ AKAN DÜZEN
========================= */

.works__layout{
  display:grid;
  grid-template-columns: 520px 1fr;
  gap:28px;
  align-items:stretch;
}

.works__fixed{
  position:relative;
}

.works__viewport{
  overflow:hidden;
  width:100%;
}

.works__track{
  display:flex;
  gap:28px;
}

/* mobilde alt alta */
@media (max-width: 900px){
  .works__layout{
    grid-template-columns:1fr;
  }
}
/* WORKS — SOL SABİT / SAĞ AKAN (KESİN YAN YANA) */
.works__layout{
  display:flex !important;
  gap:28px !important;
  align-items:stretch !important;
}

.works__fixed{
  flex:0 0 520px !important;   /* sol sabit genişlik */
}

.works__fixed .work-card--big{
  width:100% !important;
}

.works__viewport{
  flex:1 1 auto !important;    /* sağ alan kalan genişlik */
  overflow:hidden !important;
  width:auto !important;
}

/* mobilde alt alta */
@media (max-width: 900px){
  .works__layout{
    display:block !important;
  }
  .works__fixed{
    flex:none !important;
    margin-bottom:18px;
  }
}
/* =========================
   İŞLERİMİZ ARKA PLAN
========================= */

.projects-page{
  position: relative;
  padding: 40px 0;

  background:
    linear-gradient(rgba(255,255,255,.70), rgba(255,255,255,.70)),
    var(--bg) center / cover no-repeat;
}
.works__viewport{ overflow:hidden; }
.works__track{ display:flex; flex-wrap:nowrap; }
/* SOLDAN SABİT BÜYÜK GÖRSEL */
.work-card--big{
  width:420px;
  height:520px;
  border-radius:20px;
  overflow:hidden;
  background:#111;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* Görseli KIRMADAN oturt */
.work-card--big img{
  width:100%;
  height:100%;
  object-fit:contain;   /* 🔥 kırpma yok */
}
/* SABİT SOL GÖRSEL: arka planın üstüne otursun (kart zemini yok) */
.work-card--big{
  background: transparent !important;   /* gri/beyaz zemin yok */
  box-shadow: none;                     /* kart hissi istemiyorsan */
  border: 0;
  overflow: hidden;
  border-radius: 22px;                  /* istersen kalsın */
}

/* Görsel boşluk bırakmasın */
.work-card--big img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover !important;         /* 🔥 boşluk yok */
  object-position: center;
}

/* Eğer .work-card genelinde de background varsa onu da kır */
.work-card{
  background: transparent !important;
}
/* Header: logo solda, orta grup tam merkez */
.site-header__wrap{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:16px;
}

/* Bu NAV'i TAM ORTAYA kilitliyoruz */
.nav--center{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  align-items:center;
  justify-content:center;
  gap:28px;
  white-space:nowrap;
}

/* sosyal ikonlar */
.nav-social{
  display:flex;
  align-items:center;
  gap:12px;
  margin-left:10px;
}

/* ikon kutuları görünür olsun */
.nav-social__link{
  width:46px;
  height:46px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  background:rgba(255,255,255,.18);
  border:1px solid rgba(255,255,255,.22);
  color:#fff;
  transition:.2s ease;
}

.nav-social__icon{ width:24px; height:24px; }

/* Hover */
.nav-social__link:hover{
  transform:translateY(-2px);
  background:rgba(255,255,255,.28);
}

/* WhatsApp BAĞIRSIN */
.nav-social__link--wp{
  width:60px;
  height:60px;
  border-radius:18px;
  background:#25D366;
  border:none;
  box-shadow:0 14px 34px rgba(37,211,102,.42);
  animation: wpPulse 1.5s infinite;
}

.nav-social__link--wp:hover{
  transform:translateY(-2px) scale(1.04);
}

/* Pulse animasyonu */
@keyframes wpPulse{
  0%   { box-shadow:0 14px 34px rgba(37,211,102,.42), 0 0 0 0 rgba(37,211,102,.55); }
  70%  { box-shadow:0 14px 34px rgba(37,211,102,.42), 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow:0 14px 34px rgba(37,211,102,.42), 0 0 0 0 rgba(37,211,102,0); }
}
/* LOGO SOLDa KALSIN */
.site-header__wrap{
  display:flex;
  align-items:center;
  position:relative;
}

/* ORTA GRUP */
.nav-center{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  align-items:center;
  gap:28px;
}

/* MENÜ YAZILARI */
.nav__link{
  color:#fff;
  text-decoration:none;
  font-weight:500;
}

/* ORTA İKON BUTONLAR */
.nav-icon{
  width:42px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:10px;
  font-weight:700;
  color:#fff;
  text-decoration:none;
}

/* WHATSAPP BAĞIRSIN */
.nav-icon--wp{
  background:#25D366;
  width:58px;
  height:58px;
  font-size:18px;
  box-shadow:0 0 0 0 rgba(37,211,102,.7);
  animation:pulse 1.5s infinite;
}

/* IG & FB */
.nav-icon--ig{ background:#E1306C; }
.nav-icon--fb{ background:#1877F2; }

@keyframes pulse{
  0%{ box-shadow:0 0 0 0 rgba(37,211,102,.7); }
  70%{ box-shadow:0 0 0 18px rgba(37,211,102,0); }
  100%{ box-shadow:0 0 0 0 rgba(37,211,102,0); }
}
/* =======================
   CONTACT PAGE
======================= */

.contact-hero{
  padding:80px 16px;
  background:#0f172a;
  color:#fff;
}

.container{
  max-width:1100px;
  margin:auto;
}

.contact-title{
  text-align:center;
  font-size:42px;
  margin-bottom:10px;
}

.contact-sub{
  text-align:center;
  opacity:.85;
  margin-bottom:50px;
}

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}

/* SOL KART */
.contact-info{
  background:#111827;
  border-radius:20px;
  padding:32px;
}

.info-item{
  display:flex;
  gap:14px;
  margin-bottom:22px;
}

.info-item span{
  font-size:24px;
}

.info-item strong{
  display:block;
  margin-bottom:4px;
}

/* SOSYAL */
.contact-social{
  display:flex;
  gap:12px;
  margin-top:30px;
  flex-wrap:wrap;
}

.social-btn{
  padding:10px 18px;
  border-radius:999px;
  color:#fff;
  text-decoration:none;
  font-weight:600;
  transition:.2s;
}

.social-btn:hover{
  transform:translateY(-2px);
}

.social-btn.wp{ background:#25d366; }
.social-btn.ig{ background:#e1306c; }
.social-btn.fb{ background:#1877f2; }

/* FORM */
.contact-form{
  background:#111827;
  border-radius:20px;
  padding:32px;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  padding:14px;
  margin-bottom:14px;
  border-radius:12px;
  border:none;
  background:#1f2933;
  color:#fff;
}

.contact-form button{
  width:100%;
  padding:14px;
  border:none;
  border-radius:999px;
  background:#25d366;
  color:#fff;
  font-size:16px;
  font-weight:700;
  cursor:pointer;
}

.contact-form button:hover{
  background:#1ebe5d;
}

/* MOBİL */
@media(max-width:768px){
  .contact-grid{
    grid-template-columns:1fr;
  }

  .contact-title{
    font-size:32px;
  }
}
