/* ===================================================
   Birgül Sigorta — Yeniden Tasarım
   Renk: Turkuaz + Lacivert
   Font: Inter (Google Fonts)
   =================================================== */

/* ---------- Tokens ---------- */
:root {
  --teal:        #0097A7;
  --teal-dark:   #00717E;
  --teal-deeper: #005F6B;
  --teal-soft:   rgba(0,151,167,.1);
  --teal-glow:   rgba(0,151,167,.25);

  --navy:        #152A4A;
  --navy-dark:   #0D1D35;
  --navy-mid:    #1E3A60;
  --navy-light:  rgba(21,42,74,.06);

  --white:   #FFFFFF;
  --off:     #F5F7FA;
  --border:  #E2E8F0;
  --text:    #1A2B4A;
  --muted:   #64748B;
  --light:   #94A3B8;

  --body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --nav-h:   120px;
  --r:       12px;
  --ease:    cubic-bezier(.4,0,.2,1);
  --spring:  cubic-bezier(.34,1.56,.64,1);
  --max-w:   1240px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body { font-family: var(--body); color: var(--text); background: var(--white); overflow-x: hidden; line-height: 1.65; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--body); }
input, select, textarea { font-family: var(--body); }
::selection { background: var(--teal); color: #fff; }

/* ---------- Utilities ---------- */
.container { width: min(var(--max-w), 100% - 40px); margin-inline: auto; }

/* Prevent overflow on all grid children */
* { min-width: 0; }

/* ===================================================
   NAVBAR
   =================================================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 200;
  display: flex; align-items: center;
  transition: background .4s var(--ease), box-shadow .4s var(--ease);
}
.navbar.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px) saturate(1.8);
  -webkit-backdrop-filter: blur(16px) saturate(1.8);
  box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(0,0,0,.06);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: min(var(--max-w), 100% - 40px); margin-inline: auto;
}

/* Logo */
.nav-logo { display: flex; align-items: center; position: relative; z-index: 210; }
.nav-logo-img { height: 150px; width: auto; display: block; }
.footer-logo-img { height: 150px; width: auto; display: block; margin-bottom: 16px; }
.logo-main {
  font-size: 1.35rem; font-weight: 800; letter-spacing: -.4px;
  color: var(--teal);
  transition: color .2s;
}
.navbar:not(.scrolled) .logo-main { color: #fff; }
.logo-sub {
  font-size: .58rem; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--muted);
}
.navbar:not(.scrolled) .logo-sub { color: rgba(255,255,255,.45); }

/* Nav links */
.nav-menu { display: flex; align-items: center; gap: 2px; }
.nav-link {
  font-size: .84rem; font-weight: 500; color: var(--text);
  padding: 9px 15px; border-radius: 8px;
  transition: color .2s, background .2s;
}
.navbar:not(.scrolled) .nav-link { color: rgba(255,255,255,.82); }
.nav-link:hover { background: var(--teal-soft); color: var(--teal); }
.navbar:not(.scrolled) .nav-link:hover { background: rgba(255,255,255,.1); color: #fff; }
.nav-link.active { color: var(--teal); font-weight: 600; }
.navbar:not(.scrolled) .nav-link.active { color: #fff; }

/* Nav CTA */
.nav-cta {
  background: var(--teal) !important;
  color: #fff !important;
  padding: 10px 22px !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  font-size: .84rem !important;
  box-shadow: 0 2px 12px var(--teal-glow);
  transition: background .2s, transform .15s, box-shadow .2s !important;
}
.nav-cta:hover {
  background: var(--teal-dark) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 20px var(--teal-glow) !important;
}
.navbar:not(.scrolled) .nav-cta {
  background: rgba(255,255,255,.15) !important;
  border: 1px solid rgba(255,255,255,.3) !important;
  box-shadow: none !important;
}

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: 210; position: relative; }
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s;
}
.navbar:not(.scrolled) .hamburger span { background: #fff; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================================================
   HERO SLIDER — Tam ekran
   =================================================== */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--navy-dark);
}

/* Slides */
.slides-wrap {
  position: absolute; inset: 0;
}
.slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity .9s var(--ease);
  display: flex; align-items: center;
}
.slide.active { opacity: 1; z-index: 1; }

