:root{
  --bg: #07070b;
  --bg2:#0b0b12;
  --card: rgba(255,255,255,.06);
  --line: rgba(255,255,255,.10);
  --text:#f3f4f6;
  --muted: rgba(243,244,246,.72);
  --accent:#ff0033;
  --accent2:#ff2f5c;
  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --radius: 18px;
  --radius2: 26px;
  --container: 1180px;
}

:root[data-theme="light"]{
  --bg: #fff;         
  --bg2: #fff;
  --card: rgba(255,255,255,0.92);
  --line: rgba(18,20,23,0.10);
  --text: #121417;
  --muted: rgba(18,20,23,0.68);
  --shadow: 0 14px 40px rgba(17,24,39,0.10);
}

:root[data-theme="light"] html,
:root[data-theme="light"] body {
  background: transparent !important;
}

/* LIGHT MOD RESİM ODAKLI DÜZELTME */

:root[data-theme="light"] body {
  background: none !important; /* Dark moddan gelen tüm gradyanları sıfırlar */
  background-color: var(--bg) !important; 
  color: var(--text);
  position: relative;
  z-index: 1;
}

:root[data-theme="light"] body::before {
  content: "";
  position: fixed;
  inset: 0;

  background-image: url("../images/bg.jpg") !important;

  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.3 !important;
  z-index: 0 !important;
  pointer-events: none;
}

/* DARK (DEFAULT) - her zaman arkaplan */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  background-image: url("../images/bg_dark.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.1;
  z-index: 0;
  pointer-events: none;
}

/* LIGHT - sadece resmi değiştirir */
:root[data-theme="light"] body::before{
  background-image: url("../images/bg.jpg") !important;
  opacity: 0.3 !important;
}




/* Light moddaki grid ve maske efektlerini kapat */
:root[data-theme="light"]::before,
:root[data-theme="light"]::after {
  display: none !important;
}


