/* =========================================================
   BEYZA KOLTUK YIKAMA — Kurumsal Web Sitesi
   Tasarım Sistemi / style.css
   Marka: "Temizlikte Ferahlık, Güvende Konfor."
   ========================================================= */

/* ---------- Fontlar ---------- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Dancing+Script:wght@600;700&display=swap');

/* ---------- Tasarım Değişkenleri ---------- */
:root {
  /* Marka paleti (kurumsal kimlik kılavuzu) */
  --c-50:  #E6F6FF;
  --c-100: #BEE6FF;
  --c-200: #7CCCF7;
  --c-400: #36A9E1;
  --c-600: #0D6FB8;
  --c-700: #0a5793;

  /* Metin ve yüzeyler */
  --ink:        #0c2b41;
  --ink-soft:   #3f5e72;
  --muted:      #6b8497;
  --white:      #ffffff;
  --surface:    #f4fbff;
  --line:       #dceefb;

  /* Aksan */
  --wa:        #25D366;
  --wa-dark:   #1ebe5a;

  /* Gradyanlar */
  --grad-brand: linear-gradient(135deg, var(--c-400) 0%, var(--c-600) 100%);
  --grad-soft:  linear-gradient(160deg, #ffffff 0%, var(--c-50) 100%);

  /* Soft UI gölgeleri */
  --sh-sm: 0 2px 8px rgba(13, 111, 184, 0.06);
  --sh-md: 0 10px 30px rgba(13, 111, 184, 0.10);
  --sh-lg: 0 24px 60px rgba(13, 111, 184, 0.16);
  --sh-brand: 0 12px 28px rgba(54, 169, 225, 0.32);

  /* Ölçü */
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --container: 1180px;
  --nav-h: 78px;

  /* Hareket */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t: 260ms;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--nav-h) + 12px); overflow-x: hidden; }

body {
  font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-weight: 400;
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.01em;
}

/* ---------- Düzen Yardımcıları ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; }

.section { padding: clamp(64px, 9vw, 112px) 0; }
.section--tint { background: var(--surface); }
.section--brand-soft { background: var(--grad-soft); }

.center { text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--c-600);
  background: var(--c-50);
  border: 1px solid var(--line);
  padding: 7px 16px; border-radius: 100px;
  margin-bottom: 18px;
  max-width: 100%;
}
.eyebrow svg { width: 16px; height: 16px; flex: 0 0 auto; }

.section-head { max-width: 680px; margin: 0 auto clamp(40px, 5vw, 60px); }
.section-head.center { text-align: center; }
.section-title { font-size: clamp(1.7rem, 3.4vw, 2.6rem); margin-bottom: 14px; }
.section-title .accent { color: var(--c-600); }
.section-sub { font-size: 1.05rem; color: var(--muted); }

.script {
  font-family: 'Dancing Script', cursive;
  font-weight: 700;
  color: var(--c-400);
}

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 600; font-size: 1rem; line-height: 1;
  padding: 15px 26px; border-radius: 100px;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), background var(--t) var(--ease), color var(--t) var(--ease);
  cursor: pointer; white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; }
.btn--primary { background: var(--grad-brand); color: #fff; box-shadow: var(--sh-brand); }
.btn--primary:hover { box-shadow: 0 16px 34px rgba(54, 169, 225, 0.42); transform: translateY(-2px); }
.btn--wa { background: var(--wa); color: #fff; box-shadow: 0 12px 26px rgba(37, 211, 102, 0.32); }
.btn--wa:hover { background: var(--wa-dark); transform: translateY(-2px); }
.btn--ghost { background: #fff; color: var(--c-600); border: 1.5px solid var(--line); box-shadow: var(--sh-sm); }
.btn--ghost:hover { border-color: var(--c-200); color: var(--c-700); transform: translateY(-2px); }
.btn--light { background: rgba(255,255,255,0.16); color: #fff; border: 1.5px solid rgba(255,255,255,0.45); backdrop-filter: blur(4px); }
.btn--light:hover { background: rgba(255,255,255,0.26); transform: translateY(-2px); }
.btn--lg { padding: 17px 32px; font-size: 1.05rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* =========================================================
   NAVBAR
   ========================================================= */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--t) var(--ease), border-color var(--t) var(--ease), background var(--t) var(--ease);
}
.nav.scrolled { box-shadow: var(--sh-sm); border-bottom-color: var(--line); background: rgba(255,255,255,0.92); }
.nav__inner { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.nav__logo { display: flex; align-items: center; gap: 11px; }
.nav__logo img { height: 44px; width: 44px; object-fit: contain; }
.nav__logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav__logo-text b { font-size: 1.18rem; font-weight: 700; color: var(--c-600); letter-spacing: -0.02em; }
.nav__logo-text span { font-size: 0.62rem; letter-spacing: 0.22em; color: var(--c-400); text-transform: uppercase; font-weight: 600; margin-top: 2px; }

.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a {
  position: relative; font-weight: 500; font-size: 0.98rem; color: var(--ink-soft);
  padding: 9px 15px; border-radius: 100px; transition: color var(--t), background var(--t);
}
.nav__links a:hover { color: var(--c-600); background: var(--c-50); }
.nav__links a.active { color: var(--c-600); }
.nav__links a.active::after {
  content: ''; position: absolute; left: 15px; right: 15px; bottom: 2px; height: 2px;
  background: var(--grad-brand); border-radius: 2px;
}
.nav__cta { display: flex; align-items: center; gap: 12px; }
.nav__phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--c-600); font-size: 0.96rem; }
.nav__phone svg { width: 18px; height: 18px; }