/* Slide content */
.slide-content {
  position: relative; z-index: 2;
  margin-left: clamp(28px, 8vw, 120px);
  max-width: 640px;
  padding-top: var(--nav-h);
}
.slide-eyebrow {
  display: inline-block;
  font-size: .72rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--teal);
  background: rgba(0,151,167,.15);
  border: 1px solid rgba(0,151,167,.3);
  padding: 6px 14px; border-radius: 100px;
  margin-bottom: 20px;
}
.slide-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800; color: #fff;
  line-height: 1.12; letter-spacing: -.5px;
  margin-bottom: 20px;
}
.slide-title em {
  font-style: normal;
  color: var(--teal);
}
.slide-sub {
  font-size: 1.05rem; font-weight: 400;
  color: rgba(255,255,255,.65);
  line-height: 1.75; max-width: 480px;
  margin-bottom: 36px;
}
.slide-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.btn-slide-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--teal); color: #fff;
  padding: 15px 32px; border-radius: 10px;
  font-weight: 700; font-size: .92rem;
  box-shadow: 0 4px 24px var(--teal-glow);
  transition: all .25s var(--ease);
}
.btn-slide-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,151,167,.4);
}
.btn-slide-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.7); font-size: .88rem; font-weight: 500;
  padding: 15px 24px; border: 1.5px solid rgba(255,255,255,.2);
  border-radius: 10px; transition: all .25s;
}
.btn-slide-ghost:hover { color: #fff; border-color: rgba(255,255,255,.45); background: rgba(255,255,255,.07); }
.btn-slide-ghost i { font-size: .75rem; transition: transform .2s; }
.btn-slide-ghost:hover i { transform: translateX(4px); }

/* Progress bar */
.slide-progress {
  position: absolute; bottom: 148px; left: 0; right: 0; height: 2px;
  background: rgba(255,255,255,.12); z-index: 10;
}
.slide-progress-bar {
  height: 100%; width: 0;
  background: var(--teal);
  transition: width linear;
}

/* Category bar */
.category-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(13,29,53,.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,.07);
  z-index: 10;
}
.category-bar-inner {
  display: flex; align-items: stretch; justify-content: center;
  width: min(var(--max-w), 100%);
  margin-inline: auto;
  overflow-x: auto;
  scrollbar-width: none;
}
.category-bar-inner::-webkit-scrollbar { display: none; }

.cat-btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 6px; padding: 16px 20px; min-width: 80px;
  color: rgba(255,255,255,.5); font-size: .72rem; font-weight: 600;
  letter-spacing: .3px; white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: color .2s, border-color .2s, background .2s;
  position: relative;
}
.cat-btn i { font-size: 1.1rem; }
.cat-btn:hover { color: rgba(255,255,255,.85); background: rgba(255,255,255,.04); }
.cat-btn.active { color: var(--teal); border-bottom-color: var(--teal); }

/* Scroll hint */
.scroll-hint {
  position: absolute; bottom: 165px; right: 48px; z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,.35); font-size: .65rem; letter-spacing: 2px;
  text-transform: uppercase;
}
.scroll-hint-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(255,255,255,.3);
  animation: bob 1.8s ease-in-out infinite;
}
@keyframes bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(5px)} }

/* ===================================================
   STATS BAND
   =================================================== */
.stats-band {
  background: var(--navy);
  padding: 32px 0;
}
.stats-grid {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.stat-item {
  display: flex; flex-direction: column; align-items: center;
  gap: 4px; padding: 12px 40px;
}
.stat-item strong {
  font-size: 2rem; font-weight: 800; color: #fff; line-height: 1;
}
.stat-item strong sup { font-size: 1rem; font-weight: 700; }
.stat-item span { font-size: .78rem; color: rgba(255,255,255,.45); font-weight: 500; letter-spacing: .5px; }
.stat-divider { width: 1px; height: 48px; background: rgba(255,255,255,.1); }

/* ===================================================
   SECTION HELPERS
   =================================================== */
.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-head--nowrap { max-width: none; }
@media (min-width: 769px) {
  .section-head--nowrap h2,
  .section-head--nowrap p { white-space: nowrap; }
}
.section-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800; color: var(--navy);
  letter-spacing: -.3px; line-height: 1.2;
  margin: 12px 0 16px;
}
.section-head h2 em { font-style: normal; color: var(--teal); }
.section-head p { font-size: .95rem; color: var(--muted); line-height: 1.75; }
.section-head-light h2 { color: #fff; }

.eyebrow {
  display: inline-block;
  font-size: .7rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--teal);
  background: var(--teal-soft); border-radius: 100px;
  padding: 5px 14px;
}
.eyebrow-light {
  background: rgba(0,151,167,.2);
}

/* ===================================================
   SERVICES CAROUSEL
   =================================================== */
