/* ═══════════════════════════════════════════════════
   Taç Elektronik – Shared Stylesheet
   Primary: #0a4577  |  Secondary: #F5F2EC / #F6F7F9
════════════════════════════════════════════════════ */
:root {
  --primary:       #0a4577;
  --primary-dark:  #073659;
  --primary-light: #1a6ab5;
  --secondary:     #F5F2EC;
  --secondary-alt: #F6F7F9;
  --white:         #ffffff;
  --txt-dark:      #1a1f2e;
  --txt-body:      #3d4557;
  --txt-muted:     #6b7489;
  --border:        #e2e6ef;
  --shadow-sm:  0 2px 8px  rgba(10,69,119,.08);
  --shadow-md:  0 6px 24px rgba(10,69,119,.13);
  --shadow-lg:  0 16px 48px rgba(10,69,119,.16);
  --wa:    #25D366;
  --wa-dk: #128C7E;
  --r-sm: 8px; --r-md: 14px; --r-lg: 20px;
  --ease: .25s cubic-bezier(.4,0,.2,1);
  --hh: 100px;
}

/* ── Reset ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--txt-body); background: var(--white);
  line-height: 1.6; -webkit-font-smoothing: antialiased;
  min-width: 320px;
}
img   { display: block; max-width: 100%; }
a     { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }

/* ── Utilities ─────────────────────────────────── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.tag {
  display: inline-block;
  background: rgba(10,69,119,.1); color: var(--primary);
  font-size: .73rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 50px; margin-bottom: 12px;
}
.sec-title {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800; color: var(--txt-dark); line-height: 1.2; margin-bottom: 12px;
}
.sec-sub { font-size: 1rem; color: var(--txt-muted); max-width: 560px; }
.sec-hdr { text-align: center; margin-bottom: 52px; }
.sec-hdr .sec-sub { margin: 0 auto; }

/* ── Buttons ───────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 50px;
  font-size: .9rem; font-weight: 700; white-space: nowrap;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn-p  { background: var(--primary); color: var(--white); box-shadow: 0 4px 16px rgba(10,69,119,.35); }
.btn-p:hover  { background: var(--primary-light); box-shadow: 0 8px 24px rgba(10,69,119,.45); }
.btn-wa { background: var(--wa); color: var(--white); box-shadow: 0 4px 16px rgba(37,211,102,.35); }
.btn-wa:hover { background: var(--wa-dk); box-shadow: 0 8px 24px rgba(37,211,102,.45); }
.btn-ol { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.7); }
.btn-ol:hover { background: rgba(255,255,255,.15); border-color: var(--white); }
.btn-wh { background: var(--white); color: var(--primary); box-shadow: 0 4px 16px rgba(0,0,0,.14); }
.btn-wh:hover { background: var(--secondary); }
.btn-sm { padding: 9px 18px; font-size: .82rem; }

/* ── Header ────────────────────────────────────── */
#hdr {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--hh);
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--ease), box-shadow var(--ease);
}
#hdr.on { border-color: var(--border); box-shadow: var(--shadow-sm); }
.hdr-in {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--hh); gap: 16px;
}
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 75px; width: auto; display: block; object-fit: contain; }
nav.main { display: flex; align-items: center; gap: 4px; }
nav.main a {
  padding: 7px 11px; border-radius: var(--r-sm);
  font-size: 1.05rem; font-weight: 600; color: var(--txt-body);
  transition: color var(--ease), background var(--ease);
}
nav.main a:hover { color: var(--primary); background: rgba(10,69,119,.06); }
.hdr-ctas { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.ham {
  display: none; align-items: center; justify-content: center;
  width: 40px; height: 40px; padding: 0;
  color: var(--primary); font-size: 1.2rem;
  border-radius: var(--r-sm); transition: background var(--ease);
}
.ham:hover { background: rgba(10,69,119,.06); }
.mob-nav {
  display: none; position: fixed;
  top: var(--hh); left: 0; right: 0;
  background: var(--white); border-top: 1px solid var(--border);
  padding: 16px 20px 20px; box-shadow: var(--shadow-md);
  z-index: 999; flex-direction: column; gap: 4px;
}
.mob-nav.open { display: flex; }
.mob-nav a {
  padding: 12px 16px; border-radius: var(--r-sm);
  font-weight: 600; color: var(--txt-dark); transition: background var(--ease);
}
.mob-nav a:hover { background: var(--secondary); }
.mob-ctas { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }

/* ── Icon Box Utilities ─────────────────────────── */
.ico-box {
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; background: rgba(10,69,119,.1); color: var(--primary);
}
.ico-box-sm  { width: 36px; height: 36px; border-radius: var(--r-sm); font-size: 1rem; }
.ico-box-md  { width: 46px; height: 46px; border-radius: var(--r-sm); font-size: 1.25rem; }
.ico-box-lg  { width: 58px; height: 58px; border-radius: var(--r-md); font-size: 1.5rem; }
.ico-box-rnd { border-radius: 50%; }
.ico-box-wa  { background: rgba(37,211,102,.12); color: var(--wa); }

/* ── Footer ────────────────────────────────────── */
footer {
  background: var(--txt-dark); color: rgba(255,255,255,.65);
  padding: 48px 0 24px;
}
.footer-in {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 36px;
  padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.1); margin-bottom: 24px;
}
.footer-brand strong { display: block; font-size: 1.05rem; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.footer-brand p { font-size: .85rem; line-height: 1.65; color: rgba(255,255,255,.55); margin-bottom: 14px; }
.footer-brand a { color: rgba(255,255,255,.82); font-weight: 600; font-size: .95rem; }
.footer-col h4 {
  font-size: .75rem; font-weight: 700; color: var(--white);
  margin-bottom: 14px; text-transform: uppercase; letter-spacing: .08em;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: .85rem; color: rgba(255,255,255,.58); transition: color var(--ease); }
.footer-col a:hover { color: var(--white); }
.footer-copy { text-align: center; font-size: .75rem; color: rgba(255,255,255,.32); }

/* ── Mobile Sticky Contact Bar ──────────────────── */
.mobile-sticky-contact {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  padding-bottom: env(safe-area-inset-bottom);
}
.sticky-call, .sticky-whatsapp {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 5px; min-height: 62px; padding: 10px 8px;
  font-size: .72rem; font-weight: 800; color: var(--white);
  letter-spacing: .04em; text-transform: uppercase;
  transition: opacity var(--ease);
}
.sticky-call:hover, .sticky-whatsapp:hover { opacity: .9; }
.sticky-call i, .sticky-whatsapp i { font-size: 1.25rem; }
.sticky-call      { background: #d71920; }
.sticky-whatsapp  { background: #25D366; }

/* ── FAQ ───────────────────────────────────────── */
.faq-sec { padding: 72px 0; background: var(--white); }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--r-md);
  overflow: hidden; transition: box-shadow var(--ease);
}
.faq-item.open { box-shadow: var(--shadow-sm); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px; cursor: pointer; gap: 16px;
  background: var(--white); width: 100%; transition: background var(--ease);
}
.faq-q:hover { background: var(--secondary-alt); }
.faq-item.open .faq-q { background: rgba(10,69,119,.04); }
.faq-qt { font-size: .95rem; font-weight: 700; color: var(--txt-dark); flex: 1; text-align: left; }
.faq-ch {
  flex-shrink: 0; width: 24px; height: 24px;
  background: rgba(10,69,119,.08); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: .75rem;
  transition: transform var(--ease), background var(--ease);
}
.faq-item.open .faq-ch { transform: rotate(180deg); background: var(--primary); color: var(--white); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .38s cubic-bezier(.4,0,.2,1); }
.faq-ai { padding: 0 22px 20px; font-size: .9rem; color: var(--txt-muted); line-height: 1.75; }

/* ═══════════════════════════════════════════════════
   SERVICE PAGE STYLES
════════════════════════════════════════════════════ */
.svc-hero {
  margin-top: var(--hh); position: relative;
  min-height: 440px; background-size: cover;
  background-position: center; background-repeat: no-repeat;
  display: flex; align-items: center; padding: 52px 0 60px;
}
.svc-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(108deg, rgba(7,54,89,.9) 0%, rgba(10,69,119,.62) 55%, rgba(10,69,119,.25) 100%);
}
.svc-hero-bd { position: relative; z-index: 2; }
.s-eye {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.24);
  backdrop-filter: blur(8px); color: rgba(255,255,255,.92);
  font-size: .77rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 50px; margin-bottom: 20px; width: fit-content;
}
.svc-hero h1 {
  font-size: clamp(1.75rem, 4.5vw, 2.9rem);
  font-weight: 900; color: var(--white); line-height: 1.18;
  max-width: 680px; margin-bottom: 18px;
  text-shadow: 0 2px 14px rgba(0,0,0,.25);
}
.svc-hero-sub {
  font-size: clamp(.92rem, 2vw, 1.08rem);
  color: rgba(255,255,255,.88); max-width: 540px; line-height: 1.65; margin-bottom: 32px;
}
.s-btns { display: flex; flex-wrap: wrap; gap: 12px; }

