/* ============================================================
   YURTPAK AMBALAJ — Ana CSS
   Renkler: #0b356a (lacivert) · #e95b0b (turuncu) · #fff (beyaz)
   Tasarım: Light / Kurumsal
   ============================================================ */

/* ── Değişkenler ─────────────────────────────────────────── */
:root {
  --primary:       #0b356a;
  --primary-dark:  #082a54;
  --primary-light: #1a4a8a;
  --accent:        #e95b0b;
  --accent-dark:   #c44a08;
  --accent-light:  #f07030;

  --bg:            #ffffff;
  --bg-soft:       #f8fafc;
  --bg-muted:      #f0f4f8;

  --text:          #1a2332;
  --text-muted:    #64748b;
  --text-light:    #94a3b8;

  --border:        #e2e8f0;
  --border-strong: #cbd5e1;

  --shadow-sm:  0 1px 4px rgba(11,53,106,.06);
  --shadow-md:  0 4px 16px rgba(11,53,106,.08);
  --shadow-lg:  0 8px 32px rgba(11,53,106,.12);

  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;

  --nav-h:      72px;
  --container:  1200px;

  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; }

/* ── Layout ──────────────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ── Butonlar ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 600; line-height: 1;
  transition: all .2s ease; white-space: nowrap;
}
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(233,91,11,.3); }
.btn--outline { background: transparent; color: var(--primary); border: 1.5px solid var(--primary); }
.btn--outline:hover { background: var(--primary); color: #fff; }
.btn--ghost-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.35); }
.btn--ghost-white:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); }
.btn--sm { padding: 9px 18px; font-size: 13px; }
.btn--lg { padding: 15px 32px; font-size: 15px; }

/* ── Başlık Sistemi ──────────────────────────────────────── */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--accent); margin-bottom: 10px;
}
.section-label::before { content: ''; display: block; width: 16px; height: 2px; background: var(--accent); flex-shrink: 0; }
.section-title { font-size: clamp(22px, 3vw, 32px); font-weight: 800; color: var(--primary); line-height: 1.2; margin-bottom: 12px; letter-spacing: -.5px; }
.section-sub { font-size: 15px; color: var(--text-muted); line-height: 1.7; max-width: 560px; }
.section-header { margin-bottom: 40px; }
.section-header--center { text-align: center; }
.section-header--center .section-sub { margin: 0 auto; }
.section-header--center .section-label { justify-content: center; }

/* ── HEADER ──────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: #fff; border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
  min-height: var(--nav-h);
}
.site-logo { display: flex; align-items: center; flex-shrink: 0; }
.site-logo img { height: 46px; width: auto; }

/* Nav linkleri */
.site-nav { display: flex; align-items: center; gap: 2px; }
.nav-link {
  padding: 8px 14px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 500; color: var(--text);
  transition: all .15s; position: relative;
}
.nav-link:hover { color: var(--primary); background: var(--bg-soft); }
.nav-link.is-active { color: var(--primary); font-weight: 600; }
.nav-link.is-active::after {
  content: ''; position: absolute; bottom: 0; left: 14px; right: 14px;
  height: 2px; background: var(--accent); border-radius: 2px;
}
.nav-link--special { color: var(--accent); font-weight: 600; }
.nav-link--special:hover { background: rgba(233,91,11,.06); color: var(--accent); }

