/* ═══════════════════════════════════════════════════
   07 SİGORTA — v20 PREMIUM STYLESHEET
   Fixed header | Dark Navy Always | Bright Gold
═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --ink:        #0A0E17;
  --navy:       #0B1D38;
  --navy-2:     #142847;
  --navy-3:     #1C3460;
  --gold:       #C9A55A;
  --gold-2:     #E8C97A;
  --gold-3:     #F5DFA0;
  --gold-pale:  #FBF6EC;
  --gold-grad:  linear-gradient(135deg, #B8922A 0%, #E8C97A 35%, #F5DFA0 55%, #D4A840 75%, #A07820 100%);
  --gold-grad-h:linear-gradient(135deg, #C9A040 0%, #F0D890 35%, #FFF0C0 55%, #E0BA50 75%, #B08020 100%);
  --gold-shine: linear-gradient(105deg, #8B6914 0%, #C9A040 20%, #F5E08C 40%, #FFE88A 50%, #F0D060 60%, #C49030 80%, #8B6914 100%);
  --gold-glow:  rgba(201,165,90,.4);
  --white:      #FFFFFF;
  --off-white:  #F8F7F4;
  --light-gray: #F1EFE9;
  --border-l:   #E2DDD4;
  --border-d:   rgba(255,255,255,.1);
  --muted-l:    #6B6560;
  --muted-d:    rgba(255,255,255,.6);
  --green:      #25D366;
  --header-h:   76px;

  --f-serif: 'Playfair Display', Georgia, serif;
  --f-sans:  'DM Sans', sans-serif;
  --ease:    cubic-bezier(.4,0,.2,1);
  --spring:  cubic-bezier(.34,1.56,.64,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-sans);
  background: var(--white);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
button { font-family: var(--f-sans); cursor: pointer; border: none; background: none; }

.wrap   { max-width: 1280px; margin: 0 auto; padding: 0 56px; }
.wrap-s { max-width:  960px; margin: 0 auto; padding: 0 56px; }

/* ════════════════════════════════════
   HEADER — always fixed, always dark navy
════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: var(--navy);
  box-shadow: 0 2px 24px rgba(0,0,0,.35);
  transition: background .3s var(--ease), box-shadow .3s;
}
.site-header.scrolled {
  background: rgba(11,29,56,.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 32px rgba(0,0,0,.45);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h); gap: 32px;
  max-width: 1280px; margin: 0 auto; padding: 0 56px;
}
.site-header__logo img { height: 44px; width: auto; }

.header-nav {
  display: flex; align-items: center; gap: 2px;
  flex: 1; justify-content: flex-end; margin-right: 12px;
}
.header-nav a {
  font-size: 13.5px; font-weight: 500; letter-spacing: .2px;
  color: rgba(255,255,255,.8); padding: 8px 14px; border-radius: 6px;
  transition: color .2s, background .2s;
}
.header-nav a:hover,
.header-nav a.current-menu-item { color: var(--gold-2); background: rgba(255,255,255,.07); }

/* Gold CTA button — always shiny */
.btn-nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-grad);
  color: #3A2200;
  font-size: 13px; font-weight: 700; letter-spacing: .3px;
  padding: 11px 24px; border-radius: 8px; white-space: nowrap;
  box-shadow: 0 2px 12px rgba(201,165,90,.4), inset 0 1px 0 rgba(255,255,255,.3);
  transition: all .22s var(--ease);
  position: relative; overflow: hidden;
}
.btn-nav-cta::after {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
  transition: left .5s var(--ease);
}
.btn-nav-cta:hover { background: var(--gold-grad-h); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(201,165,90,.55), inset 0 1px 0 rgba(255,255,255,.4); }
.btn-nav-cta:hover::after { left: 150%; }

