/* ═══════════════════════════════════════════════
   POLATIUM İNŞAAT TEMİZLİK — Ortak Stil Dosyası
   ═══════════════════════════════════════════════ */

:root {
  --navy-900: #081527;
  --navy-800: #0A1B33;
  --navy-700: #0D2240;
  --navy-600: #14315C;
  --gold-500: #C9A24B;
  --gold-400: #D4AE5E;
  --gold-300: #E3C583;
  --gold-grad: linear-gradient(135deg, #D9B15C 0%, #C9A24B 50%, #B8903A 100%);
  --cream: #FAF9F6;
  --white: #FFFFFF;
  --ink: #16233A;
  --muted: #5B6B82;
  --line: #E8E4DA;
  --shadow-sm: 0 2px 10px rgba(10, 27, 51, .06);
  --shadow-md: 0 12px 34px rgba(10, 27, 51, .10);
  --shadow-lg: 0 24px 60px rgba(10, 27, 51, .16);
  --radius: 14px;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Manrope", -apple-system, sans-serif;
  --container: 1220px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

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

/* ═══════════ UTILITIES ═══════════ */
.eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-500);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
  color: var(--navy-800);
  line-height: 1.25;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: 10px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  will-change: transform;
}
.btn svg { transition: transform .25s ease; }
.btn:hover svg { transform: translateX(4px); }

.btn-navy {
  background: var(--navy-800);
  color: #fff;
  box-shadow: 0 10px 24px rgba(10,27,51,.25);
  border: 1px solid var(--navy-800);
}
.btn-navy:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(10,27,51,.32); }

.btn-outline {
  background: #fff;
  color: var(--navy-800);
  border: 1.5px solid #D7D2C6;
}
.btn-outline:hover { transform: translateY(-2px); border-color: var(--gold-500); box-shadow: var(--shadow-sm); }

.btn-gold {
  background: var(--gold-grad);
  color: var(--navy-900);
  box-shadow: 0 12px 28px rgba(201,162,75,.38);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 18px 38px rgba(201,162,75,.5); }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }
.reveal[data-delay="4"] { transition-delay: .4s; }
.reveal[data-delay="5"] { transition-delay: .5s; }

/* ═══════════ HEADER ═══════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
  border-bottom: 1px solid rgba(201,162,75,.22);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 84px;
}

.brand { display: flex; align-items: center; gap: 13px; flex-shrink: 0; }
.brand-logo { width: 46px; height: 46px; }
.brand-name {
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--gold-400);
  line-height: 1;
}
.brand-sub {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .38em;
  color: #C8D2E0;
  text-transform: uppercase;
  margin-top: 5px;
  display: block;
}

.main-nav > ul { display: flex; align-items: center; gap: 34px; }
.main-nav a {
  font-size: 14.5px;
  font-weight: 600;
  color: #E4E9F1;
  padding: 8px 0;
  position: relative;
  transition: color .25s;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.main-nav > ul > li > a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold-500);
  transition: width .3s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--gold-400); }
.main-nav > ul > li > a:hover::after, .main-nav > ul > li > a.active::after { width: 100%; }

/* Dropdown */
.has-dropdown { position: relative; }
.has-dropdown > a .caret { transition: transform .3s ease; }
.has-dropdown:hover > a .caret, .has-dropdown.open > a .caret { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translate(-50%, 12px);
  min-width: 285px;
  background: linear-gradient(180deg, var(--navy-800), var(--navy-900));
  border: 1px solid rgba(201,162,75,.35);
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 28px 60px rgba(0,0,0,.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, transform .3s ease, visibility .3s;
  z-index: 60;
}
.dropdown::before {
  content: "";
  position: absolute;
  top: -16px; left: 0; right: 0;
  height: 16px;
}
.dropdown::after {
  content: "";
  position: absolute;
  top: -6px; left: 50%;
  width: 12px; height: 12px;
  background: var(--navy-800);
  border-left: 1px solid rgba(201,162,75,.35);
  border-top: 1px solid rgba(201,162,75,.35);
  transform: translateX(-50%) rotate(45deg);
}
.has-dropdown:hover .dropdown,
.has-dropdown.open .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.dropdown li + li { border-top: 1px solid rgba(255,255,255,.07); }
.dropdown a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 600;
  color: #DDE4EE;
  border-radius: 8px;
  transition: background .25s, color .25s, padding-left .25s;
}
.dropdown a svg { flex-shrink: 0; color: var(--gold-500); }
.dropdown a:hover { background: rgba(201,162,75,.13); color: var(--gold-300); padding-left: 19px; }
.dropdown a.active { color: var(--gold-300); }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  color: var(--gold-300);
  border: 1.5px solid var(--gold-500);
  border-radius: 10px;
  padding: 12px 24px;
  transition: all .3s ease;
  flex-shrink: 0;
}
.header-cta:hover { background: var(--gold-500); color: var(--navy-900); box-shadow: 0 8px 22px rgba(201,162,75,.4); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 26px; height: 2.5px; background: var(--gold-400); border-radius: 2px; transition: .3s; }