/* Dil butonları */
.nav-lang { display: flex; gap: 3px; margin-left: 8px; }
.lang-btn {
  padding: 4px 9px; border-radius: 4px; font-size: 11px; font-weight: 700;
  border: 1.5px solid var(--border); color: var(--text-muted); transition: all .15s;
}
.lang-btn:hover { border-color: var(--primary); color: var(--primary); }
.lang-btn.is-active { background: var(--primary); color: #fff; border-color: var(--primary); }

.header-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.header-cta {
  background: var(--accent); color: #fff !important; padding: 9px 20px;
  border-radius: var(--radius-sm); font-size: 13.5px; font-weight: 600; transition: all .2s;
}
.header-cta:hover { background: var(--accent-dark); box-shadow: 0 4px 12px rgba(233,91,11,.3); }

/* Hamburger */
.menu-toggle { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s; }

/* Mobil overlay nav */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 300; background: #fff;
  flex-direction: column; padding: 0; overflow-y: auto;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 24px; border-bottom: 1px solid var(--border);
}
.mobile-nav-header img { height: 38px; width: auto; }
.mobile-nav-close { font-size: 26px; color: var(--text); line-height: 1; padding: 4px; }
.mobile-nav-links { flex: 1; padding: 12px 24px; }
.mobile-nav-link {
  display: block; padding: 14px 0; font-size: 18px; font-weight: 600; color: var(--text);
  border-bottom: 1px solid var(--border);
}
.mobile-nav-link.special { color: var(--accent); }
.mobile-nav-footer { padding: 24px; border-top: 1px solid var(--border); }
.mobile-lang-row { display: flex; gap: 8px; margin-bottom: 16px; }
.mobile-lang-btn {
  flex: 1; padding: 10px; text-align: center; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-weight: 700; font-size: 13px; color: var(--text-muted);
}
.mobile-lang-btn.is-active { background: var(--primary); color: #fff; border-color: var(--primary); }
.mobile-cta { display: block; text-align: center; background: var(--accent); color: #fff; padding: 14px; border-radius: var(--radius-sm); font-weight: 700; font-size: 15px; }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff; padding: 80px 0 72px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; right: -120px; top: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(233,91,11,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero-content { display: flex; flex-direction: column; }
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual-img {
  width: 110%;
  max-width: 600px;
  height: auto;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,.25));
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(233,91,11,.15); border: 1px solid rgba(233,91,11,.3);
  color: #ffa575; padding: 5px 14px; border-radius: 20px;
  font-size: 11px; font-weight: 700; letter-spacing: .8px;
  text-transform: uppercase; margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(28px, 4vw, 46px); font-weight: 800; line-height: 1.15;
  letter-spacing: -.5px; margin-bottom: 18px;
}
.hero h1 em { color: var(--accent); font-style: normal; }
.hero-slogan-line {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  opacity: .9;
}
.hero-desc { font-size: 16px; color: rgba(255,255,255,.75); line-height: 1.7; margin-bottom: 32px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 28px;
}
.hero-stat-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 10px;
  padding: 11px 14px;
  text-decoration: none;
  transition: background .2s, border-color .2s, transform .2s;
}
.hero-stat-card:hover {
  background: rgba(255,255,255,.15);
  border-color: rgba(233,91,11,.5);
  transform: translateY(-2px);
}
.hero-stat-icon {
  flex-shrink: 0;
  width: 38px; height: 38px;
  background: rgba(233,91,11,.18);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
}
.hero-stat-icon svg { width: 18px; height: 18px; stroke: var(--accent); }
.hero-stat-name { font-size: .88rem; font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 3px; }
.hero-stat-sub  { font-size: .75rem; color: rgba(255,255,255,.55); }

/* ── BÖLÜMLER ────────────────────────────────────────────── */
.section { padding: 72px 0; }
.section--soft { background: var(--bg-soft); }
.section--muted { background: var(--bg-muted); }