/* ════════════════════════════════════
   MEGA NAV — sticky below header
════════════════════════════════════ */
.mega-nav {
  position: sticky;
  top: var(--header-h);
  z-index: 990;
  background: var(--navy-2);
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
  overflow: visible;
}
.mega-nav__inner {
  display: flex; align-items: stretch; gap: 0;
  max-width: 1280px; margin: 0 auto; padding: 0 56px;
  overflow-x: auto; overflow-y: visible; scrollbar-width: none;
}
.mega-nav__inner::-webkit-scrollbar { display: none; }
.mega-item { position: relative; }
.mega-trigger {
  display: flex; align-items: center; gap: 8px;
  padding: 0 22px; height: 48px;
  font-size: 13px; font-weight: 600; letter-spacing: .3px;
  color: rgba(255,255,255,.75); background: none; border: none;
  border-bottom: 2px solid transparent; cursor: pointer; white-space: nowrap;
  transition: color .18s, border-color .18s, background .18s;
}
.mega-trigger__icon {
  width: 22px; height: 22px; border-radius: 5px;
  background: rgba(201,165,90,.15);
  display: flex; align-items: center; justify-content: center; font-size: 12px;
}
.mega-trigger__arrow { width: 10px; height: 10px; margin-left: 2px; transition: transform .22s var(--ease); }
.mega-item:hover .mega-trigger { color: var(--gold-2); border-bottom-color: var(--gold); background: rgba(255,255,255,.05); }
.mega-item:hover .mega-trigger__arrow { transform: rotate(180deg); }
.mega-panel {
  position: absolute; top: calc(100% + 1px); left: 0; min-width: 220px;
  background: var(--navy-2); border: 1px solid rgba(201,165,90,.2);
  border-top: 2px solid var(--gold); border-radius: 0 0 12px 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,.4); padding: 8px 0;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .2s, transform .2s, visibility .2s; z-index: 99999; pointer-events: none;
}
.mega-item:hover .mega-panel { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
.mega-panel a {
  display: flex; align-items: center; gap: 9px; padding: 10px 20px;
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,.7);
  transition: color .14s, background .14s, padding-left .14s;
}
.mega-panel a::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); opacity: .5; flex-shrink: 0; }
.mega-panel a:hover { color: var(--gold-2); background: rgba(255,255,255,.06); padding-left: 26px; }
.mega-panel a:hover::before { opacity: 1; }

/* ════════════════════════════════════
   GOLD BUTTONS — premium shiny
════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--f-sans); font-weight: 700; letter-spacing: .2px;
  border-radius: 8px; cursor: pointer; border: none;
  transition: all .22s var(--ease); white-space: nowrap; text-decoration: none;
  position: relative; overflow: hidden;
}
.btn-lg  { font-size: 15px; padding: 16px 36px; }
.btn-md  { font-size: 13.5px; padding: 12px 26px; }
.btn-sm  { font-size: 12px; padding: 9px 18px; }

.btn-gold {
  background: var(--gold-grad);
  color: #3A2200;
  box-shadow: 0 4px 18px rgba(201,165,90,.45), inset 0 1px 0 rgba(255,255,255,.35);
}
.btn-gold::before {
  content: '';
  position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
  transition: left .55s var(--ease);
}
.btn-gold:hover { background: var(--gold-grad-h); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(201,165,90,.6), inset 0 1px 0 rgba(255,255,255,.4); }
.btn-gold:hover::before { left: 150%; }

.btn-dark { background: var(--navy); color: var(--white); border: 1px solid rgba(255,255,255,.1); }
.btn-dark:hover { background: var(--navy-3); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,.3); }

.btn-outline-dark { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline-dark:hover { background: var(--navy); color: var(--white); transform: translateY(-1px); }

.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.35); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: var(--white); }

.btn-wa { background: var(--green); color: var(--white); }
.btn-wa:hover { background: #20bf5e; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(37,211,102,.4); }

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ════════════════════════════════════
   SECTIONS
════════════════════════════════════ */
.section { padding: 100px 0; }
.section--light { background: var(--white); }
.section--off   { background: var(--off-white); }
.section--dark  { background: var(--navy); color: var(--white); }
.section--navy  { background: var(--navy-2); color: var(--white); }
.section-compact { padding: 72px 0; }

.kicker { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.kicker__line { width: 28px; height: 2px; background: var(--gold); flex-shrink: 0; border-radius: 2px; }
.kicker__text { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); }
.kicker--center { display: flex; justify-content: center; }