/* ═══════════ PAGE HERO (alt sayfalar) ═══════════ */
.page-hero {
  position: relative;
  background:
    radial-gradient(800px 340px at 85% 110%, rgba(201,162,75,.14), transparent 60%),
    linear-gradient(120deg, var(--navy-900) 0%, var(--navy-700) 100%);
  text-align: center;
  padding: 74px 0 66px;
  overflow: hidden;
  border-bottom: 3px solid rgba(201,162,75,.5);
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -80px; right: -60px;
  width: 340px; height: 340px;
  border: 1.5px solid rgba(201,162,75,.18);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero::after {
  content: "";
  position: absolute;
  bottom: -110px; left: -70px;
  width: 300px; height: 300px;
  border: 1.5px solid rgba(201,162,75,.14);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero .eyebrow { margin-bottom: 14px; letter-spacing: .34em; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}
.page-hero p.lead {
  color: #B9C4D6;
  font-size: 16px;
  max-width: 640px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
  font-size: 13px;
  font-weight: 600;
  color: #8FA0B8;
}
.breadcrumb a { color: var(--gold-400); transition: color .25s; }
.breadcrumb a:hover { color: var(--gold-300); }
.breadcrumb .sep { opacity: .5; }

/* ═══════════ HERO (ana sayfa) ═══════════ */
.hero {
  position: relative;
  background:
    radial-gradient(1000px 500px at 85% 0%, rgba(201,162,75,.07), transparent 60%),
    linear-gradient(180deg, #FDFCFA 0%, #F7F5F0 100%);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
  gap: 40px;
  padding-top: 72px;
  padding-bottom: 56px;
}

.hero-eyebrow { margin-bottom: 20px; }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.6vw, 56px);
  font-weight: 800;
  line-height: 1.16;
  color: var(--navy-800);
  margin-bottom: 22px;
}
.hero h1 .gold { color: var(--gold-500); font-style: normal; }
.hero-text {
  font-size: 16.5px;
  color: var(--muted);
  max-width: 470px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 46px; }

.hero-features {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 0;
  max-width: 560px;
}
.hero-feature {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 26px;
  border-left: 1px solid var(--line);
}
.hero-feature:first-child { padding-left: 0; border-left: none; }
.hero-feature svg { width: 30px; height: 30px; stroke: var(--gold-500); }
.hero-feature span {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy-800);
  line-height: 1.4;
}

.hero-media { position: relative; }
.hero-media::before {
  content: "";
  position: absolute;
  inset: -60px -100px -60px 30px;
  border-left: 2px solid rgba(201,162,75,.45);
  border-radius: 50% 0 0 50% / 60% 0 0 60%;
  pointer-events: none;
}
.hero-img-wrap {
  position: relative;
  border-radius: 0 0 0 220px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 10 / 8.6;
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

.sparkle {
  position: absolute;
  color: var(--gold-400);
  animation: sparkle 3s ease-in-out infinite;
  z-index: 2;
}
@keyframes sparkle {
  0%, 100% { opacity: .35; transform: scale(.85) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.1) rotate(12deg); }
}