.nav__burger { display: none; width: 46px; height: 46px; border-radius: 12px; background: var(--c-50); color: var(--c-600); align-items: center; justify-content: center; }
.nav__burger svg { width: 24px; height: 24px; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative; padding-top: calc(var(--nav-h) + clamp(40px, 7vw, 86px));
  padding-bottom: clamp(60px, 8vw, 100px);
  background: radial-gradient(120% 120% at 85% 0%, var(--c-50) 0%, #fff 55%);
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -180px; right: -160px; width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(124,204,247,0.32), transparent 65%); z-index: 0;
}
.hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(36px, 5vw, 70px); align-items: center; }
.hero__title { font-size: clamp(2.1rem, 5.4vw, 3.55rem); line-height: 1.08; margin-bottom: 18px; }
.hero__title .script { display: block; font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 2px; }
.hero__lead { font-size: 1.12rem; color: var(--ink-soft); max-width: 520px; margin-bottom: 28px; }
.hero__lead strong { color: var(--c-600); font-weight: 600; }

.hero__chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.hero__chips span {
  display: inline-flex; align-items: center; gap: 7px; font-size: 0.9rem; font-weight: 500; color: var(--ink-soft);
  background: #fff; border: 1px solid var(--line); padding: 8px 15px; border-radius: 100px; box-shadow: var(--sh-sm);
}
.hero__chips svg { width: 16px; height: 16px; color: var(--c-400); }

/* Hero görsel kompozisyonu */
.hero__media { position: relative; }
.hero__media-main {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--sh-lg); aspect-ratio: 4/4.4;
}
.hero__media-main img { width: 100%; height: 100%; object-fit: cover; }
.hero__badge {
  position: absolute; left: -22px; bottom: 34px; z-index: 2;
  background: #fff; border-radius: var(--radius); padding: 16px 20px; box-shadow: var(--sh-md);
  display: flex; align-items: center; gap: 14px; max-width: 250px;
}
.hero__badge .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--c-50); color: var(--c-600); display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.hero__badge .ic svg { width: 26px; height: 26px; }
.hero__badge b { display: block; color: var(--ink); font-size: 1.02rem; }
.hero__badge small { color: var(--muted); font-size: 0.82rem; }
.hero__badge--top { top: 28px; right: -18px; left: auto; bottom: auto; }

/* =========================================================
   TRUST / STAT BAR
   ========================================================= */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat { text-align: center; padding: 26px 16px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--sh-sm); }
.stat b { display: block; font-size: clamp(1.8rem, 3.4vw, 2.5rem); font-weight: 700; color: var(--c-600); line-height: 1; }
.stat span { font-size: 0.92rem; color: var(--muted); margin-top: 8px; display: block; }

/* =========================================================
   HİZMET KARTLARI
   ========================================================= */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--sh-sm);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: var(--c-100); }
