/* ============================================================
   Kadir Macit Mali Müşavirlik — Ana Stil Dosyası
   Palet: Lacivert #1E2A4A (logo) · Altın #C6A45E · Gri zemin #F5F7FA
   ============================================================ */

:root {
  --navy-900: #0F1830;
  --navy-800: #16223F;
  --navy-700: #1E2A4A;
  --navy-600: #2B3A63;
  --navy-100: #E8ECF5;
  --gold-600: #AE8C45;
  --gold-500: #C6A45E;
  --gold-100: #F6EEDD;
  --ink: #1A2233;
  --muted: #5B6474;
  --line: #E4E8EF;
  --bg-soft: #F5F7FA;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(16, 24, 48, 0.06);
  --shadow-md: 0 10px 30px rgba(16, 24, 48, 0.10);
  --shadow-lg: 0 24px 60px rgba(16, 24, 48, 0.16);
  --radius: 14px;
  --container: 1200px;
  --font-head: "Manrope", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body { overflow-x: hidden; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.25;
  color: var(--navy-800);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 88px 0; }

/* ---------- Küçük yardımcılar ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold-500);
}

.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .eyebrow::after {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold-500);
}
.section-head h2 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: 17px; }

.bg-soft { background: var(--bg-soft); }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-gold { background: var(--gold-500); color: var(--navy-900); }
.btn-gold:hover { background: var(--gold-600); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-navy { background: var(--navy-700); color: var(--white); }
.btn-navy:hover { background: var(--navy-900); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-outline-light { border-color: rgba(255, 255, 255, 0.45); color: var(--white); background: transparent; }
.btn-outline-light:hover { background: var(--white); color: var(--navy-800); }

.btn-outline-navy { border-color: var(--navy-700); color: var(--navy-700); background: transparent; }
.btn-outline-navy:hover { background: var(--navy-700); color: var(--white); }

/* ---------- Üst Bar ---------- */
.topbar {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13.5px;
  padding: 9px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.topbar-group { display: flex; align-items: center; gap: 22px; }
.topbar a { display: inline-flex; align-items: center; gap: 7px; transition: color 0.2s; }
.topbar a:hover { color: var(--gold-500); }
.topbar svg { width: 14px; height: 14px; color: var(--gold-500); }
.topbar .hours { display: inline-flex; align-items: center; gap: 7px; }

/* ---------- Header / Navigasyon ---------- */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 0 var(--line);
  transition: box-shadow 0.25s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 24px;
  max-width: var(--container);
  margin: 0 auto;
}

.brand img { height: 48px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > li { position: relative; }
.main-nav > li > a {
  display: block;
  padding: 10px 16px;
  white-space: nowrap;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  color: var(--navy-800);
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.main-nav > li > a:hover,
.main-nav > li > a.active { color: var(--gold-600); }

.has-dropdown > a::after {
  content: "";
  display: inline-block;
  margin-left: 7px;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-3px);
}

.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 300px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  transition: background 0.15s, color 0.15s;
}
.dropdown a:hover { background: var(--bg-soft); color: var(--gold-600); }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--navy-800);
  font-size: 15px;
}
.nav-phone svg { width: 34px; height: 34px; padding: 8px; background: var(--gold-100); color: var(--gold-600); border-radius: 50%; flex-shrink: 0; }
.nav-phone .np-text { display: flex; flex-direction: column; line-height: 1.35; white-space: nowrap; }
.nav-phone small { font-size: 11.5px; font-weight: 600; color: var(--muted); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--navy-800);
  border-radius: 2px;
  margin: 5px 0;
  transition: 0.3s;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  padding: 120px 0;
  background:
    linear-gradient(100deg, rgba(15, 24, 48, 0.93) 30%, rgba(15, 24, 48, 0.55) 75%, rgba(15, 24, 48, 0.35)),
    url("../img/hero.jpg") center / cover no-repeat;
  color: var(--white);
}
.hero-inner { max-width: 680px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(198, 164, 94, 0.16);
  border: 1px solid rgba(198, 164, 94, 0.45);
  color: var(--gold-500);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-badge svg { width: 16px; height: 16px; flex-shrink: 0; }
.hero h1 {
  font-size: clamp(34px, 5.2vw, 56px);
  color: var(--white);
  margin-bottom: 22px;
}
.hero h1 em { font-style: normal; color: var(--gold-500); }
.hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  max-width: 560px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust { display: flex; gap: 34px; flex-wrap: wrap; }
.hero-trust li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; font-weight: 600; color: rgba(255, 255, 255, 0.9); }
.hero-trust svg { width: 20px; height: 20px; color: var(--gold-500); flex-shrink: 0; }