/* ── HİZMET KARTLARI ─────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px 24px; transition: all .25s; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.service-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px; background: rgba(11,53,106,.07);
  border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.service-icon svg { width: 26px; height: 26px; color: var(--primary); }
.service-card h3 { font-size: 15px; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.service-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.service-card-link { font-size: 12.5px; font-weight: 600; color: var(--accent); display: inline-flex; align-items: center; gap: 4px; transition: gap .15s; }
.service-card:hover .service-card-link { gap: 8px; }

/* ── YAPILABİLİRLİK ─────────────────────────────────────── */
.yapilabilirlik-section { background: var(--primary); padding: 72px 0; }
.yapilabilirlik-section .section-label { color: #ffa575; }
.yapilabilirlik-section .section-label::before { background: #ffa575; }
.yapilabilirlik-section .section-title { color: #fff; }
.yapilabilirlik-section .section-sub { color: rgba(255,255,255,.65); }
.yap-header { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 20px; margin-bottom: 32px; }
.yap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.yap-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md); padding: 22px 20px; cursor: pointer; transition: all .2s;
}
.yap-card:hover, .yap-card.is-active {
  background: rgba(233,91,11,.12); border-color: var(--accent);
  transform: translateY(-2px); box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.yap-card-icon { font-size: 26px; margin-bottom: 10px; }
.yap-card h4 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.yap-card p { font-size: 12.5px; color: rgba(255,255,255,.55); line-height: 1.6; }
.yap-card-more { margin-top: 12px; font-size: 11.5px; font-weight: 600; color: var(--accent); display: inline-flex; align-items: center; gap: 4px; }
.yap-detail-panel {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md); padding: 28px; margin-top: 20px;
  display: none; animation: fadeIn .3s ease;
}
.yap-detail-panel.is-active { display: block; }
.yap-detail-panel h5 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 16px; }
.yap-detail-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
.yap-detail-item {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm); padding: 14px;
}
.yap-detail-item strong { display: block; font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.yap-detail-item span { font-size: 11.5px; color: rgba(255,255,255,.5); line-height: 1.5; }

/* ── NEDEN BİZ ───────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-item {
  padding: 28px; border-radius: var(--radius-lg);
  background: #fff; border: 1px solid var(--border); transition: box-shadow .2s;
}
.why-item:hover { box-shadow: var(--shadow-md); }
.why-num { font-size: 48px; font-weight: 900; color: rgba(11,53,106,.07); line-height: 1; margin-bottom: 12px; }
.why-item h4 { font-size: 15px; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.why-item p { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; }

/* ── REFERANSLAR ─────────────────────────────────────────── */
.refs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 14px; }
.ref-item {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 14px; display: flex; align-items: center; justify-content: center;
  min-height: 70px; transition: all .2s;
}
.ref-item:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); transform: translateY(-1px); }
.ref-item img { max-height: 38px; width: auto; filter: grayscale(100%); opacity: .55; transition: all .2s; object-fit: contain; }
.ref-item:hover img { filter: none; opacity: 1; }