/* Light temada kirmizi "glow" kapali */
:root[data-theme="light"] .bg-glow{ display:none; }
:root[data-theme="light"] .bg-grid{
  opacity:.10;
  background:
    linear-gradient(to right, rgba(0,0,0,.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,0,0,.06) 1px, transparent 1px);
  mask-image: radial-gradient(600px 600px at 25% 20%, #000 35%, transparent 72%);
}

/* Light temada nav temiz */
:root[data-theme="light"] .nav{
  background: rgba(245,246,248,.82);
  border-bottom: 1px solid rgba(18,20,23,.08);
}
:root[data-theme="light"] .nav__links a{ color: rgba(18,20,23,.86); }
:root[data-theme="light"] .nav__links a:hover{ background: rgba(18,20,23,.06); }
:root[data-theme="light"] .nav__toggle{
  border: 1px solid rgba(18,20,23,.12);
  background: rgba(18,20,23,.04);
  color:#121417;
}
:root[data-theme="light"] .nav__toggle span{ background:#121417; }
:root[data-theme="light"] .nav__lang{
  border:1px solid rgba(18,20,23,.12);
  background: rgba(18,20,23,.04);
}

/* Light: kart/yuzeyler */
:root[data-theme="light"] .card,
:root[data-theme="light"] .card--glass,
:root[data-theme="light"] .service-card,
:root[data-theme="light"] .slider,
:root[data-theme="light"] .mini-stat,
:root[data-theme="light"] .point,
:root[data-theme="light"] .contact-card,
:root[data-theme="light"] .form-box,
:root[data-theme="light"] .map-box{
  background: var(--card);
  border-color: rgba(18,20,23,.10);
  box-shadow: var(--shadow);
}

/* Light: section koyu bloklari sade */
:root[data-theme="light"] .section--dark{
  background: transparent;
  border-top: 1px solid rgba(18,20,23,.08);
  border-bottom: 1px solid rgba(18,20,23,.08);
}

/* Light: genel metinler (dark'taki acik renkleri koyulastir) */
:root[data-theme="light"] .section__subtitle,
:root[data-theme="light"] .text-strong,
:root[data-theme="light"] .ticks li,
:root[data-theme="light"] .slide__content p,
:root[data-theme="light"] .point,
:root[data-theme="light"] .form__note,
:root[data-theme="light"] .footer__copy{
  color: rgba(18,20,23,.72);
}

/* Light: butonlar/ikonlar */
:root[data-theme="light"] .icon-btn{
  border: 1px solid rgba(18,20,23,.12);
  background: rgba(18,20,23,.04);
  color:#121417;
}
:root[data-theme="light"] .icon-btn:hover{ background: rgba(18,20,23,.07); }

/* Light: form */
:root[data-theme="light"] .form input,
:root[data-theme="light"] .form textarea{
  border: 1px solid rgba(18,20,23,.12);
  background: rgba(255,255,255,.95);
  color:#121417;
}
:root[data-theme="light"] .form input:focus,
:root[data-theme="light"] .form textarea:focus{
  border-color: rgba(18,20,23,.22);
  background: #fff;
}

/* Light: footer */
:root[data-theme="light"] .footer{
  border-top: 1px solid rgba(18,20,23,.08);
  background: rgba(255,255,255,.70);
}
:root[data-theme="light"] .footer__brandSub,
:root[data-theme="light"] .footer__bottom{ color: rgba(18,20,23,.60); }
:root[data-theme="light"] .footer__link{ color: rgba(18,20,23,.76); }
:root[data-theme="light"] .footer__link:hover{ color: rgba(18,20,23,.92); }

/* Light: mobil nav panel */
@media (max-width: 920px){
  :root[data-theme="light"] .nav__links{
    background: rgba(245,246,248,.96);
    border: 1px solid rgba(18,20,23,.10);
    box-shadow: 0 18px 50px rgba(17,24,39,.12);
  }
}

/* ==========================
   Theme button (gunes/ay)
   ========================== */
.nav__theme{
  display:flex; align-items:center; justify-content:center;
  width:42px; height:42px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  cursor:pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.nav__theme:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.07);
}
.theme-icon{
  width:20px; height:20px;
  fill: currentColor;
  color: rgba(243,244,246,.92);
}

/* Theme icons - daha guzel renkler */
.theme-icon--moon{
  color: rgba(240,243,255,.92);          /* ay rengi */
  filter: drop-shadow(0 2px 10px rgba(255,255,255,.10));
}

/* Light modda gorunen gunes sari/turuncu */
:root[data-theme="light"] .theme-icon--sun{
  color: #ffb300;                         /* sari */
  filter: drop-shadow(0 2px 10px rgba(255,179,0,.25));
}

/* Light modda buton icindeki genel icon rengi override olmasin */
:root[data-theme="light"] .theme-icon{
  color: rgba(18,20,23,.88); /* diğer ikonlar için */
}


.theme-icon--sun{ display:none; }

:root[data-theme="light"] .nav__theme{
  border:1px solid rgba(18,20,23,.12);
  background: rgba(18,20,23,.04);
}
:root[data-theme="light"] .nav__theme:hover{ background: rgba(18,20,23,.07); }
:root[data-theme="light"] .theme-icon{ color: rgba(18,20,23,.88); }
:root[data-theme="light"] .theme-icon--moon{ display:none; }
:root[data-theme="light"] .theme-icon--sun{ display:block; }

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: Roboto, system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  background: radial-gradient(1200px 800px at 10% 10%, rgba(255,0,51,.12), transparent 60%),
              radial-gradient(900px 600px at 90% 30%, rgba(255,0,51,.07), transparent 60%),
              linear-gradient(180deg, var(--bg), var(--bg2));
  color: var(--text);
  overflow-x: hidden;
}

a{ color: inherit; text-decoration: none; }
img{ max-width:100%; display:block; }

.container{
  width:min(var(--container), calc(100% - 40px));
  margin-inline:auto;
}

.accent{ color: var(--accent); }