/* info section */
.info-sec { padding: 72px 0; background: var(--white); }
.info-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 52px; align-items: center; }
.info-txt p { margin-bottom: 16px; color: var(--txt-body); line-height: 1.75; }
.info-img-wrap {
  border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 4/3; box-shadow: var(--shadow-lg);
}
.info-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* symptoms */
.symp-sec { padding: 72px 0; background: var(--secondary-alt); }
.symp-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 14px; margin-top: 36px;
}
.symp-item {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 16px; box-shadow: var(--shadow-sm);
  transition: box-shadow var(--ease), transform var(--ease);
}
.symp-item:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.symp-ico {
  width: 36px; height: 36px; flex-shrink: 0;
  background: rgba(10,69,119,.08); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center; font-size: 1.05rem;
}
.symp-txt { font-size: .9rem; font-weight: 600; color: var(--txt-dark); line-height: 1.4; padding-top: 6px; }

/* process */
.proc-sec { padding: 72px 0; background: var(--white); }
.proc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 20px; }
.proc-card {
  background: var(--secondary-alt); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 28px 22px;
  transition: box-shadow var(--ease), transform var(--ease);
}
.proc-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.proc-num { font-size: 3rem; font-weight: 900; color: var(--primary); opacity: .1; line-height: 1; margin-bottom: 10px; }
.proc-ico { font-size: 1.55rem; margin-bottom: 10px; }
.proc-card h3 { font-size: 1rem; font-weight: 700; color: var(--txt-dark); margin-bottom: 8px; }
.proc-card p  { font-size: .875rem; color: var(--txt-muted); line-height: 1.6; }