/* ── CTA BAND ────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  padding: 64px 0; text-align: center;
}
.cta-band h2 { font-size: clamp(22px, 3vw, 32px); font-weight: 800; color: #fff; margin-bottom: 12px; }
.cta-band p { font-size: 16px; color: rgba(255,255,255,.8); margin-bottom: 28px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn--white { background: #fff; color: var(--accent); font-weight: 700; }
.btn--white:hover { background: #f8f8f8; box-shadow: 0 4px 12px rgba(0,0,0,.1); }
.btn--ghost-orange { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.4); }
.btn--ghost-orange:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); }

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer { background: #0a2a52; color: #fff; padding: 56px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand-logo { display: flex; align-items: center; margin-bottom: 16px; }
.footer-brand-logo img { height: 36px; width: auto; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 8px; }
.social-btn {
  width: 34px; height: 34px; border-radius: 7px; background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.45); font-size: 14px; transition: all .2s;
}
.social-btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.footer-col h5 {
  font-size: 11px; font-weight: 700; color: #fff; text-transform: uppercase;
  letter-spacing: .8px; margin-bottom: 16px;
}
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,.45); margin-bottom: 9px; transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; }
.footer-contact-icon { width: 16px; flex-shrink: 0; margin-top: 1px; color: var(--accent); }
.footer-contact-icon svg { width: 15px; height: 15px; }
.footer-contact-text { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.5; }
.footer-bottom {
  padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.28); }
.footer-slogan { font-size: 11px; color: rgba(255,255,255,.22); font-style: italic; }

/* ── SAYFA HERO (iç sayfalar) ────────────────────────────── */
.page-hero { background: linear-gradient(135deg, var(--primary), var(--primary-light)); padding: 52px 0; color: #fff; }
.page-hero h1 { font-size: clamp(24px, 3vw, 36px); font-weight: 800; margin-bottom: 8px; }
.page-hero p { font-size: 15px; color: rgba(255,255,255,.7); }
.breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 14px; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb-sep { color: rgba(255,255,255,.3); }

/* ── İLETİŞİM ────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 40px; }
.contact-info-card { background: var(--primary); color: #fff; border-radius: var(--radius-lg); padding: 32px; }
.contact-info-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 24px; }
.contact-info-item { display: flex; gap: 12px; margin-bottom: 18px; }
.contact-info-icon {
  width: 38px; height: 38px; background: rgba(255,255,255,.1); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-info-icon svg { width: 17px; height: 17px; color: var(--accent); }
.contact-info-label { display: block; font-size: 11px; color: rgba(255,255,255,.45); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 2px; }
.contact-info-val { font-size: 14px; color: #fff; }
.contact-wa-btn {
  display: flex; align-items: center; gap: 10px; background: #25d366; color: #fff;
  padding: 12px 18px; border-radius: var(--radius-sm); font-weight: 600; font-size: 14px;
  margin-top: 24px; transition: background .2s;
}
.contact-wa-btn:hover { background: #1fba5a; }
.contact-form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; }
.contact-form-card h3 { font-size: 18px; font-weight: 700; color: var(--primary); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-label .required { color: var(--accent); }
.form-control {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-size: 14px; color: var(--text);
  background: var(--bg-soft); transition: border-color .15s;
}
.form-control:focus { outline: none; border-color: var(--primary); background: #fff; }
.form-control::placeholder { color: var(--text-light); }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%; padding: 13px; background: var(--accent); color: #fff; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 700; transition: background .2s; margin-top: 4px;
}
.form-submit:hover { background: var(--accent-dark); }
.form-notice { font-size: 12px; color: var(--text-muted); margin-top: 10px; text-align: center; }
.map-embed { margin-top: 24px; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border); }
.map-embed iframe { width: 100%; height: 230px; display: block; border: none; }

/* ── HAKKIMIZDA ──────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-lead { font-size: 16px; color: var(--text-muted); line-height: 1.8; margin-bottom: 24px; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.value-card { padding: 18px; background: var(--bg-soft); border-radius: var(--radius-md); border: 1px solid var(--border); }
.value-card h4 { font-size: 13.5px; font-weight: 700; color: var(--primary); margin-bottom: 5px; }
.value-card p { font-size: 12.5px; color: var(--text-muted); line-height: 1.6; }
.about-img-stack { position: relative; }
.about-img-stack img { width: 100%; border-radius: var(--radius-lg); object-fit: cover; }
.about-img-stack img:first-child { height: 320px; margin-bottom: 12px; }
.about-img-stack img:last-child { height: 200px; }

/* ── ANİMASYONLAR ────────────────────────────────────────── */
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

/* ── WHATSAPP FLOAT ──────────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 90;
  width: 54px; height: 54px; background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.22); transition: all .2s;
}
.wa-float:hover { background: #1fba5a; transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }

/* ── MOBİL ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .yap-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .site-nav, .header-actions { display: none; }
  .menu-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .yap-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }

  /* Hero mobil */
  .hero { padding: 48px 0 40px; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 0;
    text-align: center;
  }
  .hero-visual { display: none; }
  .hero-badge { margin: 0 auto 16px; }
  .hero h1 { font-size: clamp(24px, 7vw, 34px); margin-bottom: 14px; }
  .hero-desc { font-size: 14px; margin-bottom: 24px; }
  .hero-btns {
    justify-content: center;
    gap: 10px;
    margin-bottom: 0;
  }
  .hero-btns .btn--lg { padding: 12px 22px; font-size: .9rem; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .refs-grid { grid-template-columns: repeat(2, 1fr); }
  .container { padding: 0 16px; }
  .section { padding: 48px 0; }
  .hero { padding: 36px 0 32px; }
  .hero h1 { font-size: clamp(22px, 6.5vw, 28px); }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 100%; text-align: center; justify-content: center; }
}

/* ── GOOGLE TRANSLATE GİZLE ──────────────────────────────── */
.goog-te-banner-frame, .skiptranslate, .goog-te-gadget,
#goog-gt-tt, .goog-te-balloon-frame, #google_translate_element,
.VIpgJd-ZVi9od-aZ2wEe-wOHMyf { display: none !important; visibility: hidden !important; }
body { top: 0 !important; position: static !important; }
.goog-text-highlight { background: none !important; box-shadow: none !important; }

/* ══════════════════════════════════════════════
   EK STİLLER — Sayfa Bileşenleri
══════════════════════════════════════════════ */