.card__media { position: relative; aspect-ratio: 16/11; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease); }
.card:hover .card__media img { transform: scale(1.06); }
.card__icon {
  position: absolute; left: 18px; top: -26px; width: 52px; height: 52px; border-radius: 14px;
  background: #fff; color: var(--c-600); display: flex; align-items: center; justify-content: center;
  box-shadow: var(--sh-md); border: 1px solid var(--line); z-index: 2;
}
.card__icon svg { width: 28px; height: 28px; }
.card__body { position: relative; padding: 34px 24px 26px; }
.card__body h3 { font-size: 1.22rem; margin-bottom: 9px; }
.card__body p { font-size: 0.97rem; color: var(--muted); margin-bottom: 16px; }
.card__link { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; color: var(--c-600); font-size: 0.95rem; }
.card__link svg { width: 17px; height: 17px; transition: transform var(--t); }
.card:hover .card__link svg { transform: translateX(4px); }

/* =========================================================
   ÖZELLİK / NEDEN BİZ
   ========================================================= */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--sh-sm); transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease); }
.feature:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.feature__ic { width: 56px; height: 56px; border-radius: 16px; background: var(--grad-brand); color: #fff; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; box-shadow: var(--sh-brand); }
.feature__ic svg { width: 30px; height: 30px; }
.feature h3 { font-size: 1.14rem; margin-bottom: 8px; }
.feature p { font-size: 0.96rem; color: var(--muted); }

/* =========================================================
   SÜREÇ ADIMLARI
   ========================================================= */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding: 30px 22px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--sh-sm); }
.step__n { width: 48px; height: 48px; border-radius: 50%; background: var(--c-50); color: var(--c-600); font-weight: 700; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; border: 2px solid var(--c-100); }
.step h3 { font-size: 1.08rem; margin-bottom: 7px; }
.step p { font-size: 0.93rem; color: var(--muted); }
.step:not(:last-child)::after {
  content: ''; position: absolute; top: 52px; right: -16px; width: 32px; height: 2px;
  background: repeating-linear-gradient(90deg, var(--c-200) 0 6px, transparent 6px 12px); z-index: 1;
}

/* =========================================================
   MAKİNE / TEKNOLOJİ VURGUSU
   ========================================================= */
.tech { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(36px, 5vw, 64px); align-items: center; }
.tech__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--sh-lg); position: relative; aspect-ratio: 5/4; }
.tech__media img { width: 100%; height: 100%; object-fit: cover; }
.tech__specs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 26px; }
.spec { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 18px 18px; box-shadow: var(--sh-sm); display: flex; gap: 13px; align-items: flex-start; }
.spec .ic { width: 40px; height: 40px; border-radius: 11px; background: var(--c-50); color: var(--c-600); display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.spec .ic svg { width: 22px; height: 22px; }
.spec b { display: block; color: var(--ink); font-size: 1.06rem; line-height: 1.2; }
.spec small { color: var(--muted); font-size: 0.83rem; }

/* =========================================================
   YORUMLAR
   ========================================================= */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; box-shadow: var(--sh-sm); display: flex; flex-direction: column; }
.review__stars { display: flex; gap: 3px; color: #f5a623; margin-bottom: 14px; }
.review__stars svg { width: 19px; height: 19px; }
.review p { color: var(--ink-soft); font-size: 0.99rem; margin-bottom: 20px; flex: 1; }
.review__who { display: flex; align-items: center; gap: 13px; }
.review__av { width: 46px; height: 46px; border-radius: 50%; background: var(--grad-brand); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 1.05rem; }
.review__who b { color: var(--ink); font-size: 0.98rem; display: block; }
.review__who small { color: var(--muted); font-size: 0.84rem; }

/* =========================================================
   CTA BANT
   ========================================================= */
.cta-band { position: relative; overflow: hidden; background: var(--grad-brand); border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 64px); color: #fff; text-align: center; box-shadow: var(--sh-lg); }
.cta-band::before { content: ''; position: absolute; top: -120px; left: -80px; width: 360px; height: 360px; background: radial-gradient(circle, rgba(255,255,255,0.2), transparent 65%); }
.cta-band::after { content: ''; position: absolute; bottom: -140px; right: -90px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(255,255,255,0.16), transparent 65%); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 3.6vw, 2.4rem); margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,0.92); font-size: 1.08rem; max-width: 560px; margin: 0 auto 26px; }
.cta-band .btn-row { justify-content: center; }