/* why us */
.why-sec { padding: 72px 0; background: var(--primary); }
.why-sec .tag      { background: rgba(255,255,255,.15); color: rgba(255,255,255,.9); }
.why-sec .sec-title { color: var(--white); }
.why-sec .sec-sub   { color: rgba(255,255,255,.75); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.why-card {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-md); padding: 24px;
  transition: background var(--ease), transform var(--ease);
}
.why-card:hover { background: rgba(255,255,255,.14); transform: translateY(-3px); }
.why-ico  { font-size: 1.7rem; margin-bottom: 12px; }
.why-card .ico-box { background: rgba(255,255,255,.15); color: var(--white); }
.why-card h3 { font-size: .97rem; font-weight: 700; color: var(--white); margin-bottom: 7px; }
.why-card p  { font-size: .85rem; color: rgba(255,255,255,.72); line-height: 1.6; }

/* related */
.rel-sec { padding: 72px 0; background: var(--secondary-alt); }
.rel-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 20px; }
.rel-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 26px 22px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 10px;
  transition: transform var(--ease), box-shadow var(--ease);
}
.rel-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.rel-ico {
  width: 44px; height: 44px; background: rgba(10,69,119,.08); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.rel-card h3 { font-size: 1rem; font-weight: 700; color: var(--txt-dark); }
.rel-card p  { font-size: .875rem; color: var(--txt-muted); line-height: 1.55; flex: 1; }

/* CTA */
.cta-sec {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  text-align: center;
}
.cta-sec h2 { font-size: clamp(1.4rem, 3.5vw, 2rem); font-weight: 800; color: var(--white); margin-bottom: 16px; }
.cta-sec p  { color: rgba(255,255,255,.82); font-size: 1rem; max-width: 520px; margin: 0 auto 32px; line-height: 1.65; }
.cta-btns   { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ═══════════════════════════════════════════════════
   HOMEPAGE STYLES
════════════════════════════════════════════════════ */
#hero {
  margin-top: var(--hh); position: relative;
  height: clamp(480px, 86vh, 780px); overflow: hidden;
}
.s-track { position: relative; height: 100%; }
.slide {
  position: absolute; inset: 0; height: 100%; overflow: hidden;
  opacity: 0; visibility: hidden;
  transition: opacity .8s ease, visibility .8s ease;
}
.slide.on { opacity: 1; visibility: visible; }
.slide img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.s-ov {
  position: absolute; inset: 0;
  background: rgba(0, 0, 0, 0.45);
}
.s-body {
  position: relative; z-index: 2; height: 100%;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 20px; max-width: 1200px; margin: 0 auto;
}
.slide h1, .slide .sh2 {
  font-size: clamp(1.75rem, 4.5vw, 3rem);
  font-weight: 900; color: var(--white); line-height: 1.17;
  max-width: 700px; margin-bottom: 18px; text-shadow: 0 2px 14px rgba(0,0,0,.28);
}
.s-sub {
  font-size: clamp(.92rem, 2vw, 1.1rem);
  color: rgba(255,255,255,.88); max-width: 560px; line-height: 1.65; margin-bottom: 32px;
}
.s-dots {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%); display: flex; gap: 8px; z-index: 10;
}
.s-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.4); transition: background var(--ease), width var(--ease); cursor: pointer;
}
.s-dot.on { background: var(--white); width: 28px; border-radius: 4px; }
.s-arr {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  width: 44px; height: 44px; background: rgba(255,255,255,.2); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.24); border-radius: 50%;
  color: var(--white); font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center; transition: background var(--ease);
}
.s-arr:hover { background: rgba(255,255,255,.34); }
.s-prev { left: 16px; } .s-next { right: 16px; }
.s-body > * { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.slide.on .s-body > * { opacity: 1; transform: none; }
.slide.on .s-body > *:nth-child(1) { transition-delay: .08s; }
.slide.on .s-body > *:nth-child(2) { transition-delay: .20s; }
.slide.on .s-body > *:nth-child(3) { transition-delay: .32s; }
.slide.on .s-body > *:nth-child(4) { transition-delay: .44s; }

#hizmetler { padding: 80px 0; background: var(--secondary-alt); }
.srv-carousel-wrap { position: relative; }
.srv-carousel-btn {
  display: none; position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10; width: 38px; height: 38px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 50%; box-shadow: var(--shadow-sm);
  color: var(--primary); font-size: .9rem;
  align-items: center; justify-content: center;
  transition: box-shadow var(--ease), transform var(--ease);
}
.srv-carousel-btn:hover { box-shadow: var(--shadow-md); transform: translateY(-50%) scale(1.08); }
.services-prev { left: -18px; }
.services-next { right: -18px; }
.srv-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(255px, 1fr)); gap: 20px; }
.srv-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 26px 22px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 11px;
  transition: transform var(--ease), box-shadow var(--ease);
}
.srv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.srv-ico {
  width: 46px; height: 46px; background: rgba(10,69,119,.08); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center; font-size: 1.25rem; flex-shrink: 0;
}
.srv-card h3 { font-size: .97rem; font-weight: 700; color: var(--txt-dark); }
.srv-card p  { font-size: .86rem; color: var(--txt-muted); line-height: 1.6; flex: 1; }