.section-title { font-family: var(--f-serif); font-weight: 600; line-height: 1.1; letter-spacing: -.3px; margin-bottom: 18px; color: inherit; }
.section-title em { font-style: italic; font-weight: 400; color: var(--gold); }
.t-xl { font-size: clamp(36px, 4.5vw, 62px); }
.t-lg { font-size: clamp(28px, 3.5vw, 48px); }
.t-md { font-size: clamp(22px, 2.5vw, 34px); }

.section-lead { font-size: 16px; line-height: 1.85; color: var(--muted-l); max-width: 500px; }
.section-lead--dark { color: var(--muted-d); }
.section-header-center { text-align: center; margin-bottom: 72px; }
.section-header-center .section-lead { margin: 0 auto; }

/* ════════════════════════════════════
   SERVICE CARDS
════════════════════════════════════ */
.svc-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.svc-card {
  background: var(--white); border-radius: 18px; overflow: hidden;
  border: 1px solid var(--border-l);
  transition: box-shadow .32s var(--ease), transform .32s var(--ease), border-color .3s;
  cursor: pointer;
}
.svc-card:hover { transform: translateY(-7px); box-shadow: 0 24px 72px rgba(10,14,23,.12); border-color: var(--gold); }
.svc-card__visual { position: relative; height: 200px; overflow: hidden; }
.svc-card__visual-img {
  width: 100%; height: 100%; object-fit: cover; background-size: cover; background-position: center;
  transition: transform .6s var(--ease);
}
.svc-card:hover .svc-card__visual-img { transform: scale(1.07); }
.svc-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,14,23,.6) 100%);
}
.svc-card__tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--gold-grad); color: #3A2200;
  font-size: 10px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 20px;
  box-shadow: 0 2px 8px rgba(201,165,90,.4);
}
.svc-card__body { padding: 20px 22px 16px; }
.svc-card__name { font-family: var(--f-serif); font-size: 20px; font-weight: 600; color: var(--ink); margin-bottom: 10px; }
.svc-card__list { display: flex; flex-direction: column; gap: 5px; margin-bottom: 16px; }
.svc-card__list li { font-size: 13px; font-weight: 500; color: var(--muted-l); display: flex; align-items: center; gap: 8px; }
.svc-card__list li::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.svc-card__foot {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 22px; background: var(--off-white); border-top: 1px solid var(--border-l);
  font-size: 12px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase;
  color: var(--muted-l); transition: background .2s, color .2s;
}
.svc-card:hover .svc-card__foot { background: var(--gold-pale); color: var(--navy); }
.svc-card__foot svg { width: 13px; height: 13px; transition: transform .2s; }
.svc-card:hover .svc-card__foot svg { transform: translateX(5px); }