.services-section {
  padding: clamp(72px,10vw,112px) 0;
  background: var(--off);
  overflow: hidden;
}

/* Carousel wrapper — full bleed */
.services-carousel-wrap {
  position: relative;
  margin-top: 40px;
}

.services-track {
  display: flex;
  gap: 28px;
  padding: 16px max(24px, calc((100vw - 1240px) / 2 + 40px)) 40px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.services-track::-webkit-scrollbar { display: none; }

/* Cards */
.service-card {
  min-width: 380px;
  width: 380px;
  flex-shrink: 0;
  scroll-snap-align: start;
  background: var(--white);
  border-radius: 10px;
  border: 1.5px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(0,0,0,.11);
  border-color: var(--teal);
}

/* Card image area */
.sc-img {
  height: 240px;
  position: relative;
  overflow: hidden;
}
.sc-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s var(--ease);
}
.service-card:hover .sc-img img { transform: scale(1.04); }

/* Card body */
.sc-body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.sc-body h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); line-height: 1.3; }
.sc-body p  { font-size: .88rem; color: var(--muted); line-height: 1.72; flex: 1; }

/* CTA button */
.sc-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: #fff;
  padding: 11px 20px;
  border-radius: 9px;
  font-size: .87rem;
  font-weight: 700;
  margin-top: 6px;
  align-self: flex-start;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 3px 12px var(--teal-glow);
}
.sc-cta-btn i { font-size: .82rem; }
.sc-cta-btn:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,151,167,.35);
}

/* Navigation arrows */
.svc-arrow {
  position: absolute;
  top: calc(50% - 20px);
  transform: translateY(-50%);
  z-index: 10;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  font-size: .88rem;
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
  transition: background .2s, color .2s, border-color .2s, box-shadow .2s;
}
.svc-arrow:hover {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
  box-shadow: 0 6px 24px var(--teal-glow);
}
.svc-arrow-prev { left: 16px; }
.svc-arrow-next { right: 16px; }

.services-more-wrap { text-align: center; margin-top: 48px; }
.btn-more {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .88rem; font-weight: 700; color: var(--navy);
  border: 2px solid var(--navy);
  padding: 13px 28px; border-radius: 10px;
  transition: all .25s;
}
.btn-more:hover { background: var(--navy); color: #fff; }
.btn-more i { font-size: .75rem; transition: transform .2s; }
.btn-more:hover i { transform: translateX(4px); }

/* ===================================================
   TEKLİF AL (QUOTE) SECTION
   =================================================== */
.quote-section {
  padding: clamp(72px,10vw,112px) 0;
  background: var(--white);
}
.quote-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 64px;
  align-items: start;
}
.quote-info {
  grid-column: 1;
}
.quote-form-wrap {
  grid-column: 2;
  max-width: none !important;
}
.maps-container {
  grid-column: 2;
  margin-top: -280px;
}
.quote-info h2 {
  font-size: clamp(1.8rem,3.5vw,2.8rem);
  font-weight: 800; color: var(--navy);
  line-height: 1.2; letter-spacing: -.3px;
  margin: 12px 0 16px;
}
.quote-info h2 em { font-style: normal; color: var(--teal); }
.quote-info > p { font-size: .95rem; color: var(--muted); line-height: 1.75; margin-bottom: 28px; }

.quote-bullets { display: flex; flex-direction: column; gap: 12px; }
.quote-bullets li {
  display: flex; align-items: center; gap: 12px;
  font-size: .9rem; font-weight: 500; color: var(--text);
}
.quote-bullets li i { color: var(--teal); font-size: .9rem; flex-shrink: 0; }

/* Form card */
.quote-form-wrap {
  background: var(--off);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: clamp(20px,4vw,36px);
}