/* ═══════════ TRUST BAR ═══════════ */
.trustbar { padding: 0 0 80px; background: linear-gradient(180deg, #F7F5F0 0%, #FFFFFF 60%); }
.trustbar-card {
  display: flex;
  align-items: center;
  gap: 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 30px 38px;
  margin-top: -8px;
  position: relative;
  z-index: 3;
}
.trustbar-icon {
  width: 62px; height: 62px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border: 2px solid var(--gold-500);
  border-radius: 50%;
  color: var(--gold-500);
}
.trustbar-title {
  font-size: 19px;
  font-weight: 800;
  color: var(--navy-800);
  line-height: 1.4;
  max-width: 220px;
  flex-shrink: 0;
}
.trustbar-text { color: var(--muted); font-size: 15px; flex: 1; }
.trustbar .btn { flex-shrink: 0; }

/* ═══════════ SERVICES GRID ═══════════ */
.services { padding: 0 0 80px; text-align: center; }
.services-head { margin-bottom: 48px; }
.services-head .eyebrow { margin-bottom: 14px; letter-spacing: .35em; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.services-grid--wide { grid-template-columns: repeat(3, 1fr); gap: 26px; }

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 20px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: rgba(201,162,75,.5); }
.service-card:hover::before { transform: scaleX(1); }

.services-grid--wide .service-card { padding: 40px 30px 34px; }

.service-icon { width: 52px; height: 52px; color: var(--gold-500); }
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 {
  font-size: 15.5px;
  font-weight: 800;
  color: var(--navy-800);
  line-height: 1.35;
}
.services-grid--wide .service-card h3 { font-size: 18px; }
.service-card p { font-size: 13px; color: var(--muted); line-height: 1.6; flex: 1; }
.services-grid--wide .service-card p { font-size: 14.5px; }
.service-link {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy-800);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: color .25s, gap .25s;
}
.service-link:hover { color: var(--gold-500); gap: 11px; }

/* ═══════════ ABOUT ═══════════ */
.about { padding: 0 0 80px; }
.about--page { padding-top: 80px; }
.about-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 10 / 7.4;
  position: relative;
}
.about-media::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 8px;
  pointer-events: none;
}
.about-media img { width: 100%; height: 100%; object-fit: cover; }

.about-content .eyebrow { margin-bottom: 14px; }
.about-content h2 { margin-bottom: 20px; }
.about-content > p { color: var(--muted); font-size: 16px; margin-bottom: 30px; max-width: 520px; }

.about-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 34px;
}
.about-point { display: flex; align-items: flex-start; gap: 12px; }
.about-point svg { width: 26px; height: 26px; flex-shrink: 0; stroke: var(--gold-500); margin-top: 2px; }
.about-point span { font-size: 13.5px; font-weight: 700; color: var(--navy-800); line-height: 1.45; }