/* ── Products Section ───────────────────────────── */
#urunler { padding: 80px 0; background: var(--secondary); }
.prd-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.prd-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform var(--ease), box-shadow var(--ease);
}
.prd-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.prd-img {
  position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--secondary-alt);
}
.prd-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.prd-card:hover .prd-img img { transform: scale(1.05); }
.prd-ico-badge {
  position: absolute; top: 12px; left: 12px;
  width: 40px; height: 40px; background: var(--primary);
  border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.1rem; box-shadow: var(--shadow-sm);
}
.prd-body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.prd-body h3 { font-size: 1rem; font-weight: 700; color: var(--txt-dark); line-height: 1.3; }
.prd-body p  { font-size: .86rem; color: var(--txt-muted); line-height: 1.6; flex: 1; }
.prd-btn {
  display: inline-flex; align-items: center; gap: 8px; justify-content: center;
  padding: 10px 16px; border-radius: 50px;
  background: var(--wa); color: var(--white);
  font-size: .82rem; font-weight: 700;
  transition: background var(--ease), transform var(--ease);
}
.prd-btn:hover { background: var(--wa-dk); transform: translateY(-1px); }

#one-cikan { padding: 80px 0; background: var(--white); }
.feat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; }
.feat-card {
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-md); border: 1px solid var(--border); background: var(--white);
  transition: transform var(--ease), box-shadow var(--ease);
}
.feat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.feat-img { position: relative; height: 200px; overflow: hidden; }
.feat-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.feat-card:hover .feat-img img { transform: scale(1.06); }
.feat-bdg {
  position: absolute; top: 14px; left: 14px;
  background: var(--primary); color: var(--white);
  font-size: .72rem; font-weight: 700; padding: 5px 12px; border-radius: 50px;
}
.feat-body { padding: 24px; }
.feat-body h3 { font-size: 1.12rem; font-weight: 800; color: var(--txt-dark); margin-bottom: 10px; }
.feat-body p  { font-size: .875rem; color: var(--txt-muted); line-height: 1.65; margin-bottom: 18px; }