/* Decorative BG */
.bg-grid{
  position:fixed; inset:0;
  background:
    linear-gradient(to right, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 90px 90px;
  opacity:.18;
  pointer-events:none;
  mask-image: radial-gradient(600px 600px at 25% 20%, #000 40%, transparent 70%);
}
.bg-glow{
  position:fixed; inset:-20%;
  background: radial-gradient(circle at 35% 25%, rgba(255,0,51,.12), transparent 40%);
  filter: blur(30px);
  pointer-events:none;
}

/* NAV */
.nav{
  position:sticky; top:0; z-index:999;
  backdrop-filter: blur(14px);
  background: rgba(7,7,11,.55);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; padding:14px 0;
}
.brand img{ height:38px; width:auto; }

.nav__links{
  display:flex; align-items:center; gap:18px;
}
.nav__links a{
  font-weight:500;
  letter-spacing:.2px;
  color: rgba(243,244,246,.88);
  position:relative;
  padding:10px 10px;
  border-radius: 12px;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.nav__links a:hover{
  background: rgba(255,255,255,.06);
  transform: translateY(-1px);
}
.nav__lang{
  /* button default stilini sıfırla */
  appearance: none;
  -webkit-appearance: none;

  display:flex;
  align-items:center;
  justify-content:center;

  width:42px;
  height:42px;
  padding: 0;

  border-radius: 14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);

  cursor:pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.nav__lang:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.07);
}

.nav__lang:focus-visible{
  outline: 2px solid rgba(255,0,51,.45);
  outline-offset: 3px;
}

.nav__lang img{
  width:20px;
  height:auto;
  opacity:.9;
  display:block;
}


.nav__toggle{
  display:none;
  width:44px; height:44px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color:#fff;
  cursor:pointer;
}
.nav__toggle span{
  display:block; height:2px; width:18px;
  background:#fff; margin:5px auto;
  border-radius:999px;
}

/* HERO */
.hero{ position:relative; min-height: 92vh; display:grid; place-items:center; }
.hero__media{ position:absolute; inset:0; overflow:hidden; }
.hero__video{
  width:100%; height:100%;
  object-fit:cover;
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.02);
}
.hero__overlay{
  position:absolute; inset:0;
  background: radial-gradient(900px 500px at 35% 35%, rgba(0,0,0,.25), rgba(0,0,0,.72)),
              linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.75));
}
.hero__content{ position:relative; padding: 84px 0 64px; }

.badge{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 14px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.25);
  width: fit-content;
}
.badge .dot{
  width:10px; height:10px; border-radius:999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(255,0,51,.18);
}

.hero__title{
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.05;
  margin: 18px 0 12px;
  letter-spacing: -0.8px;
  color:#fff; /* resim/video uzerindeki yazi rengi sabit */
}
.hero__lead{
  max-width: 760px;
  font-size: clamp(16px, 1.4vw, 19px);
  color: rgba(243,244,246,.85);
  line-height: 1.7;
}

.hero__cta{ display:flex; gap:12px; flex-wrap:wrap; margin-top: 18px; }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color:#fff;
  font-weight:700;
  cursor:pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover{ transform: translateY(-1px); box-shadow: var(--shadow); }
.btn--primary{
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-color: rgba(255,0,51,.45);
}
.btn--ghost{
  background: rgba(0,0,0,.35);
}

.hero__scroll{
  margin-top: 34px;
  display:flex; align-items:center; gap:10px;
  color: rgba(255,255,255,.70);
  font-weight:600;
  letter-spacing:.6px;
  text-transform: uppercase;
  font-size: 12px;
}
.hero__scroll i{
  width: 18px; height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.35);
  position:relative;
}
.hero__scroll i::after{
  content:"";
  position:absolute; left:50%; top:6px;
  transform: translateX(-50%);
  width:4px; height:4px; border-radius: 999px;
  background: var(--accent);
  animation: scrollDot 1.4s infinite;
}
@keyframes scrollDot{
  0%{ transform: translate(-50%, 0); opacity:1; }
  70%{ transform: translate(-50%, 12px); opacity:.3; }
  100%{ transform: translate(-50%, 0); opacity:1; }
}

/* SECTIONS */
.section{ padding: 86px 0; }
.section--dark{
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.00));
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.section__head{ margin-bottom: 26px; }
.section__title{
  font-size: clamp(28px, 3vw, 44px);
  margin:0 0 8px;
  letter-spacing:-.4px;
}
.section__subtitle{ margin:0; color: var(--muted); line-height: 1.7; max-width: 820px; }

.split{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 26px;
  align-items: start;
}
@media (max-width: 980px){
  .split{ grid-template-columns: 1fr; }
}

.text-strong{ font-size: 16.5px; line-height:1.8; color: rgba(243,244,246,.90); }
.text-muted{ color: var(--muted); line-height:1.8; }