/* =========================================================
   INSTAGRAM ŞERİDİ
   ========================================================= */
.insta__head { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 30px; }
.insta__id { display: flex; align-items: center; gap: 16px; }
.insta__badge { width: 60px; height: 60px; border-radius: 18px; flex: 0 0 auto; display: flex; align-items: center; justify-content: center; color: #fff; background: linear-gradient(45deg, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888); box-shadow: 0 10px 24px rgba(220,39,67,0.28); }
.insta__badge svg { width: 32px; height: 32px; }
.insta__id b { display: block; font-size: 1.15rem; color: var(--ink); }
.insta__id span { color: var(--muted); font-size: 0.95rem; }
.insta__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.insta__item { position: relative; display: block; aspect-ratio: 1; border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--sh-sm); }
.insta__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms var(--ease); }
.insta__item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(160deg, transparent 55%, rgba(13,111,184,0.45)); opacity: 0; transition: opacity var(--t); }
.insta__item .ig-ic { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: #fff; opacity: 0; transform: scale(0.8); transition: opacity var(--t), transform var(--t); z-index: 2; }
.insta__item .ig-ic svg { width: 30px; height: 30px; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4)); }
.insta__item:hover img { transform: scale(1.08); }
.insta__item:hover::after, .insta__item:hover .ig-ic { opacity: 1; }
.insta__item:hover .ig-ic { transform: scale(1); }

/* =========================================================
   SSS / FAQ (akordeon)
   ========================================================= */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--sh-sm); overflow: hidden; transition: box-shadow var(--t) var(--ease), border-color var(--t); }