#hakkimizda { padding: 80px 0; background: var(--secondary); }
.abt-in { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.abt-img {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4/3;
}
.abt-img img { width: 100%; height: 100%; }
.abt-bdg {
  position: absolute; bottom: 20px; left: 20px;
  background: var(--white); border-radius: var(--r-md);
  padding: 14px 18px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px;
}
.abt-bdg-ico {
  width: 42px; height: 42px; background: var(--primary); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.1rem;
}
.abt-bdg-txt strong { display: block; font-size: 1.1rem; font-weight: 800; color: var(--txt-dark); }
.abt-bdg-txt span   { font-size: .78rem; color: var(--txt-muted); }
.abt-txt p { margin-bottom: 16px; color: var(--txt-body); line-height: 1.75; }
.abt-list { margin: 20px 0 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.abt-list li {
  display: flex; align-items: center; gap: 8px;
  font-size: .875rem; font-weight: 600; color: var(--txt-dark);
}
.abt-list li::before {
  content: '✓'; display: flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(10,69,119,.1); color: var(--primary); font-size: .7rem; flex-shrink: 0;
}
#neden-biz { padding: 80px 0; background: var(--primary); }
#neden-biz .tag      { background: rgba(255,255,255,.15); color: rgba(255,255,255,.9); }
#neden-biz .sec-title { color: var(--white); }
#neden-biz .sec-sub   { color: rgba(255,255,255,.75); }

#yorumlar { padding: 80px 0; background: var(--secondary-alt); }
.rev-hint { text-align: center; font-size: .78rem; color: var(--txt-muted); margin-bottom: 24px; }
.rev-track {
  display: flex; gap: 20px; overflow-x: auto; padding-bottom: 12px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin; scrollbar-color: var(--border) transparent;
  -webkit-overflow-scrolling: touch;
}
.rev-track::-webkit-scrollbar { height: 4px; }
.rev-track::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
.rev-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 24px;
  min-width: 290px; max-width: 320px; scroll-snap-align: start;
  box-shadow: var(--shadow-sm); flex-shrink: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.review-logo { max-width: 80px; width: 100%; height: auto; display: block; margin-bottom: 8px; }
.rev-stars { color: #fbbc04; font-size: 1rem; letter-spacing: 2px; }
.rev-txt   { font-size: .875rem; color: var(--txt-body); line-height: 1.65; font-style: italic; }
.rev-auth  { display: flex; align-items: center; gap: 10px; margin-top: auto; }
.rev-av {
  width: 38px; height: 38px; border-radius: 50%; background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: .9rem; flex-shrink: 0;
}
.rev-info strong { display: block; font-size: .875rem; font-weight: 700; color: var(--txt-dark); }
.rev-info span   { font-size: .75rem; color: var(--txt-muted); }

#sss { padding: 80px 0; background: var(--white); }

#iletisim { padding: 80px 0; background: var(--secondary); }
.cnt-in { display: grid; grid-template-columns: 1fr 1.1fr; gap: 52px; }
.cnt-info h2 { font-size: 1.65rem; font-weight: 800; color: var(--txt-dark); margin-bottom: 14px; }
.cnt-info > p { color: var(--txt-muted); line-height: 1.7; margin-bottom: 28px; }
.cnt-items { display: flex; flex-direction: column; gap: 14px; }
.cnt-item  { display: flex; align-items: center; gap: 14px; }
.cnt-ico {
  width: 46px; height: 46px; background: var(--white); border-radius: var(--r-sm);
  box-shadow: var(--shadow-sm); display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.cnt-itxt strong { display: block; font-size: .875rem; font-weight: 700; color: var(--txt-dark); }
.cnt-itxt span   { font-size: .82rem; color: var(--txt-muted); }
.cnt-ctas { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.map-ph {
  margin-top: 24px; height: 180px; background: var(--white);
  border-radius: var(--r-md); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 8px; color: var(--txt-muted); font-size: .85rem;
}
.map-ph span { font-size: 2rem; }
.cnt-form {
  background: var(--white); border-radius: var(--r-lg);
  padding: 36px 32px; box-shadow: var(--shadow-md); border: 1px solid var(--border);
}
.cnt-form h3 { font-size: 1.2rem; font-weight: 800; color: var(--txt-dark); margin-bottom: 22px; }
.fg { margin-bottom: 16px; }
.fg label { display: block; font-size: .82rem; font-weight: 700; color: var(--txt-dark); margin-bottom: 6px; }
.fg input, .fg textarea {
  width: 100%; padding: 12px 15px;
  border: 1.5px solid var(--border); border-radius: var(--r-sm);
  font: inherit; font-size: .9rem; color: var(--txt-dark);
  background: var(--secondary-alt); resize: none;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.fg input:focus, .fg textarea:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(10,69,119,.12); background: var(--white);
}
.fg textarea { height: 110px; }
.f-sub { width: 100%; justify-content: center; border-radius: var(--r-sm); font-size: .95rem; }

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 1024px) {
  .abt-in     { grid-template-columns: 1fr; gap: 36px; }
  .abt-img    { max-width: 520px; margin: 0 auto; }
  .cnt-in     { grid-template-columns: 1fr; gap: 36px; }
  .info-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-in  { grid-template-columns: 1fr 1fr; }
  .info-img-wrap { max-width: 480px; margin: 0 auto; width: 100%; }
  .prd-grid   { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  nav.main       { display: none; }
  .hdr-ctas .btn { display: none; }
  .ham           { display: flex; }
  .mobile-sticky-contact { display: flex; }
  .srv-carousel-btn      { display: flex; }
  body           { padding-bottom: 72px; }
  .abt-list      { grid-template-columns: 1fr; }
  .footer-in     { grid-template-columns: 1fr; gap: 24px; }
  .logo-img      { height: 52px; }
  .why-grid      { grid-template-columns: repeat(2, 1fr); }
  .prd-grid      { grid-template-columns: 1fr; }
  .srv-grid {
    display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
    gap: 14px; padding-bottom: 8px;
    scrollbar-width: none; -ms-overflow-style: none;
  }
  .srv-grid::-webkit-scrollbar { display: none; }
  .srv-card {
    min-width: 82%; scroll-snap-align: start; flex-shrink: 0;
  }
}
@media (max-width: 480px) {
  .cnt-form    { padding: 24px 18px; }
  .feat-grid   { grid-template-columns: 1fr; }
  .slide h1, .slide .sh2, .svc-hero h1 { font-size: clamp(1.4rem, 5.5vw, 1.9rem); }
  .why-grid    { grid-template-columns: 1fr; }
}