/* ════════════════════════════════════
   SPLIT SECTIONS
════════════════════════════════════ */
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; min-height: 520px; }
.split--reverse .split__visual { order: 1; }
.split--reverse .split__content { order: 0; }
.split__visual { position: relative; overflow: hidden; min-height: 480px; }
.split__visual-bg { width: 100%; height: 100%; background-size: cover; background-position: center; transition: transform .8s var(--ease); }
.split:hover .split__visual-bg { transform: scale(1.03); }
.split__content { display: flex; flex-direction: column; justify-content: center; padding: 72px 64px; }
.split__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-pale); border: 1px solid rgba(201,165,90,.25);
  border-radius: 100px; padding: 6px 16px;
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px; width: fit-content;
}
.split__badge--dark {
  background: rgba(201,165,90,.12); border-color: rgba(201,165,90,.25); color: var(--gold-2);
}
.split__title { font-family: var(--f-serif); font-size: clamp(26px, 2.8vw, 40px); font-weight: 600; line-height: 1.15; margin-bottom: 18px; }
.split__title em { font-style: italic; font-weight: 400; color: var(--gold); }
.split__text { font-size: 15px; line-height: 1.85; margin-bottom: 28px; }
.split__list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.split__list-item { display: flex; align-items: flex-start; gap: 14px; }
.split__list-check {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0; margin-top: 1px;
  background: var(--gold-grad);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(201,165,90,.35);
}
.split__list-check svg { width: 12px; height: 12px; stroke: #3A2200; fill: none; }
.split__list-text { font-size: 14px; font-weight: 500; line-height: 1.6; }

/* ════════════════════════════════════
   WHY CARDS
════════════════════════════════════ */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card {
  background: var(--white); border: 1px solid var(--border-l);
  border-radius: 20px; padding: 40px 34px; position: relative; overflow: hidden;
  transition: box-shadow .3s, transform .3s, border-color .3s;
}
.why-card::after {
  content: attr(data-num);
  font-family: var(--f-serif); font-size: 120px; font-weight: 700;
  color: rgba(201,165,90,.05); position: absolute; bottom: -30px; right: 10px;
  line-height: 1; pointer-events: none;
}
.why-card:hover { box-shadow: 0 20px 60px rgba(10,14,23,.09); transform: translateY(-5px); border-color: var(--gold); }
.why-num { font-size: 11px; font-weight: 700; letter-spacing: 3px; color: var(--gold); text-transform: uppercase; margin-bottom: 20px; }
.why-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--gold-pale); border: 1px solid rgba(201,165,90,.2);
  display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 20px;
  transition: transform .3s var(--spring), background .3s, box-shadow .3s;
}
.why-card:hover .why-icon { transform: scale(1.1) rotate(-6deg); background: var(--gold-grad); box-shadow: 0 4px 16px rgba(201,165,90,.4); }
.why-title { font-family: var(--f-serif); font-size: 22px; font-weight: 600; color: var(--ink); margin-bottom: 12px; }
.why-desc  { font-size: 14px; line-height: 1.8; color: var(--muted-l); }

/* ════════════════════════════════════
   STATS STRIP (dark navy)
════════════════════════════════════ */
.stats-strip { background: var(--navy); }
.stats-strip__inner { display: grid; grid-template-columns: repeat(4, 1fr); max-width: 1280px; margin: 0 auto; }
.stat-box {
  padding: 52px 40px; border-right: 1px solid rgba(255,255,255,.07);
  position: relative; overflow: hidden; transition: background .3s;
}
.stat-box:last-child { border-right: none; }
.stat-box:hover { background: rgba(255,255,255,.04); }
.stat-box__num { font-family: var(--f-serif); font-size: 52px; font-weight: 700; color: var(--white); line-height: 1; margin-bottom: 6px; }
.stat-box__num span {
  color: var(--gold);
}
.stat-box__label { font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,.45); }
.stat-box__icon { position: absolute; top: 36px; right: 32px; font-size: 34px; opacity: .08; transition: opacity .3s, transform .3s; }
.stat-box:hover .stat-box__icon { opacity: .14; transform: scale(1.1); }