/* ---------- Sayaç Bandı ---------- */
.stats-band { background: var(--navy-700); padding: 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
}
.stat-item { background: var(--navy-700); text-align: center; padding: 44px 20px; }
.stat-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 800;
  color: var(--gold-500);
  line-height: 1.1;
}
.stat-item span { font-size: 14.5px; color: rgba(255, 255, 255, 0.75); font-weight: 600; }

/* ---------- Hizmet Kartları ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-600));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 62px;
  height: 62px;
  border-radius: 14px;
  background: var(--gold-100);
  color: var(--gold-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: all 0.3s;
}
.service-icon svg { width: 30px; height: 30px; }
.service-card:hover .service-icon { background: var(--navy-700); color: var(--gold-500); }
.service-card h3 { font-size: 19px; margin-bottom: 10px; }
.service-card p { font-size: 14.5px; color: var(--muted); flex: 1; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: var(--navy-700);
  transition: color 0.2s, gap 0.2s;
}
.service-link:hover { color: var(--gold-600); gap: 12px; }
.service-link svg { width: 16px; height: 16px; }

/* ---------- Hakkımızda ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-media { position: relative; }
.about-media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.about-exp {
  position: absolute;
  bottom: -26px;
  right: -20px;
  background: var(--navy-700);
  color: var(--white);
  border-radius: var(--radius);
  padding: 26px 30px;
  box-shadow: var(--shadow-lg);
  border-bottom: 4px solid var(--gold-500);
}
.about-exp strong { display: block; font-family: var(--font-head); font-size: 40px; font-weight: 800; color: var(--gold-500); line-height: 1; }
.about-exp span { font-size: 13.5px; font-weight: 600; opacity: 0.9; }
.about-body h2 { font-size: clamp(28px, 3.6vw, 38px); margin-bottom: 18px; }
.about-body > p { color: var(--muted); margin-bottom: 22px; }
.about-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; margin-bottom: 30px; }
.about-checks li { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 14.5px; }
.about-checks svg { width: 20px; height: 20px; color: var(--gold-600); flex-shrink: 0; }
.about-sign { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.about-sign .who strong { display: block; font-family: var(--font-head); font-size: 17px; }
.about-sign .who span { font-size: 13.5px; color: var(--muted); }

/* ---------- Neden Biz ---------- */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.feature-card {
  text-align: center;
  padding: 38px 24px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  transition: all 0.3s;
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.feature-card .f-icon {
  width: 66px;
  height: 66px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--navy-700);
  color: var(--gold-500);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-card .f-icon svg { width: 30px; height: 30px; }
.feature-card h3 { font-size: 17px; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--muted); }

/* ---------- Süreç ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; counter-reset: step; }
.step-card { position: relative; padding: 30px 26px 26px; background: var(--white); border-radius: var(--radius); border: 1px solid var(--line); }
.step-card::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  font-family: var(--font-head);
  font-size: 44px;
  font-weight: 800;
  color: var(--gold-100);
  -webkit-text-stroke: 1.5px var(--gold-500);
  line-height: 1;
  margin-bottom: 16px;
}
.step-card h3 { font-size: 17px; margin-bottom: 8px; }
.step-card p { font-size: 14px; color: var(--muted); }

/* ---------- CTA Bandı ---------- */
.cta-band {
  position: relative;
  padding: 96px 0;
  background:
    linear-gradient(rgba(15, 24, 48, 0.88), rgba(15, 24, 48, 0.88)),
    url("../img/istanbul.jpg") center / cover no-repeat;
  background-attachment: fixed;
  color: var(--white);
  text-align: center;
}
.cta-band h2 { color: var(--white); font-size: clamp(28px, 4vw, 42px); max-width: 760px; margin: 0 auto 18px; }
.cta-band p { color: rgba(255, 255, 255, 0.82); max-width: 560px; margin: 0 auto 36px; font-size: 17px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Referanslar ---------- */
.testimonials { overflow: hidden; }
.testi-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testi-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 30px;
  position: relative;
}
.testi-card::before {
  content: "\201C";
  position: absolute;
  top: 14px;
  right: 24px;
  font-family: Georgia, serif;
  font-size: 84px;
  line-height: 1;
  color: var(--gold-100);
}
.testi-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.testi-stars svg { width: 17px; height: 17px; color: var(--gold-500); }
.testi-card blockquote { font-size: 15px; color: var(--muted); margin-bottom: 22px; font-style: italic; }
.testi-who { display: flex; align-items: center; gap: 13px; }
.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy-700);
  color: var(--gold-500);
  font-family: var(--font-head);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.testi-who strong { display: block; font-family: var(--font-head); font-size: 15px; color: var(--navy-800); }