/* --- Hizmet Detay Sayfa --- */
.hizmet-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 32px 0;
}
.hizmet-detail--reverse { direction: rtl; }
.hizmet-detail--reverse > * { direction: ltr; }
.hizmet-features {
  list-style: none;
  padding: 0;
  margin: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hizmet-features li {
  color: var(--text-secondary);
  font-size: .95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hizmet-placeholder {
  background: var(--bg-soft);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  min-height: 220px;
}
.hizmet-placeholder svg { width: 100%; max-width: 280px; }
@media (max-width: 768px) {
  .hizmet-detail { grid-template-columns: 1fr; gap: 32px; }
  .hizmet-detail--reverse { direction: ltr; }
  .hizmet-visual { display: none; }
}

/* --- Hakkımızda --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.about-info-row { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.about-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.about-info-icon { font-size: 1.2rem; margin-top: 2px; flex-shrink: 0; }
.about-info-item strong { display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; color: var(--accent); margin-bottom: 2px; }
.about-info-item span, .about-info-item a { font-size: .93rem; color: var(--text-secondary); line-height: 1.5; }
.about-values { display: flex; flex-direction: column; gap: 20px; }
.value-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
}
.value-icon { font-size: 1.6rem; margin-bottom: 10px; }
.value-card h4 { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.value-card p { font-size: .9rem; color: var(--text-secondary); line-height: 1.6; }
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; gap: 32px; } }

/* --- İletişim Sayfası --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}
.contact-form-wrap h2 { font-size: 1.4rem; font-weight: 700; margin-bottom: 24px; color: var(--primary); }
.form-alert {
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: .92rem;
  font-weight: 500;
}
.form-alert--success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.form-alert--error   { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .84rem; font-weight: 600; color: var(--text-primary); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: .95rem;
  color: var(--text-primary);
  background: var(--bg);
  transition: border-color .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); }
.form-group input.is-invalid,
.form-group textarea.is-invalid { border-color: #ef4444; }
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-info-card {
  background: var(--primary);
  color: #fff;
  border-radius: 18px;
  padding: 32px 28px;
}
.contact-info-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 24px; }
.cinfo-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; }
.cinfo-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.cinfo-item strong { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; opacity: .7; margin-bottom: 3px; }
.cinfo-item span, .cinfo-item a { font-size: .9rem; color: rgba(255,255,255,.85); line-height: 1.5; }
.cinfo-item a:hover { color: #fff; }
.map-embed { margin-top: 0; }
.empty-refs { text-align: center; padding: 60px; color: var(--text-secondary); }
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* --- Yapılabilirlik İnteraktif --- */
.yap-interactive-section { padding: 60px 0 80px; }
.yap-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.yap-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border: 2px solid var(--border);
  border-radius: 50px;
  background: var(--bg);
  cursor: pointer;
  font-family: inherit;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all .2s;
  white-space: nowrap;
}
.yap-tab:hover { border-color: var(--primary); color: var(--primary); }
.yap-tab.is-active { background: var(--primary); border-color: var(--primary); color: #fff; }
.yap-tab-icon { font-size: 1.1rem; }
.yap-panel { display: none; }
.yap-panel.is-active { display: block; animation: fadeIn .3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.yap-panel-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.yap-panel-icon { font-size: 2.5rem; flex-shrink: 0; }
.yap-panel-header h2 { font-size: 1.5rem; font-weight: 800; color: var(--primary); margin-bottom: 4px; }
.yap-panel-header p { color: var(--text-secondary); font-size: .95rem; }
.yap-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.yap-option-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  position: relative;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  cursor: default;
}
.yap-option-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(11,53,106,.1);
  transform: translateY(-3px);
}
.yap-option-num {
  font-size: .75rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: .05em;
  margin-bottom: 10px;
}
.yap-option-card h4 { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.yap-option-card p  { font-size: .88rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 14px; }
.yap-option-badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  background: #ecfdf5;
  color: #065f46;
  padding: 3px 10px;
  border-radius: 50px;
}
.yap-panel-cta {
  background: var(--bg-soft);
  border-radius: 14px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.yap-panel-cta p { font-size: .95rem; color: var(--text-secondary); flex: 1; margin: 0; }
@media (max-width: 768px) {
  .yap-tabs { gap: 8px; }
  .yap-tab  { padding: 10px 14px; font-size: .82rem; }
  .yap-tab-label { display: none; }
  .yap-tab-icon  { font-size: 1.4rem; }
  .yap-panel-header { flex-direction: column; align-items: flex-start; }
  .yap-options-grid { grid-template-columns: 1fr; }
  .yap-panel-cta { flex-direction: column; align-items: stretch; }
  .yap-panel-cta p { flex: none; }
}

/* --- Fade-in animasyon (IntersectionObserver) --- */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .55s ease; }
.fade-in.is-visible { opacity: 1; transform: none; }

/* --- Refs tam grid --- */
.refs-grid--full { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }

/* --- İnvalid form input kırmızı border --- */
input.is-invalid, textarea.is-invalid { border-color: #ef4444 !important; }

/* --- CTA ghost-orange button --- */
.btn--ghost-orange {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.4);
}
.btn--ghost-orange:hover { background: rgba(255,255,255,.15); border-color: #fff; }

/* --- Header scroll gölgesi --- */
.site-header.is-scrolled { box-shadow: 0 4px 24px rgba(11,53,106,.12); }

/* --- WA Float visible state --- */
.wa-float { opacity: 0; transform: scale(.8); transition: opacity .3s, transform .3s; pointer-events: none; }
.wa-float--visible { opacity: 1; transform: scale(1); pointer-events: auto; }

/* --- Kose CTA white button --- */
.btn--white {
  background: #fff;
  color: var(--primary);
  border: none;
}
.btn--white:hover { background: #f0f4f8; }

/* ── HİZMET ŞERİDİ (hero altı) ─────────────────────── */
.services-bar {
  background: var(--primary);
  border-bottom: 3px solid var(--accent);
}
.services-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: stretch;
}
.sbar-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 28px;
  text-decoration: none;
  transition: background .18s;
}
.sbar-item:hover { background: rgba(255,255,255,.07); }
.sbar-divider {
  width: 1px;
  background: rgba(255,255,255,.12);
  margin: 16px 0;
}
.sbar-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: rgba(233,91,11,.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.sbar-icon svg { width: 19px; height: 19px; stroke: var(--accent); }
.sbar-txt { display: flex; flex-direction: column; gap: 2px; }
.sbar-name { font-size: .9rem; font-weight: 700; color: #fff; white-space: nowrap; }
.sbar-sub  { font-size: .75rem; color: rgba(255,255,255,.5); }

@media (max-width: 900px) {
  .services-bar-inner {
    grid-template-columns: 1fr 1fr;
  }
  .sbar-divider:nth-child(2),
  .sbar-divider:nth-child(6) { display: none; }
  .sbar-divider:nth-child(4) { display: none; }
  .sbar-item { padding: 16px 20px; }
}
@media (max-width: 540px) {
  .services-bar-inner { grid-template-columns: 1fr 1fr; }
  .sbar-divider { display: none; }
  .sbar-item { padding: 14px 12px; gap: 10px; }
  .sbar-icon { width: 32px; height: 32px; border-radius: 8px; }
  .sbar-icon svg { width: 15px; height: 15px; }
  .sbar-name { font-size: .78rem; white-space: normal; }
  .sbar-sub  { font-size: .68rem; }
}

/* Footer imza */
.footer-credit {
  font-size: .75rem;
  color: rgba(255,255,255,.3);
  margin-top: 4px;
}
.footer-credit a {
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color .15s;
}
.footer-credit a:hover { color: var(--accent); }

/* ── MOBİL SABİT ALT BAR ───────────────────────────── */
.mobile-cta-bar {
  display: none;
}
@media (max-width: 768px) {
  .mobile-cta-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 200;
    box-shadow: 0 -4px 20px rgba(0,0,0,.15);
  }
  .mobile-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 10px;
    font-size: .9rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: .01em;
  }
  .mobile-cta-btn svg {
    width: 18px; height: 18px;
    flex-shrink: 0;
  }
  .mobile-cta-btn--map {
    background: #1a1a2e;
    color: #e0e6f0;
  }
  .mobile-cta-btn--map:active { background: #0f0f1a; }
  .mobile-cta-btn--call {
    background: #16a34a;
    color: #fff;
  }
  .mobile-cta-btn--call:active { background: #15803d; }

  /* Sayfa içeriği alttan kesmemesi için boşluk */
  body { padding-bottom: 56px; }
  /* WA butonu biraz yukarı çıksın */
  .wa-float { bottom: 72px; }
}