.card{
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow);
  padding: 22px;
}
.card--glass{ background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03)); }
.card__title{ margin: 0 0 8px; }
.card__text{ margin: 0 0 12px; color: var(--muted); }

.card__actions{ display:flex; gap:10px; flex-wrap:wrap; margin-top: 10px; }
.chip{
  display:inline-flex; align-items:center; gap:10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.25);
  color: rgba(243,244,246,.92);
  font-weight:600;
  transition: transform .18s ease, background .18s ease;
}
.chip:hover{ transform: translateY(-1px); background: rgba(255,255,255,.06); }
.chip--icon img{ width:18px; height:auto; }

.divider{ height:1px; background: rgba(255,255,255,.10); margin: 16px 0; }
.ticks{ list-style:none; padding:0; margin:0; display:grid; gap:10px; }
.ticks li{
  position:relative; padding-left: 22px; color: rgba(243,244,246,.88); line-height:1.6;
}
.ticks li::before{
  content:"";
  position:absolute; left:0; top:.55em;
  width:10px; height:10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(255,0,51,.15);
}

.mini-stats{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:12px;
}
@media (max-width: 560px){
  .mini-stats{ grid-template-columns: 1fr; }
}
.mini-stat{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  border-radius: 16px;
  padding: 14px;
}
.mini-stat__num{
  font-size: 22px;
  font-weight: 900;
  letter-spacing: .2px;
}
.mini-stat__lbl{ color: var(--muted); margin-top: 4px; }

/* SLIDER */
.slider{
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  overflow:hidden;
  box-shadow: var(--shadow);
}
.slider__track{
  display:flex;
  transition: transform .55s cubic-bezier(.2,.8,.2,1);
  will-change: transform;
}
.slide{
  min-width: 100%;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 0;
}
.slide__content{ padding: 26px; }
.slide__content h3{ margin: 0 0 10px; font-size: 26px; }
.slide__content p{ margin:0 0 10px; color: rgba(243,244,246,.85); line-height:1.75; }
.slide__media{ height: 100%; min-height: 340px; }
.slide__media img{
  width:100%; height:100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(1.05);
}
@media (max-width: 980px){
  .slide{ grid-template-columns: 1fr; }
  .slide__media{ min-height: 260px; }
}

.slider__controls{
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 16px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.25);
}
.icon-btn{
  width:46px; height:46px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color:#fff;
  font-size: 26px;
  cursor:pointer;
  transition: transform .18s ease, background .18s ease;
}
.icon-btn:hover{ transform: translateY(-1px); background: rgba(255,255,255,.07); }

.dots{ display:flex; gap:8px; }
.dot-btn{
  width:12px; height:12px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.25);
  background: transparent;
  cursor:pointer;
}
.dot-btn.is-active{
  background: var(--accent);
  border-color: rgba(255,0,51,.6);
  box-shadow: 0 0 0 6px rgba(255,0,51,.12);
}

/* SERVICES */
.services{
  display:grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 22px;
  align-items:start;
}
@media (max-width: 980px){
  .services{ grid-template-columns: 1fr; }
}

.services__grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
}
@media (max-width: 560px){
  .services__grid{ grid-template-columns: 1fr; }
}

.service-card{
  display:block;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  padding: 18px;
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
  position:relative;
  overflow:hidden;
}
.service-card::before{
  content:"";
  position:absolute; inset:-40%;
  background: radial-gradient(circle at 30% 30%, rgba(255,0,51,.25), transparent 45%);
  opacity:.0;
  transition: opacity .18s ease;
}
.service-card:hover{
  transform: translateY(-3px);
  border-color: rgba(255,0,51,.35);
  background: rgba(255,255,255,.06);
}
.service-card:hover::before{ opacity:1; }
.service-card img{ width:52px; height:auto; margin-bottom: 10px; opacity:.95; }
.service-card h3{ margin:0 0 8px; font-size: 16.5px; }
.service-card p{ margin:0; color: var(--muted); line-height: 1.6; }

.iso-box{
  margin-top: 14px;
  border-radius: 20px;
  border: 1px dashed rgba(255,0,51,.35);
  background: rgba(255,0,51,.06);
  padding: 16px;
}
.iso-box__title{ font-weight:900; margin-bottom: 10px; }
.iso-box__row{ display:flex; gap:10px; flex-wrap:wrap; }