/* Form fields */
.f-group { margin-bottom: 16px; position: relative; }
.f-group label {
  display: block; font-size: .72rem; font-weight: 700;
  color: var(--navy); margin-bottom: 7px;
  letter-spacing: .8px; text-transform: uppercase;
}
.f-group input,
.f-group select {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 9px; font-size: .92rem;
  color: var(--text); background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none; appearance: none;
}
.f-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748B' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.f-group input:focus,
.f-group select:focus { border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-soft); }
.f-group.has-error input,
.f-group.has-error select { border-color: #EF4444; }
.f-group .err {
  display: none; font-size: .75rem; color: #EF4444;
  margin-top: 5px;
}
.f-group.has-error .err { display: block; }

.f-submit {
  width: 100%; padding: 15px;
  background: var(--teal); color: #fff;
  border-radius: 10px; font-size: .95rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-top: 4px;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 20px var(--teal-glow);
}
.f-submit:hover { background: var(--teal-dark); transform: translateY(-1px); box-shadow: 0 8px 28px rgba(0,151,167,.35); }
.f-submit:disabled { opacity: .7; cursor: not-allowed; transform: none; }

.form-note {
  text-align: center; font-size: .75rem; color: var(--light);
  margin-top: 12px; display: flex; align-items: center; justify-content: center; gap: 6px;
}
.form-success-msg {
  display: none; text-align: center;
  padding: 24px; background: #F0FDF4; border: 1.5px solid #BBF7D0;
  border-radius: 10px; margin-top: 16px;
}
.form-success-msg i { font-size: 2.4rem; color: #16A34A; margin-bottom: 10px; }
.form-success-msg p { font-size: .9rem; color: #15803D; font-weight: 500; }

/* Contact method cards */
.contact-methods-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--light);
  margin-top: 36px;
  margin-bottom: 12px;
}
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.contact-method:hover {
  border-color: var(--teal);
  box-shadow: 0 4px 18px rgba(0,151,167,.1);
  transform: translateX(4px);
}
.cm-icon {
  width: 42px; height: 42px;
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.cm-teal  { background: rgba(0,151,167,.12);  color: var(--teal); }
.cm-green { background: rgba(37,211,102,.12); color: #1DA851; }
.cm-navy  { background: rgba(21,42,74,.08);   color: var(--navy); }
.cm-text  { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.cm-text strong { font-size: .9rem; font-weight: 700; color: var(--navy); }
.cm-text span   { font-size: .78rem; color: var(--muted); }
.cm-arrow { font-size: .7rem; color: var(--light); margin-left: auto; flex-shrink: 0; transition: transform .2s; }
.contact-method:hover .cm-arrow { transform: translateX(3px); color: var(--teal); }

/* ===================================================
   NEDEN BİZ
   =================================================== */
.why-section {
  padding: clamp(72px,10vw,112px) 0;
  background: var(--navy);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(240px,100%), 1fr));
  gap: 24px;
}
.why-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r);
  padding: 32px 28px;
  transition: background .3s, border-color .3s, transform .3s;
}
.why-card:hover { background: rgba(255,255,255,.07); transform: translateY(-3px); border-color: rgba(0,151,167,.3); }
.why-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(0,151,167,.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal); font-size: 1.3rem;
  margin-bottom: 20px;
}
.why-card h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.why-card p { font-size: .88rem; color: rgba(255,255,255,.5); line-height: 1.75; }

/* ===================================================
   PARTNERS TICKER
   =================================================== */
.partners-section {
  padding: 48px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.partners-label {
  text-align: center; font-size: .72rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--light); margin-bottom: 24px;
}
.partners-scroll-wrap { overflow: hidden; position: relative; }
.partners-scroll-wrap::before,
.partners-scroll-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
}
.partners-scroll-wrap::before { left: 0; background: linear-gradient(to right, var(--white), transparent); }
.partners-scroll-wrap::after  { right: 0; background: linear-gradient(to left,  var(--white), transparent); }