.testi-who span { font-size: 13px; color: var(--muted); }

/* ---------- Blog Kartları ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-thumb { position: relative; aspect-ratio: 16 / 9.5; overflow: hidden; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-thumb img { transform: scale(1.06); }
.blog-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold-500);
  color: var(--navy-900);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
}
.blog-body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.blog-meta { font-size: 13px; color: var(--muted); margin-bottom: 10px; display: flex; gap: 14px; }
.blog-body h3 { font-size: 18px; margin-bottom: 10px; }
.blog-body h3 a:hover { color: var(--gold-600); }
.blog-body p { font-size: 14px; color: var(--muted); flex: 1; }

/* ---------- SSS ---------- */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); border-radius: 12px; margin-bottom: 14px; background: var(--white); overflow: hidden; }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 22px 26px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  color: var(--navy-800);
}
.faq-q .faq-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gold-100);
  color: var(--gold-600);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  position: relative;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s;
}
.faq-icon::before { width: 12px; height: 2px; }
.faq-icon::after { width: 2px; height: 12px; }
.faq-item.open .faq-icon { background: var(--navy-700); color: var(--gold-500); }
.faq-item.open .faq-icon::after { transform: rotate(90deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a p { padding: 0 26px 24px; color: var(--muted); font-size: 15px; }

/* ---------- Sayfa Hero (alt sayfalar) ---------- */
.page-hero {
  position: relative;
  padding: 88px 0;
  background:
    linear-gradient(100deg, rgba(15, 24, 48, 0.94), rgba(30, 42, 74, 0.82)),
    url("../img/hero.jpg") center / cover no-repeat;
  color: var(--white);
}
.page-hero h1 { color: var(--white); font-size: clamp(30px, 4.4vw, 46px); margin-bottom: 12px; }
.breadcrumb { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255, 255, 255, 0.75); flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--gold-500); }
.breadcrumb .sep { opacity: 0.5; }
.breadcrumb .current { color: var(--gold-500); font-weight: 600; }

/* ---------- Hizmet Detay Düzeni ---------- */
.service-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
.service-content img { border-radius: var(--radius); margin-bottom: 34px; box-shadow: var(--shadow-md); }
.service-content h2 { font-size: 28px; margin: 34px 0 16px; }
.service-content > p { color: var(--muted); margin-bottom: 18px; }
.scope-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; margin: 22px 0 10px; }
.scope-list li { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; font-weight: 600; }
.scope-list svg { width: 20px; height: 20px; color: var(--gold-600); flex-shrink: 0; margin-top: 3px; }

.service-sidebar { position: sticky; top: 110px; display: flex; flex-direction: column; gap: 26px; }
.sidebar-widget { background: var(--bg-soft); border-radius: var(--radius); padding: 28px 26px; border: 1px solid var(--line); }
.sidebar-widget h3 { font-size: 17px; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 2px solid var(--gold-500); }
.sidebar-nav li + li { margin-top: 4px; }
.sidebar-nav a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 14px;
  border-radius: 9px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  transition: all 0.2s;
}
.sidebar-nav a::after { content: "→"; opacity: 0.35; transition: 0.2s; }
.sidebar-nav a:hover, .sidebar-nav a.active { background: var(--white); color: var(--gold-600); box-shadow: var(--shadow-sm); }
.sidebar-nav a:hover::after, .sidebar-nav a.active::after { opacity: 1; color: var(--gold-600); }

.sidebar-cta { background: var(--navy-700); color: var(--white); text-align: center; border: none; }
.sidebar-cta h3 { color: var(--white); border-color: var(--gold-500); }
.sidebar-cta p { font-size: 14px; color: rgba(255, 255, 255, 0.8); margin-bottom: 20px; }
.sidebar-cta .btn { width: 100%; }
.sidebar-cta .phone-big { display: block; font-family: var(--font-head); font-size: 21px; font-weight: 800; color: var(--gold-500); margin-bottom: 18px; }

/* ---------- İletişim ---------- */
.contact-grid { display: grid; grid-template-columns: 380px 1fr; gap: 48px; align-items: start; }
.contact-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
  display: flex;
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.25s;
}
.contact-card:hover { box-shadow: var(--shadow-md); }
.contact-card .c-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--gold-100);
  color: var(--gold-600);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-card .c-icon svg { width: 24px; height: 24px; }