/* ═══════════ WHY US ═══════════ */
.why { padding: 0 0 80px; }
.why-head { text-align: center; margin-bottom: 44px; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.why-item { display: flex; align-items: flex-start; gap: 18px; }
.why-icon {
  width: 58px; height: 58px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--gold-500);
  border-radius: 50%;
  color: var(--gold-500);
  transition: background .3s, color .3s, transform .3s;
}
.why-item:hover .why-icon { background: var(--gold-500); color: #fff; transform: scale(1.06); }
.why-item h3 { font-size: 15.5px; font-weight: 800; color: var(--navy-800); margin-bottom: 6px; }
.why-item p { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

/* ═══════════ MISSION / VISION ═══════════ */
.mission { padding: 0 0 80px; }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.mission-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 38px 36px;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.mission-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.mission-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 4px;
  background: var(--gold-grad);
}
.mission-card h3 {
  font-family: var(--font-display);
  font-size: 23px;
  color: var(--navy-800);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.mission-card h3 svg { color: var(--gold-500); }
.mission-card p { color: var(--muted); font-size: 15px; }

/* ═══════════ BEFORE / AFTER ═══════════ */
.gallery { padding: 0 0 80px; }
.gallery--page { padding-top: 76px; }
.gallery-band {
  background: linear-gradient(180deg, #F7F5F0, #F2EFE8);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 40px 34px 44px;
}
.gallery-title {
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--navy-800);
  margin-bottom: 30px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.gallery-grid + .gallery-grid { margin-top: 26px; }

.ba-slider {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 10.5;
  box-shadow: var(--shadow-md);
  user-select: none;
  cursor: ew-resize;
  touch-action: none;
}
.ba-slider img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba-before-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 2;
  width: 50%;
}
.ba-before-wrap img { width: 100vw; max-width: none; }
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  background: #fff;
  z-index: 4;
  transform: translateX(-50%);
  box-shadow: 0 0 14px rgba(0,0,0,.35);
}
.ba-handle::after {
  content: "◂ ▸";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 42px; height: 42px;
  background: var(--gold-grad);
  color: var(--navy-900);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: -1px;
  box-shadow: 0 6px 18px rgba(0,0,0,.3);
}
.ba-label {
  position: absolute;
  bottom: 14px;
  z-index: 3;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .14em;
  padding: 7px 16px;
  border-radius: 6px;
  pointer-events: none;
}
.ba-label--before { left: 14px; background: rgba(8,21,39,.85); color: #fff; }
.ba-label--after { right: 14px; background: var(--gold-grad); color: var(--navy-900); }

/* ═══════════ STATS & TESTIMONIAL ═══════════ */
.stats-quote { padding: 0 0 80px; }
.sq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: stretch;
}

.stats-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 34px 30px;
}
.stats-card .eyebrow { display: block; text-align: center; margin-bottom: 26px; }
.stats-grid {
  flex: 1;
  align-content: center;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.stat { padding: 0 10px; border-left: 1px solid var(--line); }
.stat:first-child { border-left: none; }
.stat-icon { width: 34px; height: 34px; margin: 0 auto 12px; color: var(--navy-700); }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.6vw, 34px);
  font-weight: 800;
  color: var(--navy-800);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 12.5px; font-weight: 600; color: var(--muted); }

/* Bant hali (hakkımızda / referanslar sayfaları) */
.stats-band { padding: 0 0 80px; }
.stats-band .stats-card { padding: 40px 36px; }

.quote-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 34px 38px 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.quote-card .eyebrow { display: block; text-align: center; margin-bottom: 22px; }
.quote-mark {
  position: absolute;
  top: 18px; left: 24px;
  font-family: var(--font-display);
  font-size: 90px;
  line-height: 1;
  color: rgba(201,162,75,.25);
}
.quote-text {
  font-size: 15.5px;
  color: var(--ink);
  font-style: italic;
  margin-bottom: 22px;
  position: relative;
}
.quote-person { display: flex; align-items: center; gap: 14px; }
.quote-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-300);
}
.quote-name { font-weight: 800; font-size: 15px; color: var(--navy-800); font-style: normal; }
.quote-role { font-size: 13px; color: var(--muted); }
.quote-stars { color: var(--gold-500); font-size: 13px; letter-spacing: 3px; margin-top: 3px; }