.three-points{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
  margin-top: 20px;
}
@media (max-width: 840px){ .three-points{ grid-template-columns: 1fr; } }
.point{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  padding: 14px 16px;
  color: rgba(243,244,246,.88);
}

/* PARALLAX */
.parallax{
  position:relative;
  min-height: 80vh;
  display:grid;
  place-items:center;
  overflow:hidden;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.parallax__bg{
  position:absolute; inset:0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  filter: contrast(1.05) saturate(1.05);
}
.parallax__overlay{
  position:absolute; inset:0;
  background: radial-gradient(900px 500px at 30% 40%, rgba(0,0,0,.25), rgba(0,0,0,.78));
}
.parallax__content{ position:relative; text-align:left; }
.parallax__content h2{
  margin:0 0 10px;
  font-size: clamp(28px, 3vw, 44px);
  color:#fff; /* resim uzerindeki yazi rengi sabit */
}
.parallax__content p{ margin:0; color: rgba(243,244,246,.78); line-height:1.7; max-width: 720px; }

/* GALLERY */
.gallery{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 14px;
}
@media (max-width: 1100px){
  .gallery{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 560px){
  .gallery{ grid-template-columns: 1fr; }
}
.gallery-card{
  position:relative;
  border-radius: 22px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  min-height: 240px;
  box-shadow: 0 16px 50px rgba(0,0,0,.45);
  transform: translateZ(0);
}
.gallery-card__bg{
  position:absolute; inset:0;
  background-size: cover;
  background-position: center;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), filter .35s ease;
}
.gallery-card__overlay{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.80));
}
.gallery-card__content{
  position:absolute; inset:0;
  display:flex; flex-direction:column; justify-content:flex-end;
  padding: 18px;
}
.gallery-card__tag{
  font-weight: 900;
  letter-spacing: .2px;
  font-size: 16px;
  color:#fff; /* resim uzerindeki yazi rengi sabit */
}
.gallery-card__hint{
  color: rgba(243,244,246,.78);
  margin-top: 6px;
}
.gallery-card:hover .gallery-card__bg{
  transform: scale(1.08);
  filter: blur(1px) saturate(1.1);
}
.gallery-card--cta .gallery-card__tag{ color:#fff; }

/* CONTACT */
.contact{ margin-top: 18px; }
.contact__cards{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
}
@media (max-width: 980px){ .contact__cards{ grid-template-columns: 1fr; } }
.contact-card{
  display:flex; gap:12px; align-items:center;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  padding: 14px 16px;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.contact-card:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.06);
  border-color: rgba(255,0,51,.25);
}
.contact-card img{ width:46px; height:auto; opacity:.95; }
.contact-card__label{ color: var(--muted); font-weight:700; font-size: 12px; letter-spacing:.6px; text-transform: uppercase; }
.contact-card__value{ font-weight:700; }

.contact__grid{
  margin-top: 14px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 980px){ .contact__grid{ grid-template-columns: 1fr; } }

.map-box, .form-box{
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  overflow:hidden;
  box-shadow: var(--shadow);
}
.map-box iframe{
  width: 100%;
  height: 100%;
  min-height: 420px; /* minimum boy kalsin */
  border: 0;
  display: block;
}
.form-box{ padding: 18px; }

.form{ display:grid; gap: 12px; }
.form__row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (max-width: 560px){ .form__row{ grid-template-columns: 1fr; } }
.form input, .form textarea{
  width:100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.30);
  color: #fff;
  padding: 12px 12px;
  outline:none;
  transition: border-color .18s ease, background .18s ease;
}
.form textarea{ min-height: 140px; resize: vertical; }
.form input:focus, .form textarea:focus{
  border-color: rgba(255,0,51,.45);
  background: rgba(0,0,0,.38);
}