/* ════════════════════════════════════
   PARTNER LOGOS
════════════════════════════════════ */
.partners-strip {
  background: var(--off-white); padding: 36px 0;
  border-top: 1px solid var(--border-l); border-bottom: 1px solid var(--border-l); overflow: hidden;
}
.partners-label {
  text-align: center; font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--muted-l); margin-bottom: 24px;
}
.partners-track {
  display: flex; gap: 16px; align-items: center;
  animation: marquee 30s linear infinite; width: max-content;
}
.partners-track:hover { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.partner-logo {
  display: flex; align-items: center; justify-content: center;
  padding: 12px 24px; background: var(--white); border-radius: 10px;
  border: 1px solid var(--border-l);
  font-size: 13.5px; font-weight: 700; color: var(--muted-l); white-space: nowrap;
  min-width: 130px; height: 52px;
  transition: border-color .2s, color .2s, box-shadow .2s;
}
.partner-logo:hover { border-color: var(--gold); color: var(--navy); box-shadow: 0 4px 16px rgba(201,165,90,.15); }

/* ════════════════════════════════════
   REVIEWS
════════════════════════════════════ */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.rev-card {
  background: var(--white); border: 1px solid var(--border-l);
  border-radius: 20px; padding: 32px 28px; position: relative;
  transition: box-shadow .3s, transform .3s, border-color .3s;
}
.rev-card:hover { box-shadow: 0 20px 60px rgba(10,14,23,.1); transform: translateY(-5px); border-color: var(--gold); }
.rev-quote-mark { font-family: var(--f-serif); font-size: 72px; line-height: .7; color: var(--gold); opacity: .15; position: absolute; top: 20px; right: 22px; }
.rev-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.rev-stars svg { width: 14px; height: 14px; fill: var(--gold); }
.rev-text { font-size: 14px; line-height: 1.85; color: var(--muted-l); margin-bottom: 22px; font-style: italic; }
.rev-author { display: flex; align-items: center; gap: 12px; }
.rev-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold-grad);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-serif); font-size: 14px; font-weight: 600; color: #3A2200; flex-shrink: 0;
}
.rev-name { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.rev-via  { font-size: 11px; color: var(--muted-l); }

/* ════════════════════════════════════
   FAQ
════════════════════════════════════ */
.faq-list { border-top: 1px solid var(--border-l); }
.faq-item { border-bottom: 1px solid var(--border-l); }
.faq-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; gap: 20px; font-size: 15px; font-weight: 600; color: var(--ink);
  background: none; border: none; cursor: pointer; text-align: left; transition: color .18s;
}
.faq-trigger:hover { color: var(--gold); }
.faq-icon {
  width: 34px; height: 34px; border-radius: 50%; border: 1.5px solid var(--border-l);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all .22s; background: var(--white);
}
.faq-icon svg { width: 13px; height: 13px; stroke: var(--muted-l); transition: transform .22s, stroke .18s; }
.faq-item.open .faq-icon { background: var(--gold-grad); border-color: var(--gold); box-shadow: 0 2px 8px rgba(201,165,90,.35); }
.faq-item.open .faq-icon svg { stroke: #3A2200; transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 60px 22px 0; font-size: 14px; line-height: 1.85; color: var(--muted-l); }
.faq-item.open .faq-answer { display: block; }

/* ════════════════════════════════════
   CTA BAND
════════════════════════════════════ */
.cta-band {
  background: var(--navy); padding: 100px 0; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; top: -200px; right: -150px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,165,90,.1) 0%, transparent 65%);
  pointer-events: none;
}
.cta-band__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 80px; }
.cta-band__kicker { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.cta-band__title { font-family: var(--f-serif); font-size: clamp(32px, 4vw, 56px); font-weight: 700; line-height: 1.1; color: white; margin-bottom: 14px; }
.cta-band__title em { font-style: italic; font-weight: 400; color: var(--gold-2); }
.cta-band__sub { font-size: 15.5px; color: rgba(255,255,255,.6); line-height: 1.7; }
.cta-band__btns { display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; min-width: 240px; }

/* ════════════════════════════════════
   FOOTER
════════════════════════════════════ */
.site-footer { background: #060A12; padding: 80px 0 32px; color: rgba(255,255,255,.45); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 56px; margin-bottom: 60px; }
.footer-logo img { height: 40px; width: auto; margin-bottom: 18px; }
.footer-about { font-size: 13.5px; line-height: 1.75; max-width: 250px; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 9px; }
.footer-social {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center; font-size: 15px;
  transition: background .2s, transform .2s;
}
.footer-social:hover { background: var(--gold-grad); transform: translateY(-2px); }
.footer-col-title {
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px; display: block;
}
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links li a { font-size: 13.5px; color: rgba(255,255,255,.45); display: inline-flex; align-items: center; gap: 7px; transition: color .15s; }
.footer-links li a::before { content: ''; width: 3px; height: 3px; border-radius: 50%; background: var(--gold); opacity: .5; }
.footer-links li a:hover { color: var(--gold-2); }
.footer-contact-item { margin-bottom: 14px; }
.footer-contact-label { font-size: 9.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 3px; }
.footer-contact-val { font-size: 13.5px; color: rgba(255,255,255,.6); }
.footer-contact-val a:hover { color: var(--gold-2); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 12px; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,.3); cursor: pointer; transition: color .15s; }
.footer-bottom-links a:hover { color: var(--gold-2); }

/* ════════════════════════════════════
   WA FAB
════════════════════════════════════ */
.wa-fab {
  position: fixed; bottom: 32px; right: 32px; width: 60px; height: 60px; border-radius: 50%;
  background: var(--green); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(37,211,102,.4); z-index: 800; transition: transform .22s var(--spring), box-shadow .22s;
}
.wa-fab:hover { transform: scale(1.1); box-shadow: 0 16px 48px rgba(37,211,102,.5); }
.wa-fab svg { width: 28px; height: 28px; fill: white; }
.wa-fab__ring { position: absolute; inset: -6px; border-radius: 50%; border: 2px solid rgba(37,211,102,.25); animation: ring 3s ease-out infinite; }
@keyframes ring { 0%{transform:scale(1);opacity:.6} 100%{transform:scale(1.65);opacity:0} }

/* ════════════════════════════════════
   MODAL
════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(10,14,23,.75); backdrop-filter: blur(12px);
  z-index: 9000; display: flex; align-items: center; justify-content: center;
  padding: 24px; opacity: 0; visibility: hidden; transition: opacity .22s, visibility .22s;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-box {
  background: var(--white); border-radius: 22px;
  max-width: 620px; width: 100%; max-height: 86vh; overflow-y: auto;
  padding: 48px 44px; position: relative;
  transform: translateY(16px) scale(.97); transition: transform .28s var(--ease);
}
.modal-overlay.open .modal-box { transform: none; }
.modal-close {
  position: absolute; top: 18px; right: 18px; width: 36px; height: 36px; border-radius: 50%;
  background: var(--light-gray); border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--muted-l); cursor: pointer; transition: background .14s;
}
.modal-close:hover { background: var(--navy); color: white; }
.modal-title { font-family: var(--f-serif); font-size: 24px; font-weight: 600; color: var(--ink); margin-bottom: 20px; padding-right: 44px; }
.modal-body  { font-size: 13.5px; color: var(--muted-l); line-height: 1.85; }
.modal-body h3 { font-size: 12px; font-weight: 700; color: var(--ink); margin: 18px 0 6px; text-transform: uppercase; letter-spacing: 1px; }
.modal-body p  { margin-bottom: 10px; }
.modal-hr { border: none; border-top: 1px solid var(--border-l); margin: 20px 0; }

/* ════════════════════════════════════
   FORM ELEMENTS
════════════════════════════════════ */
.form-label { display: block; font-size: 10.5px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; color: var(--ink); margin-bottom: 6px; }
.form-input, .form-textarea {
  width: 100%; padding: 0 16px; height: 50px;
  background: var(--off-white); border: 1.5px solid var(--border-l); border-radius: 10px;
  font-family: var(--f-sans); font-size: 14px; font-weight: 500; color: var(--ink); outline: none;
  transition: border-color .18s, box-shadow .18s, background .18s;
}
.form-textarea { height: auto; padding: 14px 16px; resize: vertical; min-height: 100px; }
.form-input::placeholder, .form-textarea::placeholder { color: #C5BFB8; font-weight: 400; }
.form-input:focus, .form-textarea:focus { border-color: var(--gold); background: white; box-shadow: 0 0 0 3px rgba(201,165,90,.15); }
.form-field { margin-bottom: 14px; }
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-consent { font-size: 11.5px; color: var(--muted-l); line-height: 1.55; margin-bottom: 18px; }
.form-consent a { color: var(--gold); font-weight: 600; border-bottom: 1px solid rgba(201,165,90,.3); cursor: pointer; }
.chips-label { font-size: 10.5px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; color: var(--ink); display: block; margin-bottom: 10px; }
.chips-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 22px; }
.chip { display: flex; align-items: center; gap: 8px; padding: 9px 13px; background: var(--off-white); border: 1.5px solid var(--border-l); border-radius: 8px; cursor: pointer; user-select: none; transition: border-color .15s, background .15s; }
.chip input { display: none; }
.chip__box { width: 16px; height: 16px; border-radius: 4px; flex-shrink: 0; border: 1.5px solid var(--border-l); background: white; display: flex; align-items: center; justify-content: center; transition: all .15s; }
.chip__text { font-size: 12px; font-weight: 600; color: var(--muted-l); transition: color .15s; }
.chip:hover { border-color: var(--gold); background: var(--gold-pale); }
.chip:hover .chip__text { color: var(--ink); }
.chip.checked { border-color: var(--gold); background: var(--gold-pale); }
.chip.checked .chip__box { background: var(--gold-grad); border-color: var(--gold); }
.chip.checked .chip__box::after { content: ''; width: 9px; height: 5.5px; border-left: 2px solid #3A2200; border-bottom: 2px solid #3A2200; transform: rotate(-45deg) translateY(-1px); display: block; }
.chip.checked .chip__text { color: var(--navy); font-weight: 700; }
.btn-submit-wa {
  width: 100%; height: 54px; background: var(--navy); color: white;
  font-size: 14px; font-weight: 700; letter-spacing: .4px;
  border: none; border-radius: 10px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: background .2s, transform .2s var(--spring), box-shadow .2s;
}
.btn-submit-wa:hover { background: var(--navy-3); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(11,29,56,.4); }
.btn-submit-wa svg { width: 18px; height: 18px; fill: white; }

/* ════════════════════════════════════
   SCROLL REVEAL
════════════════════════════════════ */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
[data-reveal].visible { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .1s; }
[data-reveal][data-delay="2"] { transition-delay: .2s; }
[data-reveal][data-delay="3"] { transition-delay: .3s; }
[data-reveal][data-delay="4"] { transition-delay: .4s; }
[data-reveal][data-delay="5"] { transition-delay: .5s; }

/* ════════════════════════════════════
   RESPONSIVE
════════════════════════════════════ */
@media (max-width: 1100px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 44px; }
  .cta-band__inner { grid-template-columns: 1fr; gap: 40px; }
  .cta-band__btns { flex-direction: row; }
  .split { grid-template-columns: 1fr; }
  .split__visual { min-height: 320px; }
  .split--reverse .split__visual { order: 0; }
  .split--reverse .split__content { order: 1; }
  .stats-strip__inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  :root { --header-h: 66px; }
  .wrap, .wrap-s { padding: 0 20px; }
  .mega-nav__inner { padding: 0 20px; }
  .site-header__inner { padding: 0 20px; }
  .header-nav { display: none; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .chips-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .cta-band { padding: 72px 0; }
  .cta-band__btns { flex-direction: column; width: 100%; }
  .cta-band__btns .btn { justify-content: center; }
  .split__content { padding: 48px 24px; }
  .stat-box { padding: 36px 24px; }
}
@media (max-width: 480px) {
  .svc-grid { grid-template-columns: 1fr; }
  .stats-strip__inner { grid-template-columns: 1fr 1fr; }
}

/* ════════════════════════════════════
   MOBİL MENÜ
════════════════════════════════════ */
.mobile-menu-btn {
  display: none; flex-direction: column; justify-content: center; align-items: center;
  width: 44px; height: 44px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  cursor: pointer; border-radius: 10px; transition: background .2s;
}
.mobile-menu-btn:hover { background: rgba(255,255,255,.18); }
.mobile-menu-btn .icon-bar { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: transform .35s, opacity .2s, width .3s; transform-origin: center; }
.mobile-menu-btn .icon-bar + .icon-bar { margin-top: 5px; }
body.mobile-open .mobile-menu-btn .icon-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.mobile-open .mobile-menu-btn .icon-bar:nth-child(2) { opacity: 0; width: 0; }
body.mobile-open .mobile-menu-btn .icon-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-overlay {
  display: none; position: fixed; inset: 0; background: var(--white);
  z-index: 10000; flex-direction: column; overflow: hidden;
}
body.mobile-open .mobile-overlay { display: flex; animation: mob-slide-in .38s cubic-bezier(.77,0,.175,1); }
body.mobile-open { overflow: hidden; }
@keyframes mob-slide-in { from{opacity:0;transform:translateX(100%)} to{opacity:1;transform:translateX(0)} }
.mobile-overlay__header { display: flex; align-items: center; justify-content: space-between; padding: 0 24px; height: var(--header-h); border-bottom: 1px solid var(--border-l); }
.mobile-overlay__logo img { height: 40px; }
.mob-close-btn { width: 40px; height: 40px; border-radius: 10px; background: var(--off-white); border: 1px solid var(--border-l); font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.mob-close-btn:hover { background: var(--gold-grad); }
.mobile-overlay__body { flex: 1; overflow-y: auto; padding: 8px 0 48px; scrollbar-width: none; }
.mobile-overlay__body::-webkit-scrollbar { display: none; }
.mob-page-links { padding: 12px 20px 16px; border-bottom: 1px solid var(--border-l); }
.mob-page-link { display: flex; align-items: center; justify-content: space-between; padding: 13px 16px; border-radius: 12px; font-size: 17px; font-weight: 600; color: var(--ink); transition: background .18s; text-decoration: none; }
.mob-page-link:hover { background: var(--off-white); }
.mob-page-link.active { background: var(--gold-pale); color: var(--gold); border: 1px solid rgba(201,165,90,.2); }
.mob-page-link__arrow { width: 16px; height: 16px; opacity: .35; flex-shrink: 0; }
.mob-section-label { padding: 20px 36px 10px; font-size: 9.5px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--muted-l); }
.mob-services-grid { padding: 0 20px; display: flex; flex-direction: column; gap: 6px; }
.mob-accordion { border-radius: 14px; overflow: hidden; border: 1px solid var(--border-l); background: var(--off-white); transition: background .2s, border-color .2s; }
.mob-accordion.open { background: var(--gold-pale); border-color: rgba(201,165,90,.3); }
.mob-acc-btn { width: 100%; display: flex; align-items: center; gap: 13px; padding: 16px 18px; background: none; border: none; cursor: pointer; font-size: 15px; font-weight: 600; color: var(--ink); text-align: left; transition: color .2s; }
.mob-accordion.open .mob-acc-btn { color: var(--navy); }
.mob-acc-btn__icon { width: 36px; height: 36px; border-radius: 10px; background: var(--gold-pale); border: 1px solid rgba(201,165,90,.2); display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; }
.mob-accordion.open .mob-acc-btn__icon { background: var(--gold-grad); }
.mob-acc-btn__arrow { width: 16px; height: 16px; margin-left: auto; flex-shrink: 0; transition: transform .28s var(--ease); color: var(--muted-l); }
.mob-accordion.open .mob-acc-btn__arrow { transform: rotate(180deg); color: var(--gold); }
.mob-acc-body { max-height: 0; overflow: hidden; transition: max-height .32s var(--ease); }
.mob-accordion.open .mob-acc-body { max-height: 500px; }
.mob-acc-links { padding: 2px 14px 14px; display: flex; flex-direction: column; gap: 2px; }
.mob-acc-links a { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 9px; font-size: 13.5px; font-weight: 500; color: var(--muted-l); transition: color .14s, background .14s; }
.mob-acc-links a::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; opacity: .5; }
.mob-acc-links a:hover { color: var(--navy); background: rgba(201,165,90,.1); }
@media (max-width: 768px) { .mobile-menu-btn { display: flex; } .mega-nav { display: none; } .btn-nav-cta { display: none; } }
@media (min-width: 769px) { .mobile-overlay { display: none !important; } }

/* ════════════════════════════════════
   HİZMET SAYFASI — page header
════════════════════════════════════ */
.page-header {
  background: var(--navy);
  padding: calc(var(--header-h) + 60px) 0 60px;
  position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; top: -100px; right: -80px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,165,90,.1) 0%, transparent 65%);
  pointer-events: none;
}
.page-header__kicker { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.page-header__title { font-family: var(--f-serif); font-size: clamp(32px, 4vw, 54px); font-weight: 700; color: var(--white); line-height: 1.1; margin-bottom: 16px; }
.page-header__title em { font-style: italic; font-weight: 400; color: var(--gold-2); }
.page-header__lead { font-size: 16px; line-height: 1.8; color: rgba(255,255,255,.65); max-width: 520px; }