/* Quote slider */
.quote-slider { overflow: hidden; flex: 1; }
.quote-track { display: flex; transition: transform .55s ease; }
.quote-slide { min-width: 100%; padding: 0 2px; }
.quote-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.quote-arrow {
  width: 38px; height: 38px;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--gold-500);
  border-radius: 50%;
  color: var(--navy-800);
  transition: all .3s;
}
.quote-arrow:hover { background: var(--gold-500); color: #fff; }
.quote-dots { display: flex; gap: 8px; }
.quote-dot {
  width: 8px; height: 8px;
  border-radius: 4px;
  background: #D9D2C2;
  transition: all .3s;
  padding: 0;
}
.quote-dot.active { background: var(--gold-500); width: 24px; }

/* Testimonial grid (referanslar sayfası) */
.testimonials { padding: 76px 0 60px; }
.testimonials-head { text-align: center; margin-bottom: 44px; }
.testimonials-head .eyebrow { margin-bottom: 14px; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.t-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 32px 34px;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.t-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.t-card::before {
  content: "“";
  position: absolute;
  top: 6px; right: 22px;
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 1;
  color: rgba(201,162,75,.22);
}

/* ═══════════ SERVICE DETAIL LAYOUT ═══════════ */
.service-layout {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 52px;
  padding-top: 76px;
  padding-bottom: 80px;
  align-items: start;
}

.service-body .service-hero-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16 / 8.4;
  margin-bottom: 36px;
}
.service-body .service-hero-img img { width: 100%; height: 100%; object-fit: cover; }

.service-body h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 700;
  color: var(--navy-800);
  line-height: 1.3;
  margin: 40px 0 16px;
}
.service-body h2:first-of-type { margin-top: 0; }
.service-body > p { color: var(--muted); font-size: 15.5px; margin-bottom: 16px; }

.check-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px 26px;
  margin: 22px 0 10px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.5;
}
.check-list li::before {
  content: "✓";
  flex-shrink: 0;
  width: 22px; height: 22px;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--gold-500);
  border-radius: 50%;
  color: var(--gold-500);
  font-size: 12px;
  font-weight: 800;
  margin-top: 1px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 24px 0 8px;
}
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px 18px;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); border-color: rgba(201,162,75,.5); }
.step-num {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
  color: rgba(201,162,75,.45);
  margin-bottom: 10px;
}
.step h3 { font-size: 14.5px; font-weight: 800; color: var(--navy-800); margin-bottom: 6px; }
.step p { font-size: 13px; color: var(--muted); line-height: 1.55; }

.faq { margin-top: 22px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  transition: border-color .3s;
}
.faq-item + .faq-item { margin-top: 12px; }
.faq-item[open] { border-color: rgba(201,162,75,.55); }
.faq-item summary {
  cursor: pointer;
  padding: 17px 22px;
  font-weight: 800;
  font-size: 15px;
  color: var(--navy-800);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 24px;
  font-weight: 400;
  color: var(--gold-500);
  line-height: 1;
  transition: transform .3s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 22px 18px; color: var(--muted); font-size: 14.5px; }

/* Sidebar */
.service-aside {
  display: flex;
  flex-direction: column;
  gap: 26px;
  position: sticky;
  top: 108px;
}
.aside-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 28px 26px;
}
.aside-title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--navy-800);
  padding-bottom: 14px;
  margin-bottom: 6px;
  border-bottom: 2px solid var(--gold-500);
}
.aside-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 13px 2px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  transition: color .25s, padding-left .25s;
}
.aside-nav li:last-child a { border-bottom: none; }
.aside-nav a:hover, .aside-nav a.active { color: var(--gold-500); padding-left: 8px; }
.aside-nav a svg { flex-shrink: 0; }