.partners-track {
  display: flex; gap: 12px; width: max-content;
  animation: ticker 32s linear infinite;
}
.partner-chip {
  display: flex; align-items: center; justify-content: center;
  padding: 0 16px;
}
.partner-chip img {
  height: 64px; width: auto; max-width: 160px;
  object-fit: contain; display: block;
  filter: grayscale(1) opacity(.65);
  transition: filter .2s;
}
.partner-chip:hover img { filter: grayscale(0) opacity(1); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===================================================
   CTA BANNER
   =================================================== */
.cta-banner {
  background: #FFFFFF;
  padding: clamp(60px,8vw,96px) 0;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,151,167,.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.cta-text h2 {
  font-size: clamp(1.8rem,3.5vw,2.8rem);
  font-weight: 800;
  line-height: 1.15; letter-spacing: -.3px;
  margin-bottom: 14px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.cta-text h2 em {
  background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-style: normal;
}
.cta-text p { font-size: .95rem; color: var(--navy); line-height: 1.75; max-width: 440px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-cta-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--teal); color: #fff;
  padding: 15px 32px; border-radius: 10px;
  font-weight: 700; font-size: .92rem;
  box-shadow: 0 4px 24px var(--teal-glow);
  transition: all .25s;
}
.btn-cta-primary:hover { background: var(--teal-dark); transform: translateY(-2px); }

.btn-cta-outline {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--navy); font-size: .92rem; font-weight: 600;
  padding: 14px 28px; border: 1.5px solid var(--navy);
  border-radius: 10px; transition: all .25s;
}
.btn-cta-outline:hover { border-color: var(--navy); color: #fff; background: var(--navy); }

/* ===================================================
   FOOTER
   =================================================== */
.footer {
  background: var(--navy-dark);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand .logo-main { color: var(--teal); font-size: 1.4rem; display: block; margin-bottom: 3px; }
.footer-brand .logo-sub { color: rgba(255,255,255,.3); font-size: .6rem; letter-spacing: 2px; display: block; margin-bottom: 16px; }
.footer-brand p { font-size: .86rem; color: rgba(255,255,255,.4); line-height: 1.75; margin-bottom: 24px; }

.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.09);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); font-size: .88rem;
  transition: background .2s, color .2s, border-color .2s;
}
.social-btn:hover { background: var(--teal); color: #fff; border-color: var(--teal); }

.footer h4 { font-size: .8rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 20px; }

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .88rem; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-links a:hover { color: var(--teal); }

.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.f-contact-row { display: flex; align-items: flex-start; gap: 12px; }
.f-contact-row i { color: var(--teal); font-size: .88rem; margin-top: 3px; flex-shrink: 0; }
.f-contact-row span,
.f-contact-row a { font-size: .88rem; color: rgba(255,255,255,.5); line-height: 1.55; transition: color .2s; }
.f-contact-row a:hover { color: var(--teal); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.25); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: .8rem; color: rgba(255,255,255,.25); transition: color .2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,.55); }

/* ===================================================
   İÇ SAYFA — Solid Navbar
   =================================================== */
.navbar.solid {
  background: rgba(255,255,255,.96) !important;
  backdrop-filter: blur(16px) saturate(1.8);
  -webkit-backdrop-filter: blur(16px) saturate(1.8);
  box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(0,0,0,.06);
}
.navbar.solid .logo-main { color: var(--teal) !important; }
.navbar.solid .logo-sub  { color: var(--muted) !important; }
.navbar.solid .nav-link  { color: var(--text) !important; }
.navbar.solid .nav-cta { color: #fff !important; }
.navbar.solid .hamburger span { background: var(--text) !important; }

/* ===================================================
   PAGE HERO (İç sayfa başlık bandı)
   =================================================== */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  padding: calc(var(--nav-h) + 56px) 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: -30%; right: -5%;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(0,151,167,.15) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero h1 {
  font-size: clamp(2rem,4vw,3.2rem);
  font-weight: 800; color: #fff;
  letter-spacing: -.3px; line-height: 1.15;
  margin: 12px 0 16px;
}
.page-hero p {
  font-size: 1rem; color: rgba(255,255,255,.6);
  line-height: 1.75; max-width: 560px;
}

/* Breadcrumb */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: .78rem; color: rgba(255,255,255,.45);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,.55); transition: color .2s; }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb i { font-size: .6rem; }

/* ===================================================
   İÇ SAYFA — Section Yardımcıları
   =================================================== */
.inner-section { padding: clamp(64px,9vw,100px) 0; }
.inner-section.bg-off   { background: var(--off); }
.inner-section.bg-white { background: var(--white); }

/* ===================================================
   HAKKIMIZDA
   =================================================== */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.about-img-block { position: relative; }