.check{
  display:flex; gap:10px; align-items:flex-start;
  color: rgba(243,244,246,.80);
  line-height: 1.6;
  font-size: 13px;
}
.check input{ margin-top: 4px; }
.check a{ color: #fff; text-decoration: underline; text-decoration-color: rgba(255,255,255,.3); }

.form__note{ margin:0; color: rgba(243,244,246,.55); font-size: 12px; line-height: 1.6; }

/* FOOTER */
.footer{
  padding: 42px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.35);
}
.footer__inner{
  display:grid;
  grid-template-columns: 1.2fr 1fr .6fr;
  gap: 16px;
  align-items:start;
}
@media (max-width: 980px){
  .footer__inner{ grid-template-columns: 1fr; }
}
.footer__logo{ width: 190px; opacity:.95; }
.footer__copy{ color: rgba(243,244,246,.70); margin-top: 10px; line-height:1.6; }
.footer__col a{
  display:block;
  padding: 8px 0;
  color: rgba(243,244,246,.82);
}
.footer__col a:hover{ color:#fff; }
.footer__top{ display:flex; justify-content:flex-end; }

/* REVEAL ANIMATIONS */
.reveal{
  opacity: 1;
  transform: none;
}

.js .reveal{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s ease, transform .6s ease;
  will-change: opacity, transform;
}
.js .reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE NAV */
@media (max-width: 920px){
  .nav__toggle{ display:block; }
  .nav__links{
    position: fixed;
    top: 72px;
    right: 18px;
    left: 18px;
    display:none;
    flex-direction: column;
    gap: 8px;
    padding: 14px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(7,7,11,.86);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow);
  }
  .nav__links.is-open{ display:flex; }
  .nav__links a{ padding: 12px 12px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  .reveal{ transition:none; }
  .hero__scroll i::after{ animation:none; }
}


/* ==============================
   DARK MAP STYLE (iframe + overlay)
============================== */
.map-box{
  position: relative;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  overflow:hidden;
  box-shadow: var(--shadow);
    height: 100%;
  display: flex;
}

/* iframe'i hafif karartıp temaya uyduruyoruz */
.map-box iframe{
  width: 100%;
  height: 100%;
  min-height: 420px; /* minimum boy kalsin */
  border: 0;
  display: block;

  /* Dark mood */
  filter: grayscale(.25) saturate(.9) contrast(1.05) brightness(.78);
  transform: scale(1.02);
}

/* Üstteki dark overlay (gradient + vignette) */
.map-box::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(900px 500px at 35% 35%, rgba(0,0,0,.15), rgba(0,0,0,.65)),
    linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.55));
  opacity: .55;
  transition: opacity .25s ease;
}

/* Kırmızı accent glow çerçeve */
.map-box::after{
  content:"";
  position:absolute;
  inset:-2px;
  pointer-events:none;
  border-radius: 24px;
  background: radial-gradient(circle at 30% 20%, rgba(255,0,51,.28), transparent 45%);
  opacity:.40;
  filter: blur(10px);
}


/* Harita üstüne küçük bilgi etiketi */
.map-tag{
  position:absolute;
  left:14px;
  bottom:14px;
  z-index:2;
  display:inline-flex;
  align-items:center;
  gap:10px;

  padding:10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(10px);

  font-weight: 800;
  letter-spacing:.2px;
  color: rgba(243,244,246,.92);
}
.map-tag .dot{
  width:10px;
  height:10px;
  border-radius:999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(255,0,51,.18);
}


/* ==========================
   FOOTER BAR (screenshot layout)
   ========================== */

.footer__bar{
  padding: 42px 0;
}

.footer__row{
  display: grid;
  grid-template-columns: 1fr 1fr auto 1fr 1fr; /* sol - sol orta - merkez - sağ orta - sağ */
  align-items: center;
  gap: 14px;
}

.footer__link{
  display: block;
  padding: 10px 0;
  color: rgba(243,244,246,.82);
  text-align: center;
  white-space: nowrap;
}

.footer__link:first-child{ text-align: left; }
.footer__link:last-child{ text-align: right; }

.footer__brand{
  text-align: center;
  padding: 6px 10px;
}

.footer__brandTitle{
  font-weight: 900;
  letter-spacing: .2px;
  font-size: clamp(18px, 2.2vw, 30px);
  line-height: 1.1;
}

.footer__brandSub{
  margin-top: 2px;
  color: rgba(243,244,246,.70);
  font-weight: 600;
  letter-spacing: .2px;
  font-size: 14px;
}

.footer__bottom{
  margin-top: 26px;
  text-align: center;
  color: rgba(243,244,246,.70);
  line-height: 1.6;
}