.faq__item[open] { box-shadow: var(--sh-md); border-color: var(--c-100); }
.faq__item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; font-weight: 600; color: var(--ink); font-size: 1.04rem; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary .q-ic { width: 30px; height: 30px; flex: 0 0 auto; border-radius: 50%; background: var(--c-50); color: var(--c-600); display: flex; align-items: center; justify-content: center; transition: transform var(--t) var(--ease), background var(--t); }
.faq__item summary .q-ic svg { width: 18px; height: 18px; }
.faq__item[open] summary .q-ic { transform: rotate(45deg); background: var(--grad-brand); color: #fff; }
.faq__item .faq__a { padding: 0 24px 22px; color: var(--muted); font-size: 0.98rem; }

/* =========================================================
   REELS — dikey video carousel (performans odaklı)
   ========================================================= */
.reels { position: relative; }
.reels__track {
  display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 6px clamp(22px, 8vw, 120px) 18px; scroll-padding-left: clamp(22px, 8vw, 120px);
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.reels__track::-webkit-scrollbar { display: none; }
.reel {
  position: relative; flex: 0 0 auto; width: clamp(212px, 60vw, 264px); aspect-ratio: 9/16;
  border-radius: var(--radius); overflow: hidden; background: #0a2740; scroll-snap-align: start;
  box-shadow: var(--sh-md); cursor: pointer; display: block;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.reel:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.reel__video, .reel__poster { width: 100%; height: 100%; object-fit: cover; display: block; }
.reel__play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 58px; height: 58px; border-radius: 50%; background: rgba(255,255,255,0.92); color: var(--c-600);
  display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 22px rgba(0,0,0,0.3);
  transition: opacity var(--t), transform var(--t); z-index: 3;
}
.reel__play svg { width: 26px; height: 26px; margin-left: 3px; }
.reel.is-playing .reel__play:not(.reel__play--static) { opacity: 0; pointer-events: none; }
.reel__ig { position: absolute; top: 12px; right: 12px; z-index: 3; color: #fff; filter: drop-shadow(0 2px 5px rgba(0,0,0,0.5)); }
.reel__ig svg { width: 26px; height: 26px; }
.reel__title {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; color: #fff; font-size: 0.9rem; font-weight: 500;
  padding: 30px 14px 14px; background: linear-gradient(transparent, rgba(4,20,33,0.82));
}
.reels__nav {
  position: absolute; top: calc(50% - 18px); transform: translateY(-50%); z-index: 5;
  width: 46px; height: 46px; border-radius: 50%; background: #fff; color: var(--c-600);
  display: flex; align-items: center; justify-content: center; box-shadow: var(--sh-md);
  border: 1px solid var(--line); transition: background var(--t), color var(--t), transform var(--t);
}
.reels__nav:hover { background: var(--c-600); color: #fff; }
.reels__nav svg { width: 22px; height: 22px; }
.reels__nav--prev { left: clamp(8px, 3vw, 44px); }
.reels__nav--next { right: clamp(8px, 3vw, 44px); }
@media (max-width: 760px) { .reels__nav { display: none; } }

/* =========================================================
   İLETİŞİM SAYFASI
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(32px, 4vw, 52px); align-items: start; }
.contact-list { display: grid; gap: 16px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px; box-shadow: var(--sh-sm); transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease); }
.contact-item:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.contact-item .ic { width: 50px; height: 50px; border-radius: 14px; background: var(--c-50); color: var(--c-600); display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.contact-item .ic svg { width: 26px; height: 26px; }
.contact-item b { display: block; color: var(--ink); font-size: 1.04rem; margin-bottom: 2px; }
.contact-item a, .contact-item span { color: var(--muted); font-size: 0.97rem; }
.contact-item a:hover { color: var(--c-600); }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 40px); box-shadow: var(--sh-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 500; font-size: 0.92rem; color: var(--ink); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--ink);
  background: var(--surface); border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  padding: 13px 15px; transition: border-color var(--t), box-shadow var(--t), background var(--t);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--c-200); background: #fff; box-shadow: 0 0 0 4px rgba(124,204,247,0.22);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.86rem; color: var(--muted); margin-top: 6px; }
.form-msg { margin-top: 14px; padding: 13px 16px; border-radius: var(--radius-sm); font-size: 0.95rem; display: none; }
.form-msg.show { display: block; }
.form-msg.ok { background: #e7f9ef; color: #15803d; border: 1px solid #bbf0cf; }

.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--sh-md); border: 1px solid var(--line); line-height: 0; }
.map-embed iframe { width: 100%; height: 360px; border: 0; }

/* Çalışma saatleri */
.hours { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 8px 22px; box-shadow: var(--sh-sm); }
.hours li { display: flex; justify-content: space-between; padding: 13px 0; border-bottom: 1px dashed var(--line); font-size: 0.97rem; }
.hours li:last-child { border-bottom: none; }
.hours li span:first-child { color: var(--ink-soft); font-weight: 500; }
.hours li span:last-child { color: var(--c-600); font-weight: 600; }

/* =========================================================
   İÇ SAYFA BAŞLIK (page hero)
   ========================================================= */
.page-hero { position: relative; padding: calc(var(--nav-h) + 56px) 0 56px; background: radial-gradient(120% 130% at 80% 0%, var(--c-50), #fff 60%); overflow: hidden; }
.page-hero::before { content:''; position:absolute; top:-160px; right:-120px; width:440px; height:440px; background: radial-gradient(circle, rgba(124,204,247,0.28), transparent 65%); }
.page-hero__inner { position: relative; z-index: 1; max-width: 720px; }
.page-hero h1 { font-size: clamp(2rem, 4.6vw, 3rem); margin-bottom: 14px; }
.page-hero p { font-size: 1.1rem; color: var(--ink-soft); }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; color: var(--muted); margin-bottom: 16px; }
.breadcrumb a:hover { color: var(--c-600); }
.breadcrumb svg { width: 15px; height: 15px; }

/* =========================================================
   HİZMET DETAY (alternating)
   ========================================================= */
.svc { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 60px); align-items: center; }
.svc + .svc { margin-top: clamp(48px, 7vw, 84px); }
.svc__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--sh-md); aspect-ratio: 5/4; }
.svc__media img { width: 100%; height: 100%; object-fit: cover; }
.svc--rev .svc__media { order: 2; }
.svc__ic { width: 56px; height: 56px; border-radius: 16px; background: var(--grad-brand); color: #fff; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; box-shadow: var(--sh-brand); }
.svc__ic svg { width: 30px; height: 30px; }
.svc h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 12px; }
.svc p { color: var(--ink-soft); margin-bottom: 18px; }
.svc ul.ticks { display: grid; gap: 11px; margin-bottom: 22px; }
.svc ul.ticks li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.98rem; color: var(--ink-soft); }
.svc ul.ticks li svg { width: 22px; height: 22px; color: var(--c-400); flex: 0 0 auto; margin-top: 1px; }

/* =========================================================
   DEĞERLER (hakkımızda)
   ========================================================= */
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.value { text-align: center; padding: 30px 20px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--sh-sm); transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease); }
.value:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.value .ic { width: 58px; height: 58px; margin: 0 auto 16px; border-radius: 50%; background: var(--c-50); color: var(--c-600); display: flex; align-items: center; justify-content: center; }
.value .ic svg { width: 30px; height: 30px; }
.value h3 { font-size: 1.08rem; margin-bottom: 7px; }
.value p { font-size: 0.92rem; color: var(--muted); }