.aside-cta {
  position: relative;
  background:
    radial-gradient(400px 200px at 90% 110%, rgba(201,162,75,.2), transparent 60%),
    linear-gradient(140deg, var(--navy-900), var(--navy-700));
  border: 1px solid rgba(201,162,75,.35);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.aside-cta .cta-icon-sm {
  width: 58px; height: 58px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  background: var(--gold-grad);
  border-radius: 50%;
  color: var(--navy-900);
}
.aside-cta h3 { font-family: var(--font-display); font-size: 21px; margin-bottom: 8px; }
.aside-cta p { color: #B9C4D6; font-size: 13.5px; margin-bottom: 20px; }
.aside-cta .btn { width: 100%; justify-content: center; }

/* ═══════════ CTA BAND ═══════════ */
.cta { padding: 0 0 80px; }
.cta--page { padding-top: 20px; }
.cta-band {
  position: relative;
  display: flex;
  align-items: center;
  gap: 34px;
  background:
    radial-gradient(700px 300px at 90% 120%, rgba(201,162,75,.16), transparent 60%),
    linear-gradient(120deg, var(--navy-900) 0%, var(--navy-700) 100%);
  border-radius: 20px;
  border: 1px solid rgba(201,162,75,.3);
  padding: 44px 48px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(201,162,75,.18);
  border-radius: 14px;
  pointer-events: none;
}
.cta-icon {
  width: 88px; height: 88px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: var(--gold-grad);
  border-radius: 50%;
  color: var(--navy-900);
  box-shadow: 0 0 0 10px rgba(201,162,75,.15), 0 0 0 20px rgba(201,162,75,.07);
  animation: pulse-ring 2.8s ease-out infinite;
}
@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 0 0 10px rgba(201,162,75,.15), 0 0 0 20px rgba(201,162,75,.07); }
  50% { box-shadow: 0 0 0 14px rgba(201,162,75,.2), 0 0 0 28px rgba(201,162,75,.08); }
}
.cta-content { flex: 1; }
.cta-eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 8px;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.cta-text { color: #B9C4D6; font-size: 15px; }

/* ═══════════ BLOG ═══════════ */
.blog-section { padding: 76px 0 70px; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.post-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .35s, box-shadow .35s;
  display: flex;
  flex-direction: column;
}
.post-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.post-img { aspect-ratio: 16 / 9.5; overflow: hidden; }
.post-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.post-card:hover .post-img img { transform: scale(1.06); }
.post-body { padding: 24px 26px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-500);
}
.post-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold-500); opacity: .6; }
.post-meta time { color: var(--muted); letter-spacing: .04em; }
.post-body h3 {
  font-size: 17.5px;
  font-weight: 800;
  color: var(--navy-800);
  line-height: 1.4;
}
.post-body h3 a:hover { color: var(--gold-500); }
.post-body p { font-size: 14px; color: var(--muted); flex: 1; }

/* ═══════════ CONTACT ═══════════ */
.contact-section { padding: 76px 0 90px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 48px;
  align-items: start;
}
.contact-info-list { display: grid; gap: 18px; margin-top: 26px; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s, border-color .3s;
}
.contact-info-item:hover { transform: translateX(6px); border-color: rgba(201,162,75,.5); }
.contact-info-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--gold-500);
  border-radius: 50%;
  color: var(--gold-500);
}
.contact-info-item h3 { font-size: 14px; font-weight: 800; color: var(--navy-800); margin-bottom: 3px; }
.contact-info-item p, .contact-info-item a { font-size: 14.5px; color: var(--muted); font-style: normal; }
.contact-info-item a:hover { color: var(--gold-500); }

.contact-form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  padding: 40px 42px;
}
.contact-form-card h2 {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--navy-800);
  margin-bottom: 6px;
}
.contact-form-card > p { color: var(--muted); font-size: 14.5px; margin-bottom: 28px; }

.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-size: 13px; font-weight: 700; color: var(--navy-800); }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: inherit;
  font-size: 14.5px;
  color: var(--ink);
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--cream);
  transition: border-color .25s, box-shadow .25s, background .25s;
  width: 100%;
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(201,162,75,.14);
}
.form-note { grid-column: 1 / -1; font-size: 12.5px; color: var(--muted); }
.form-grid .btn { grid-column: 1 / -1; justify-content: center; }

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

/* ═══════════ FOOTER ═══════════ */
.site-footer {
  background: linear-gradient(180deg, var(--navy-900), #060F1D);
  color: #B9C4D6;
  padding: 70px 0 0;
  border-top: 2px solid rgba(201,162,75,.35);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1.3fr;
  gap: 48px;
  padding-bottom: 54px;
}
.footer-brand .brand { margin-bottom: 20px; }
.footer-brand p { font-size: 14px; line-height: 1.75; max-width: 280px; margin-bottom: 24px; }

.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201,162,75,.4);
  border-radius: 50%;
  color: var(--gold-400);
  transition: all .3s;
}
.footer-social a:hover { background: var(--gold-500); color: var(--navy-900); transform: translateY(-3px); }
.footer-social svg { width: 17px; height: 17px; }