.about-img-ph {
  width: 100%; aspect-ratio: 1; max-width: 420px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.15); font-size: 5rem;
}
.about-float-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--teal); border-radius: 14px;
  padding: 16px 20px; text-align: center;
  box-shadow: 0 8px 32px var(--teal-glow);
}
.about-float-badge .n { font-size: 2.2rem; font-weight: 800; color: #fff; line-height: 1; }
.about-float-badge .l { font-size: .7rem; font-weight: 600; color: rgba(255,255,255,.7); letter-spacing: 1px; margin-top: 4px; }

.about-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-top: 32px;
}
.about-stat {
  background: var(--off); border: 1.5px solid var(--border);
  border-radius: 12px; padding: 16px;
}
.about-stat .v { font-size: 1.6rem; font-weight: 800; color: var(--teal); line-height: 1; margin-bottom: 4px; }
.about-stat .l { font-size: .75rem; color: var(--muted); font-weight: 500; }

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.value-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 16px; padding: 32px; text-align: center;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.value-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.08); border-color: var(--teal); }
.value-card > i { font-size: 1.8rem; color: var(--teal); margin-bottom: 16px; display: block; }
.value-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.value-card p  { font-size: .88rem; color: var(--muted); line-height: 1.75; }

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px,1fr));
  gap: 24px;
}
.team-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 16px; overflow: hidden; text-align: center;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.team-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.08); }
.team-photo {
  height: 160px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.2); font-size: 3rem;
}
.team-info { padding: 16px 12px; }
.team-info h4 { font-size: .92rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.team-info span { font-size: .78rem; color: var(--muted); }

/* Partners grid — renkli logolar */
.partners-grid-colored {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.partner-logo {
  display: flex; align-items: center; justify-content: center;
  height: 80px;
  transition: transform .2s;
}
.partner-logo img {
  height: 100%; width: auto; max-width: 100%;
  object-fit: contain; display: block;
}
.partner-logo:hover { transform: scale(1.05); }

/* Partners static grid — eski versiyon (gerekirse) */
.partners-grid-static {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px,1fr));
  gap: 10px;
}
.partner-chip-static {
  height: 70px; display: flex; align-items: center; justify-content: center;
  transition: opacity .2s;
}
.partner-chip-static img {
  max-height: 100%; max-width: 100%; object-fit: contain;
  filter: grayscale(1) opacity(.65);
  transition: filter .2s;
}
.partner-chip-static:hover img { filter: grayscale(0) opacity(1); }

/* ===================================================
   HİZMETLERİMİZ
   =================================================== */
.svc-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(340px,100%),1fr));
  gap: 24px;
}
.svc-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 16px; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.09); border-color: var(--teal); }
.svc-card-head {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 22px 28px; display: flex; align-items: center; gap: 14px;
}
.svc-card-head .ico {
  width: 42px; height: 42px; border-radius: 11px;
  background: rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal); font-size: 1rem; flex-shrink: 0;
}
.svc-card-head h3 { font-size: .97rem; font-weight: 700; color: #fff; line-height: 1.3; }
.svc-card-body { padding: 22px 28px 28px; }
.svc-card-body > p { font-size: .87rem; color: var(--muted); line-height: 1.75; margin-bottom: 16px; }
.coverage { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.cov-item { display: flex; align-items: center; gap: 10px; font-size: .83rem; color: var(--text); }
.cov-item i { color: var(--teal); font-size: .68rem; flex-shrink: 0; width: 14px; }
.btn-svc {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal); color: #fff;
  padding: 11px 20px; border-radius: 9px;
  font-size: .87rem; font-weight: 700;
  transition: background .2s, transform .15s;
  box-shadow: 0 3px 12px var(--teal-glow);
}
.btn-svc:hover { background: var(--teal-dark); transform: translateY(-1px); }

/* ===================================================
   İLETİŞİM
   =================================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 32px; align-items: flex-start;
}
.contact-info-card {
  background: var(--navy); border-radius: 16px;
  padding: 36px; color: #fff;
}
.contact-info-card h2 { font-size: 1.4rem; font-weight: 700; margin-bottom: 8px; }
.contact-info-card > p { font-size: .88rem; color: rgba(255,255,255,.5); margin-bottom: 28px; }
.c-info-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.c-info-item .icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(0,151,167,.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal); font-size: .9rem; flex-shrink: 0;
}
.c-info-item h4 { font-size: .72rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 4px; }
.c-info-item p, .c-info-item a { font-size: .88rem; color: rgba(255,255,255,.7); line-height: 1.6; transition: color .2s; }
.c-info-item a:hover { color: var(--teal); }
.c-wa-link {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff;
  padding: 13px 22px; border-radius: 10px;
  font-weight: 700; font-size: .9rem; margin-top: 8px;
  transition: background .2s, transform .15s;
}
.c-wa-link:hover { background: #1DAA57; transform: translateY(-1px); }

.contact-form-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 16px; padding: 36px;
}
.contact-form-card h2 { font-size: 1.4rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.contact-form-card > p { font-size: .88rem; color: var(--muted); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; position: relative; }
.form-group label {
  display: block; font-size: .72rem; font-weight: 700;
  color: var(--navy); letter-spacing: .8px; text-transform: uppercase; margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--border); border-radius: 9px;
  font-size: .92rem; color: var(--text); background: var(--white);
  font-family: var(--body);
  transition: border-color .2s, box-shadow .2s;
  outline: none; appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748B' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; cursor: pointer;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-soft); }
.error-msg { display: none; font-size: .75rem; color: #EF4444; margin-top: 5px; }
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea { border-color: #EF4444; }
.form-group.has-error .error-msg { display: block; }
.form-submit-btn {
  width: 100%; padding: 15px;
  background: var(--teal); color: #fff;
  border-radius: 10px; font-size: .95rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--body);
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 20px var(--teal-glow);
  cursor: pointer; border: none;
}
.form-submit-btn:hover { background: var(--teal-dark); transform: translateY(-1px); }
.form-submit-btn:disabled { opacity: .7; cursor: not-allowed; transform: none; }
.form-success {
  display: none; text-align: center; padding: 24px;
  background: #F0FDF4; border: 1.5px solid #BBF7D0;
  border-radius: 10px; margin-top: 16px;
  color: #15803D; font-weight: 500; font-size: .9rem;
}
.form-success i { font-size: 2.2rem; display: block; margin-bottom: 8px; color: #16A34A; }
.map-placeholder {
  margin-top: 32px; height: 280px;
  background: var(--off); border: 1.5px dashed var(--border);
  border-radius: 16px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  color: var(--muted);
}
.map-placeholder i { font-size: 2rem; color: var(--light); }
.map-placeholder span { font-size: .9rem; font-weight: 500; }

/* Responsive — inner pages (merged below) */

/* ===================================================
   WhatsApp FAB
   =================================================== */
.wa-fab { position: fixed; bottom: 28px; right: 28px; z-index: 300; }
.wa-btn {
  width: 56px; height: 56px; border-radius: 16px;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 24px rgba(37,211,102,.4);
  transition: transform .2s var(--spring), box-shadow .2s;
}
.wa-btn:hover { transform: scale(1.08); box-shadow: 0 8px 32px rgba(37,211,102,.5); }

/* ===================================================
   SCROLL REVEAL
   =================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .12s; }
.reveal-d2 { transition-delay: .24s; }

/* ===================================================
   RESPONSIVE — TAM KAPSAMLI
   =================================================== */

/* ---- 1024px: Tablet yatay ---- */
@media (max-width: 1024px) {
  /* Quote */
  .quote-layout { grid-template-columns: 1fr; gap: 40px; }
  .quote-info { grid-column: 1; }
  .quote-form-wrap { grid-column: 1; max-width: none; }
  .maps-container { grid-column: 1; margin-top: 40px; }
  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  /* İç sayfa hizmetler */
  .svc-detail-grid { grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); }
}