/* Responsive: mobilde alt alta (merkez yine ortada) */
@media (max-width: 980px){
  .footer__row{
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .footer__link,
  .footer__link:first-child,
  .footer__link:last-child{
    text-align: center;
  }
  .footer__brand{
    order: -1; /* marka en üstte */
    margin-bottom: 4px;
  }
}


/* ==========================
   IMPRESSUM PAGE
   ========================== */
.impr{
  max-width: 900px;
}

.impr__h{
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: .2px;
}

.impr__p{
  margin: 0 0 12px;
  color: rgba(243,244,246,.85);
  line-height: 1.85;
}

.impr__a{
  color: rgba(243,244,246,.95);
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,.25);
}

.impr__list{
  margin-top: 10px;
}


/* ==========================
   LEGAL PAGES (Datenschutz / Impressum)
   ========================== */
.legal{
  max-width: 980px;
}

.legal__h{
  margin: 0 0 14px;
  font-size: 22px;
  letter-spacing: .2px;
}

.legal__h4{
  margin: 16px 0 10px;
  font-size: 16px;
  letter-spacing: .2px;
}

.legal__h5{
  margin: 14px 0 10px;
  font-size: 15px;
  letter-spacing: .2px;
}

.legal__p{
  margin: 0 0 12px;
  color: rgba(243,244,246,.85);
  line-height: 1.85;
}

.legal__a{
  color: rgba(243,244,246,.95);
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,.25);
}

.legal__list{
  margin-top: 10px;
}

.legal__box{
  margin: 10px 0 14px;
  padding: 14px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
}


/* ==========================
   404 PAGE
   ========================== */
.error404{
  text-align: center;
  padding: clamp(28px, 5vw, 44px);
  max-width: 900px;
  margin: 0 auto;
}

.error404__num{
  font-size: clamp(64px, 9vw, 120px);
  font-weight: 900;
  letter-spacing: 2px;
  line-height: 1;
  opacity: .95;
}

.error404__title{
  margin: 10px 0 8px;
  font-size: clamp(22px, 3.2vw, 34px);
}

.error404__text{
  margin: 0 auto 18px;
  max-width: 560px;
  color: rgba(243,244,246,.85);
  line-height: 1.8;
}

.error404__actions{
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 10px;
}

.error404__hint{
  margin-top: 14px;
  font-size: 14px;
  color: rgba(243,244,246,.65);
}


/* ==========================
   LEGAL PAGES - LIGHT FIX
   (Datenschutz + Impressum)
   ========================== */

:root[data-theme="light"] .legal__h,
:root[data-theme="light"] .legal__h4,
:root[data-theme="light"] .legal__h5,
:root[data-theme="light"] .impr__h{
  color: #121417 !important;
}

:root[data-theme="light"] .legal__p,
:root[data-theme="light"] .impr__p,
:root[data-theme="light"] .ticks li{
  color: rgba(18,20,23,.82) !important;
}

:root[data-theme="light"] .legal__a,
:root[data-theme="light"] .impr__a{
  color: rgba(18,20,23,.92) !important;
  text-decoration-color: rgba(18,20,23,.25) !important;
}

:root[data-theme="light"] .divider{
  background: rgba(18,20,23,.12) !important;
}

:root[data-theme="light"] .legal__box{
  background: rgba(255,255,255,.70) !important;
  border-color: rgba(18,20,23,.12) !important;
}


/* Light mode – Datenschutz checkbox metni düzeltme */
:root[data-theme="light"] .check,
:root[data-theme="light"] .check span{
  color: #121417 !important;
}

:root[data-theme="light"] .check a{
  color: #121417 !important;
  text-decoration-color: rgba(18,20,23,.35) !important;
}


/* ==========================
   GALLERY CLICK / HOVER SCALE
   ========================== */

.gallery-card{
  cursor: pointer;
}

.gallery-card__bg{
  transition: transform .45s cubic-bezier(.2,.8,.2,1),
              filter .45s ease;
}

/* Hover + Click (desktop) */
.gallery-card:hover .gallery-card__bg,
.gallery-card:active .gallery-card__bg{
  transform: scale(1.12);
  filter: saturate(1.1) contrast(1.05);
}