.footer-title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 22px;
}
.footer-links li { margin-bottom: 12px; }
.footer-links a {
  font-size: 14.5px;
  transition: color .25s, padding-left .25s;
  position: relative;
}
.footer-links a:hover { color: var(--gold-300); padding-left: 8px; }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 16px;
  font-size: 14.5px;
}
.footer-contact svg {
  width: 19px; height: 19px;
  flex-shrink: 0;
  stroke: var(--gold-500);
  margin-top: 3px;
}
.footer-contact a:hover { color: var(--gold-300); }
.footer-contact address { font-style: normal; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13.5px;
}
.footer-legal { display: flex; gap: 10px; align-items: center; }
.footer-legal a:hover { color: var(--gold-300); }
.footer-legal span { opacity: .4; }

/* ═══════════ MOBİL ALT BAR (WhatsApp + Ara) ═══════════ */
.mobile-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 95;
  display: none;
  gap: 10px;
  background: linear-gradient(180deg, var(--navy-800), var(--navy-900));
  border-top: 1px solid rgba(201,162,75,.4);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -10px 30px rgba(8,21,39,.35);
}
.mobile-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 800;
  font-size: 15px;
  padding: 13px 10px;
  border-radius: 10px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.mobile-bar a:active { transform: scale(.97); }
.mobile-bar svg { flex-shrink: 0; }
.mb-wa { background: #1EBE5D; color: #fff; box-shadow: 0 6px 16px rgba(30,190,93,.35); }
.mb-call { background: var(--gold-grad); color: var(--navy-900); box-shadow: 0 6px 16px rgba(201,162,75,.35); }

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1080px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid--wide { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; padding-top: 56px; }
  .hero-media { max-width: 640px; margin: 0 auto; width: 100%; }
  .hero-media::before { display: none; }
  .hero-img-wrap { border-radius: var(--radius); }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .sq-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .service-layout { grid-template-columns: 1fr; }
  .service-aside { position: static; flex-direction: row; flex-wrap: wrap; }
  .service-aside > * { flex: 1 1 320px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .mission-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .mobile-bar { display: flex; }
  body { padding-bottom: 68px; }

  .main-nav {
    position: fixed;
    top: 84px; left: 0; right: 0;
    background: var(--navy-900);
    border-bottom: 1px solid rgba(201,162,75,.3);
    padding: 12px 24px 26px;
    transform: translateY(-130%);
    transition: transform .4s ease;
    z-index: 99;
    max-height: calc(100vh - 84px);
    overflow-y: auto;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav > ul { flex-direction: column; align-items: flex-start; gap: 4px; }
  .main-nav > ul > li { width: 100%; }
  .main-nav a { font-size: 16px; padding: 12px 0; display: flex; width: 100%; }
  .nav-toggle { display: flex; }
  .header-cta { display: none; }

  /* Mobil dropdown: statik, tıklayınca açılır */
  .dropdown {
    position: static;
    transform: none;
    min-width: 0;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(201,162,75,.2);
    box-shadow: none;
    opacity: 1;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    padding: 0 10px;
    transition: max-height .4s ease, visibility .4s, padding .4s;
  }
  .dropdown::before, .dropdown::after { display: none; }
  .has-dropdown.open .dropdown {
    visibility: visible;
    max-height: 500px;
    padding: 10px;
  }
  .has-dropdown:hover .dropdown:not(.open) { transform: none; }
  .dropdown a { font-size: 14.5px; }

  .trustbar-card { flex-direction: column; text-align: center; align-items: center; gap: 18px; }
  .trustbar-title { max-width: none; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid + .gallery-grid { margin-top: 26px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 26px 0; }
  .stat:nth-child(3) { border-left: none; }
  .cta-band { flex-direction: column; text-align: center; padding: 40px 28px; }
  .hero-features { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .hero-feature { border-left: none; padding: 0; }
  .about-points { grid-template-columns: 1fr; gap: 14px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .check-list { grid-template-columns: 1fr; }
  .contact-form-card { padding: 30px 24px; }
}

@media (max-width: 560px) {
  .services-grid, .services-grid--wide { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .footer-bottom-inner { justify-content: center; text-align: center; }
  .steps { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .service-aside { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