/* ---- 960px: Tablet ---- */
@media (max-width: 960px) {
  /* Hakkımızda */
  .about-story { grid-template-columns: 1fr; gap: 40px; }
  .about-img-block { display: none; }
  /* İletişim */
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info-card { order: 2; }
  .contact-form-card { order: 1; }
}

/* ---- 900px: Mobil nav ---- */
@media (max-width: 900px) {
  :root { --nav-h: 68px; }
  .nav-logo-img { height: 52px; }
  .footer-logo-img { height: 80px; }
  .hamburger { display: flex; }
  .nav-menu {
    position: fixed; inset: 0;
    background: var(--navy-dark);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 6px;
    transform: translateX(100%);
    transition: transform .4s var(--ease);
    z-index: 150;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-link { font-size: 1.15rem; color: rgba(255,255,255,.8) !important; padding: 13px 28px; }
  .nav-link:hover { color: #fff !important; background: rgba(255,255,255,.07) !important; }
  .nav-cta {
    background: var(--teal) !important;
    border-radius: 10px !important;
    margin-top: 10px;
    box-shadow: 0 4px 20px var(--teal-glow) !important;
  }
}

/* ---- 768px: Tablet dikey / büyük telefon ---- */
@media (max-width: 768px) {
  /* Hero */
  .slide-content { margin-left: 24px; margin-right: 24px; max-width: 100%; padding-top: calc(var(--nav-h) + 16px); }
  .slide-title { font-size: clamp(1.7rem,6vw,2.2rem); }
  .slide-sub { font-size: .92rem; }
  .slide-progress { bottom: 54px; }

  /* Category bar — sadece ikonlar */
  .cat-btn span { display: none; }
  .cat-btn { padding: 14px 16px; min-width: 50px; }
  .cat-btn i { font-size: 1.15rem; }

  /* Scroll hint */
  .scroll-hint { display: none; }

  /* Stats band */
  .stats-grid { flex-wrap: wrap; justify-content: center; gap: 0; }
  .stat-item { padding: 10px 22px; width: 50%; flex-direction: column; }
  .stat-divider { display: none; }
  .hero-slider { min-height: 560px; }

  /* Services carousel */
  .services-track {
    padding-inline: 20px;
  }
  .svc-arrow { display: none; }

  /* Quote */
  .quote-info h2 { font-size: 1.8rem; }
  .contact-methods { gap: 8px; }

  /* Why */
  .why-grid { grid-template-columns: 1fr 1fr; }

  /* CTA */
  .cta-inner { flex-direction: column; align-items: flex-start; gap: 28px; }
  .cta-text h2 { font-size: 1.75rem; }
  .cta-actions { flex-direction: column; width: 100%; }
  .btn-cta-primary, .btn-cta-outline { width: 100%; justify-content: center; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }

  /* Inner page */
  .page-hero { padding: calc(var(--nav-h) + 36px) 0 48px; }
  .page-hero h1 { font-size: clamp(1.7rem,6vw,2.4rem); }
  .inner-section { padding: 56px 0; }
  .svc-detail-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}

/* ---- 640px: Orta boy telefon ---- */
@media (max-width: 640px) {
  /* Quote form */
  .quote-form-wrap { padding: 24px; }

  /* Why grid */
  .why-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }

  /* Inner pages */
  .form-row { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .partners-grid-static { grid-template-columns: repeat(auto-fill, minmax(120px,1fr)); }
  .partners-grid-colored { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .contact-form-card { padding: 24px; }
  .contact-info-card { padding: 24px; }
  .c-wa-link { display: flex; justify-content: center; }
  .svc-card-head { padding: 18px 20px; }
  .svc-card-body { padding: 18px 20px 24px; }
}

/* ---- 480px: Küçük telefon ---- */
@media (max-width: 480px) {
  /* Hero */
  .hero-slider { min-height: 500px; }
  .slide-actions { flex-direction: column; align-items: stretch; }
  .btn-slide-primary, .btn-slide-ghost { width: 100%; justify-content: center; }
  .slide-content { margin-left: 20px; margin-right: 20px; }
  .slide-progress { bottom: 48px; }

  /* Service carousel cards */
  .service-card { min-width: 300px; width: 300px; }
  .sc-img { height: 200px; }

  /* Stats */
  .stat-item { padding: 10px 16px; width: 50%; }
  .stat-item strong { font-size: 1.6rem; }

  /* Quote */
  .quote-layout { gap: 24px; }
  .contact-methods-label { margin-top: 24px; }

  /* CTA */
  .cta-banner { padding: 48px 0; }

  /* Footer */
  .footer { padding-top: 52px; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 12px; }

  /* Inner pages */
  .page-hero { padding: calc(var(--nav-h) + 24px) 0 36px; }
  .inner-section { padding: 44px 0; }
  .svc-card-head { padding: 18px 20px; }
  .svc-card-body { padding: 18px 20px 22px; }
  .about-stats { grid-template-columns: 1fr 1fr; gap: 10px; }
  .about-stat { padding: 12px; }
  .about-stat .v { font-size: 1.3rem; }
  .map-placeholder { height: 200px; }
  .partners-grid-static { grid-template-columns: repeat(3,1fr); }
  .partners-grid-colored { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .team-photo { height: 120px; font-size: 2.2rem; }
  .value-card { padding: 24px 20px; }

  /* Scroll reveal — hız artır mobilde */
  .reveal { transition-duration: .45s; }
  .reveal-d1 { transition-delay: .06s; }
  .reveal-d2 { transition-delay: .12s; }

  /* Section head */
  .section-head { margin-bottom: 36px; }

  /* Buttons minimum touch target */
  .btn-slide-primary, .btn-slide-ghost,
  .f-submit, .form-submit-btn,
  .btn-cta-primary, .btn-cta-outline { min-height: 48px; }
}

/* ---- 360px: En küçük telefon ---- */
@media (max-width: 360px) {
  .service-card { min-width: 270px; width: 270px; }
  .sc-img { height: 180px; }
  .partners-grid-static { grid-template-columns: repeat(2,1fr); }
  .partners-grid-colored { grid-template-columns: repeat(2, 1fr); }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .stat-item { padding: 8px 12px; width: 50%; }
  .cat-btn { padding: 12px 14px; min-width: 44px; }
  .wa-fab { bottom: 20px; right: 16px; }
  .wa-btn { width: 48px; height: 48px; font-size: 1.25rem; border-radius: 12px; }
  .slide-title { font-size: clamp(1.4rem,5.5vw,1.8rem); }
  .slide-sub { font-size: .85rem; }
  .btn-slide-primary { padding: 13px 20px; font-size: .87rem; }
  .btn-slide-ghost { padding: 12px 18px; font-size: .83rem; }
}