.about-lead { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(34px, 5vw, 60px); align-items: center; }
.about-lead__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--sh-lg); aspect-ratio: 4/3.4; position: relative; }
.about-lead__media img { width: 100%; height: 100%; object-fit: cover; }
.about-lead p { margin-bottom: 16px; color: var(--ink-soft); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: #07273d; color: #b7d2e4; padding: clamp(56px, 7vw, 80px) 0 28px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; }
.footer__brand img { height: 64px; width: auto; margin-bottom: 16px; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.25)); }
.footer__brand p { font-size: 0.95rem; color: #9fbed3; max-width: 290px; }
.footer__brand .script { color: var(--c-200); font-size: 1.25rem; margin-top: 10px; }
.footer h4 { color: #fff; font-size: 1.02rem; margin-bottom: 18px; }
.footer__links { display: grid; gap: 11px; }
.footer__links a { color: #a9c6da; font-size: 0.96rem; transition: color var(--t), padding var(--t); }
.footer__links a:hover { color: #fff; padding-left: 5px; }
.footer__contact li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.95rem; margin-bottom: 13px; color: #a9c6da; }
.footer__contact svg { width: 19px; height: 19px; color: var(--c-200); flex: 0 0 auto; margin-top: 2px; }
.footer__contact a:hover { color: #fff; }
.footer__social { display: flex; gap: 11px; margin-top: 18px; }
.footer__social a { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,0.08); color: #fff; display: flex; align-items: center; justify-content: center; transition: background var(--t), transform var(--t); }
.footer__social a:hover { background: var(--c-400); transform: translateY(-3px); }
.footer__social svg { width: 21px; height: 21px; }
.footer__bottom { margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: 0.88rem; color: #88a8bf; }
.footer__bottom a:hover { color: #fff; }

/* =========================================================
   WHATSAPP FLOAT
   ========================================================= */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--wa); color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.wa-float svg { width: 32px; height: 32px; }
.wa-float:hover { transform: scale(1.08); box-shadow: 0 16px 38px rgba(37, 211, 102, 0.55); }
.wa-float::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55); animation: wa-pulse 2.4s infinite;
}
@keyframes wa-pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); } 70% { box-shadow: 0 0 0 18px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

/* =========================================================
   MOBİL DENEYİMİ — sabit aksiyon çubuğu, menü CTA, dokunma
   ========================================================= */
/* Dokunma vurgusu (mavi, hafif) ve dokunma hareketi iyileştirmeleri */
a, button, summary, .btn, .card, .reel { -webkit-tap-highlight-color: rgba(13, 111, 184, 0.14); }

/* Mobil menü açıkken arka plan kaymasın */
body.menu-open { overflow: hidden; }

/* Mobil menü içi hızlı iletişim bloğu — masaüstünde gizli */
.nav__m-cta { display: none; }
.nav__m-phone {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 600; color: var(--c-600); font-size: 1.02rem;
  padding: 13px; border-radius: 12px; background: var(--c-50); border: 1px solid var(--line);
}
.nav__m-phone svg { width: 19px; height: 19px; }

/* Sabit mobil aksiyon çubuğu — yalnızca telefon boyutunda görünür */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 55;
  display: none; grid-template-columns: 1fr 1fr; gap: 10px;
  padding: 9px 12px calc(9px + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 26px rgba(13, 111, 184, 0.12);
}
.mobile-bar__btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 600; font-size: 1.02rem; line-height: 1; color: #fff;
  padding: 15px 10px; border-radius: 14px;
  transition: transform 140ms var(--ease), box-shadow 140ms var(--ease);
}
.mobile-bar__btn svg { width: 21px; height: 21px; }
.mobile-bar__btn--call { background: var(--grad-brand); box-shadow: var(--sh-brand); }
.mobile-bar__btn--wa   { background: var(--wa); box-shadow: 0 8px 20px rgba(37, 211, 102, 0.34); }
.mobile-bar__btn:active { transform: translateY(1px) scale(0.99); }

/* Yüzen WhatsApp: çentikli telefonların güvenli alanına saygı */
.wa-float { bottom: calc(22px + env(safe-area-inset-bottom, 0px)); }

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 90ms; }
.reveal[data-d="2"] { transition-delay: 180ms; }
.reveal[data-d="3"] { transition-delay: 270ms; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { max-width: 480px; margin-inline: auto; }
  .tech, .contact-grid, .svc, .svc--rev .svc__media, .about-lead { grid-template-columns: 1fr; }
  .svc--rev .svc__media { order: 0; }
  .cards, .features, .reviews { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .insta__grid { grid-template-columns: repeat(4, 1fr); }
  .step:not(:last-child)::after { display: none; }
  .values { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav__links, .nav__phone { display: none; }
  /* Mobilde üst "Teklif Al" butonunu gizle; CTA'lar menüde ve alt çubukta */
  .nav__cta .btn--primary { display: none; }
  .nav__burger { display: flex; }
  .nav.open .nav__links {
    display: flex; flex-direction: column; align-items: stretch; gap: 4px;
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: #fff; padding: 14px 18px calc(20px + env(safe-area-inset-bottom, 0px));
    box-shadow: var(--sh-md); border-bottom: 1px solid var(--line);
    max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
    animation: navDrop 240ms var(--ease);
  }
  .nav.open .nav__links a { padding: 13px 16px; border-radius: 12px; }
  .nav.open .nav__links a.active::after { display: none; }
  .nav.open .nav__links a.active { background: var(--c-50); }
  /* Menü içi hızlı iletişim */
  .nav.open .nav__m-cta {
    display: grid; gap: 10px; margin-top: 8px; padding-top: 14px;
    border-top: 1px solid var(--line);
  }
  .nav.open .nav__m-cta .btn { width: 100%; }

  /* Sabit alt aksiyon çubuğunu göster; yüzen butonu gizle (çakışmasın) */
  .mobile-bar { display: grid; }
  .wa-float { display: none; }
  /* Alt çubuğun içeriği kapatmaması için footer'a boşluk */
  .footer { padding-bottom: calc(30px + 66px + env(safe-area-inset-bottom, 0px)); }

  .stats { grid-template-columns: repeat(2, 1fr); }
  .tech__specs { grid-template-columns: 1fr; }
  .hero__badge { left: 0; }
}

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

@media (max-width: 520px) {
  body { font-size: 16px; }
  /* Küçük ekranda daha az dikey boşluk = daha az kaydırma */
  .section { padding: clamp(48px, 13vw, 68px) 0; }
  .hero { padding-top: calc(var(--nav-h) + 26px); padding-bottom: 46px; }
  .hero__media-main { aspect-ratio: 4 / 3.7; }
  .cards, .features, .reviews, .values, .steps { grid-template-columns: 1fr; }
  .insta__grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .btn-row { flex-direction: column; }
  .nav__cta .btn { width: auto; }
  .hero__badge--top { display: none; }
  /* Alt bilgi tek sütunda ortalanmasın, sola hizalı ve derli toplu */
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  /* CTA bandı daha kompakt */
  .cta-band { padding: 40px 24px; }
}

/* Çok küçük telefonlar (≤360px) — logo metni ve boşluk sıkışmasını önle */
@media (max-width: 360px) {
  .nav__logo img { height: 40px; width: 40px; }
  .nav__logo-text b { font-size: 1.06rem; }
  .container { padding-inline: 16px; }
  .mobile-bar__btn { font-size: 0.96rem; gap: 7px; padding: 14px 6px; }
}

/* Erişilebilirlik: hareket azaltma */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Odak görünürlüğü (klavye) */
:focus-visible { outline: 3px solid var(--c-200); outline-offset: 2px; border-radius: 6px; }