.contact-card h3 { font-size: 16px; margin-bottom: 4px; }
.contact-card p, .contact-card a { font-size: 14.5px; color: var(--muted); }
.contact-card a:hover { color: var(--gold-600); }

.contact-form-wrap { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-sm); }
.contact-form-wrap h2 { font-size: 26px; margin-bottom: 8px; }
.contact-form-wrap > p { color: var(--muted); margin-bottom: 28px; font-size: 15px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-family: var(--font-head); font-weight: 700; font-size: 13.5px; color: var(--navy-800); }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--bg-soft);
  color: var(--ink);
  transition: border 0.2s, background 0.2s;
  width: 100%;
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  background: var(--white);
}
.form-note { font-size: 13px; color: var(--muted); margin-top: 14px; }
.form-success {
  display: none;
  margin-top: 18px;
  padding: 16px 20px;
  border-radius: 10px;
  background: #EAF7EE;
  border: 1px solid #BFE5CB;
  color: #1E7A38;
  font-weight: 600;
  font-size: 14.5px;
}
.form-success.show { display: block; }

.map-wrap { margin-top: 72px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); line-height: 0; }
.map-wrap iframe { width: 100%; height: 420px; border: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: rgba(255, 255, 255, 0.78); }
.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding: 72px 0 56px;
}
.footer-brand img { height: 44px; width: auto; filter: brightness(0) invert(1); opacity: 0.95; margin-bottom: 20px; }
.footer-brand p { font-size: 14px; margin-bottom: 22px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
}
.footer-social a:hover { background: var(--gold-500); color: var(--navy-900); transform: translateY(-3px); }
.footer-social svg { width: 17px; height: 17px; }
.footer-col h4 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 22px;
  padding-bottom: 12px;
  position: relative;
}
.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 2px;
  background: var(--gold-500);
}
.footer-col li + li { margin-top: 11px; }
.footer-col a { font-size: 14px; transition: all 0.2s; }
.footer-col a:hover { color: var(--gold-500); padding-left: 5px; }
.footer-contact li { display: flex; gap: 12px; font-size: 14px; align-items: flex-start; }
.footer-contact li + li { margin-top: 15px; }
.footer-contact svg { width: 17px; height: 17px; color: var(--gold-500); flex-shrink: 0; margin-top: 4px; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding: 22px 0; font-size: 13.5px; }
.footer-bottom .container { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--gold-500); }
.footer-legal { display: flex; gap: 20px; }

/* ---------- Yüzen Butonlar ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 30px; height: 30px; }

.back-top {
  position: fixed;
  bottom: 96px;
  right: 26px;
  z-index: 999;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  background: var(--navy-700);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s;
  box-shadow: var(--shadow-md);
}
.back-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-top:hover { background: var(--gold-600); }
.back-top svg { width: 20px; height: 20px; }

/* ---------- Scroll Animasyonları ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .services-grid, .features-grid, .steps-grid, .testi-track, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 48px; }
  .service-layout { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .topbar .topbar-group:last-child .hours { display: none; }
  .nav-phone { display: none; }
  .nav-cta > .btn { display: none; }
  .main-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(320px, 85vw);
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 90px 22px 30px;
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 1001;
    overflow-y: auto;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav > li > a { padding: 13px 14px; font-size: 16px; }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--bg-soft);
    margin: 4px 0 8px;
    display: none;
  }
  .has-dropdown.open .dropdown { display: block; }
  .has-dropdown > a::after { transform: rotate(45deg); }
  .nav-toggle { display: block; z-index: 1002; position: relative; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 24, 48, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
  }
  .nav-overlay.show { opacity: 1; visibility: visible; }
  .about-grid { grid-template-columns: 1fr; }
  .about-exp { right: 10px; bottom: -20px; padding: 20px 24px; }
  .cta-band { background-attachment: scroll; }
}

@media (max-width: 640px) {
  section { padding: 64px 0; }
  .brand img { height: 40px; }
  .topbar .topbar-group:last-child { display: none; }
  .topbar .container { justify-content: center; }
  .services-grid, .features-grid, .steps-grid, .testi-track, .blog-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { min-height: 560px; padding: 90px 0; }
  .hero-trust { gap: 16px; }
  .form-grid { grid-template-columns: 1fr; }
  .scope-list { grid-template-columns: 1fr; }
  .about-checks { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 38px; }
  .footer-bottom .container { justify-content: center; text-align: center; }
  .contact-form-wrap { padding: 28px 22px; }
}
