/* ============================================================
   Av. Doruk Ayar – Ana CSS Tasarım Sistemi
   dorukayar.com
   ============================================================ */

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

/* ─── CSS Değişkenleri (Design Tokens) ────────────────────── */
:root {
  --navy:         #1a365d;
  --navy-deep:    #0f2240;
  --navy-light:   #2d5282;
  --navy-muted:   #2a4a73;
  --gold:         #c9a84c;
  --gold-light:   #e8c96a;
  --gold-pale:    #f5e6b8;
  --cream:        #faf8f4;
  --white:        #ffffff;
  --gray-50:      #f9fafb;
  --gray-100:     #f3f4f6;
  --gray-200:     #e5e7eb;
  --gray-300:     #d1d5db;
  --gray-400:     #9ca3af;
  --gray-600:     #4b5563;
  --gray-700:     #374151;
  --gray-800:     #1f2937;
  --text:         #1e2a3a;
  --text-muted:   #5a6a7e;

  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif:   'Playfair Display', Georgia, serif;

  --radius-sm:    6px;
  --radius:       10px;
  --radius-lg:    16px;
  --radius-xl:    24px;
  --radius-full:  9999px;

  --shadow-sm:    0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow:       0 4px 16px rgba(0,0,0,.10);
  --shadow-md:    0 8px 28px rgba(0,0,0,.12);
  --shadow-lg:    0 20px 60px rgba(0,0,0,.15);
  --shadow-navy:  0 8px 32px rgba(26,54,93,.30);
  --shadow-gold:  0 4px 20px rgba(201,168,76,.35);

  --transition:   all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.16s ease;

  --header-h:     80px;
  --section-py:   80px;
}

/* ─── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ─── Tipografi ────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--navy);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { color: var(--text-muted); line-height: 1.8; }

.lead { font-size: 1.125rem; color: var(--gray-700); line-height: 1.75; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-muted { color: var(--text-muted); }

/* ─── Layout Yardımcıları ──────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
}
.container--narrow { max-width: 860px; }
.container--wide   { max-width: 1400px; }

.section { padding-block: var(--section-py); }
.section--gray { background: var(--gray-50); }
.section--cream { background: var(--cream); }
.section--navy {
  background: var(--navy-deep);
  color: var(--white);
}
.section--navy h2, .section--navy h3 { color: var(--white); }
.section--navy p { color: rgba(255,255,255,.75); }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold);
  background: rgba(201,168,76,.12); border-radius: var(--radius-full);
  padding: 6px 16px; margin-bottom: 16px;
}
.section-header__title { margin-bottom: 16px; }
.section-header__subtitle { max-width: 560px; margin-inline: auto; font-size: 1.05rem; }

/* Divider */
.divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: var(--radius-full);
  margin: 16px auto 0;
}

/* ─── Butonlar ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: .95rem; font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--gold);
  color: var(--navy-deep);
  box-shadow: var(--shadow-gold);
}
.btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,.45);
}

.btn--secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn--secondary:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}

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

.btn--navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-navy);
}
.btn--navy:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(26,54,93,.38);
}

.btn--lg { padding: 17px 36px; font-size: 1.05rem; border-radius: var(--radius-lg); }
.btn--sm { padding: 10px 20px; font-size: .875rem; }
.btn--full { width: 100%; justify-content: center; }
.btn--icon { padding: 12px; border-radius: var(--radius-full); }

/* ─── Header / Navigation ──────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 76px;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26,54,93,0.08);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}
.site-header.scrolled {
  height: 66px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
  height: 100%;
}

/* Logo Alignment Fix */
.logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
  height: 100%;
}
.logo__icon {
  width: 38px; height: 38px;
  background: var(--navy);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  line-height: 1;
}
.logo__text {
  display: flex; flex-direction: column; justify-content: center;
}
.logo__name {
  font-family: var(--font-serif);
  font-size: 1.15rem; font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.logo__title {
  font-size: 0.65rem; font-weight: 700;
  color: var(--gold-dark, #b38e36);
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-top: 2px;
}

/* Nav Alignment Fix */
.main-nav {
  display: flex; align-items: center; gap: 6px;
  height: 100%;
}
.nav-item {
  display: flex; align-items: center;
  height: 100%;
  position: relative;
}
.nav-link {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 16px;
  font-size: 0.92rem; font-weight: 600;
  color: #2c3e50;
  border-radius: 6px;
  transition: all 0.2s ease;
  text-decoration: none;
  line-height: 1;
}
.nav-link:hover, .nav-link.active {
  color: var(--navy);
  background: rgba(26,54,93,0.05);
}
.nav-link.active {
  color: var(--navy);
  font-weight: 700;
}

/* Phone Button */
.header-phone {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.88rem; font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(26,54,93,0.15);
}
.header-phone:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(26,54,93,0.25);
  color: var(--white);
}
  transition: var(--transition-fast);
}
.nav-link:hover, .nav-link.active { color: var(--navy); background: var(--gray-100); }

/* Dropdown */
.nav-dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  min-width: 260px;
  padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: var(--transition);
  z-index: 100;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown__link {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  font-size: .9rem; font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius);
  transition: var(--transition-fast);
}
.nav-dropdown__link:hover {
  background: var(--cream);
  color: var(--navy);
  padding-left: 18px;
}
.nav-dropdown__link svg { color: var(--gold); flex-shrink: 0; }

.header-actions { display: flex; align-items: center; gap: 12px; }
.header-phone {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  font-size: .9rem; font-weight: 600;
  transition: var(--transition);
  text-decoration: none;
}
.header-phone:hover { background: var(--navy-light); transform: translateY(-1px); }
.header-phone svg { color: var(--gold); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border-radius: var(--radius);
  background: var(--gray-100);
  transition: var(--transition-fast);
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed; inset: var(--header-h) 0 0 0; z-index: 999;
  background: var(--white);
  overflow-y: auto;
  padding: 20px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-link {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px;
  font-size: 1rem; font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius);
  transition: var(--transition-fast);
  border-bottom: 1px solid var(--gray-100);
}
.mobile-nav-link:hover { background: var(--gray-50); color: var(--navy); }
.mobile-nav-sub { padding-left: 32px; }
.mobile-nav-sub .mobile-nav-link {
  font-size: .9rem; border-bottom: none; padding: 10px 12px;
}
.mobile-nav-phone {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-top: 20px; padding: 16px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  font-size: 1.05rem; font-weight: 700;
  text-decoration: none;
}

/* ─── Hero Bölümü ──────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
  background: var(--navy-deep);
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 30% 60%, rgba(45,82,130,.55) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(201,168,76,.08) 0%, transparent 60%),
    linear-gradient(160deg, var(--navy-deep) 0%, #0d1f3c 50%, #071526 100%);
}
.hero-particles {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1px 1px at 20% 35%, rgba(201,168,76,.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 75% 25%, rgba(255,255,255,.15) 0%, transparent 100%),
    radial-gradient(1px 1px at 55% 70%, rgba(201,168,76,.25) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 40% 80%, rgba(255,255,255,.1) 0%, transparent 100%);
}

.hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  padding-block: 60px;
}

.hero-content { color: var(--white); }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,.18);
  border: 1px solid rgba(201,168,76,.35);
  border-radius: var(--radius-full);
  padding: 7px 18px;
  font-size: .8rem; font-weight: 600;
  color: var(--gold-light);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.hero-badge span { width: 7px; height: 7px; background: var(--gold); border-radius: 50%; animation: pulse-dot 2s infinite; }

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.3); }
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-title .highlight {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-subtitle {
  font-size: 1.1rem; color: rgba(255,255,255,.8);
  line-height: 1.7; margin-bottom: 36px;
  max-width: 500px;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

.hero-stats {
  display: flex; gap: 32px; flex-wrap: wrap;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-stat {}
.hero-stat__num {
  font-family: var(--font-serif);
  font-size: 2rem; font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.hero-stat__label {
  font-size: .8rem; color: rgba(255,255,255,.6);
  margin-top: 4px; text-transform: uppercase; letter-spacing: .06em;
}

/* Fotoğraf Paneli */
.hero-visual {
  display: flex; align-items: center; justify-content: center;
}
.hero-photo-wrap {
  position: relative;
  width: min(420px, 90%);
}
.hero-photo-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.45), 0 0 0 1px rgba(201,168,76,.2);
}
.hero-photo-card::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, transparent 50%, rgba(26,54,93,.6) 100%);
}
.hero-photo-card img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  filter: brightness(1.02) contrast(1.02);
}
.hero-photo-badge {
  position: absolute; bottom: -1px; left: 0; right: 0; z-index: 2;
  background: rgba(26,54,93,.92);
  backdrop-filter: blur(12px);
  padding: 20px 24px;
  text-align: center;
}
.hero-photo-badge__name {
  font-family: var(--font-serif);
  font-size: 1.25rem; font-weight: 700; color: var(--white);
}
.hero-photo-badge__title { font-size: .82rem; color: var(--gold); margin-top: 2px; }

.hero-accent-line {
  position: absolute; top: -20px; right: -20px;
  width: 140px; height: 140px;
  border: 2px solid rgba(201,168,76,.25);
  border-radius: var(--radius-xl);
  transform: rotate(15deg);
}
.hero-accent-dot {
  position: absolute; bottom: -30px; left: -30px;
  width: 100px; height: 100px;
  background: radial-gradient(circle, rgba(201,168,76,.25) 0%, transparent 70%);
  border-radius: 50%;
}

/* Floating cards removed as requested */
.hero-float-card { display: none !important; }

/* ─── Hizmet Kartları ──────────────────────────────────────── */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* 7. Kart (Öne Çıkan / Ortalanmış Geniş Kart) */
.service-card--wide {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #ffffff 0%, var(--cream) 100%);
  border: 1.5px solid var(--gold-pale);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 28px 36px;
}
.service-card--wide .service-card__icon {
  margin-bottom: 0;
}
.service-card--wide .service-card__desc {
  margin-bottom: 0;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-pale);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
  box-shadow: var(--shadow-navy);
  transition: var(--transition);
}
.service-card:hover .service-card__icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  transform: scale(1.08);
}

.service-card__title {
  font-size: 1.15rem; font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card__desc {
  font-size: .9rem; color: var(--text-muted);
  line-height: 1.7; margin-bottom: 20px;
}
.service-card__link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .875rem; font-weight: 600;
  color: var(--gold);
  transition: var(--transition-fast);
}
.service-card__link:hover { gap: 10px; color: var(--navy); }

/* ─── Hakkımda / Trust Bölümü ──────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px; align-items: center;
}
.about-photo {
  position: relative;
}
.about-photo__img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-photo__img img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
}
.about-photo__badge {
  position: absolute;
  right: -24px; bottom: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--gray-200);
}
.about-photo__badge-icon { font-size: 1.5rem; }
.about-photo__badge-text strong { display: block; color: var(--navy); font-size: .95rem; }
.about-photo__badge-text span { font-size: .8rem; color: var(--text-muted); }
.about-photo__deco {
  position: absolute; top: -16px; left: -16px;
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--gold), transparent);
  border-radius: var(--radius-lg);
  opacity: .3;
  z-index: -1;
}

.about-content h2 { margin-bottom: 16px; }
.about-content p { margin-bottom: 16px; }

.about-feats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin: 28px 0;
}
.about-feat {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 14px;
  background: var(--gray-50);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
}
.about-feat__icon {
  font-size: 1.2rem; flex-shrink: 0; margin-top: 1px;
}
.about-feat__text strong { display: block; font-size: .9rem; color: var(--navy); margin-bottom: 2px; }
.about-feat__text span { font-size: .8rem; color: var(--text-muted); }

.baro-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--cream);
  border: 1px solid var(--gold-pale);
  border-radius: var(--radius);
  padding: 10px 16px;
  font-size: .875rem; font-weight: 600;
  color: var(--navy);
}

/* ─── Güven Sayaçları ──────────────────────────────────────── */
.stats-band {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  padding: 56px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item {}
.stat-item__num {
  font-family: var(--font-serif);
  font-size: 2.8rem; font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.stat-item__label {
  font-size: .875rem; color: rgba(255,255,255,.7);
  margin-top: 8px;
}

/* ─── SSS Accordion ─────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--gold-pale); box-shadow: var(--shadow-sm); }

.faq-question {
  width: 100%; text-align: left;
  padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-size: 1rem; font-weight: 600;
  color: var(--navy);
  transition: var(--transition-fast);
  background: none;
}
.faq-question:hover { background: var(--gray-50); }
.faq-question svg {
  flex-shrink: 0; color: var(--gold);
  transition: transform 0.3s ease;
}
.faq-item.open .faq-question svg { transform: rotate(180deg); }

.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer__inner {
  padding: 0 24px 24px;
  font-size: .95rem; color: var(--text-muted);
  line-height: 1.8;
  border-top: 1px solid var(--gray-100);
  padding-top: 16px;
}

/* ─── İletişim Formu ───────────────────────────────────────── */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px; align-items: start;
}

.contact-info {}
.contact-info__title { margin-bottom: 12px; }
.contact-info__lead { margin-bottom: 32px; }

.contact-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: var(--transition-fast);
}
.contact-item:hover { border-color: var(--gold-pale); background: var(--cream); }
.contact-item__icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-item__label { font-size: .78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 2px; }
.contact-item__value { font-weight: 600; color: var(--navy); font-size: .95rem; }
.contact-item__value a { color: inherit; transition: color .2s; }
.contact-item__value a:hover { color: var(--gold); }

.working-hours { background: var(--navy); border-radius: var(--radius-lg); padding: 20px; color: var(--white); }
.working-hours__title { font-size: .85rem; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 12px; }
.working-hours__row { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,.08); font-size: .875rem; }
.working-hours__row:last-child { border-bottom: none; }
.working-hours__row span:first-child { color: rgba(255,255,255,.7); }
.working-hours__row span:last-child { color: var(--white); font-weight: 500; }

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}
.contact-form-wrap h3 { margin-bottom: 24px; }

.form-group { margin-bottom: 20px; }
.form-label {
  display: block; font-size: .875rem; font-weight: 600;
  color: var(--gray-700); margin-bottom: 7px;
}
.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: .95rem; color: var(--text);
  background: var(--white);
  transition: var(--transition-fast);
  outline: none;
  appearance: none;
}
.form-control:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,54,93,.1);
}
.form-control::placeholder { color: var(--gray-400); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { cursor: pointer; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-honeypot { display: none !important; visibility: hidden; }

.form-submit-wrap { margin-top: 8px; }
.form-notice {
  font-size: .78rem; color: var(--text-muted);
  margin-top: 12px; text-align: center;
}

.form-message {
  display: none; margin-top: 16px;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: .9rem; font-weight: 500;
  text-align: center;
}
.form-message.success {
  display: block;
  background: #ecfdf5; color: #065f46;
  border: 1px solid #6ee7b7;
}
.form-message.error {
  display: block;
  background: #fef2f2; color: #7f1d1d;
  border: 1px solid #fca5a5;
}

/* ─── Google Maps ──────────────────────────────────────────── */
.map-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  height: 380px;
}
.map-wrap iframe {
  width: 100%; height: 100%; border: none; display: block;
}

/* ─── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-deep);
  color: var(--white);
  padding-top: 64px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand__logo { margin-bottom: 16px; }
.footer-brand__logo .logo__name,
.footer-brand__logo .logo__title { color: var(--white); }
.footer-brand__desc { font-size: .875rem; color: rgba(255,255,255,.65); line-height: 1.8; margin-bottom: 20px; }

.social-links { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  transition: var(--transition-fast);
  text-decoration: none;
}
.social-link:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.footer-col__title {
  font-size: .82rem; font-weight: 700;
  color: var(--gold);
  text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link {
  font-size: .875rem; color: rgba(255,255,255,.65);
  transition: color .2s;
  display: flex; align-items: center; gap: 6px;
  text-decoration: none;
}
.footer-link:hover { color: var(--gold-light); }

.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 12px;
  font-size: .875rem; color: rgba(255,255,255,.65);
}
.footer-contact-item a { color: inherit; text-decoration: none; transition: color .2s; }
.footer-contact-item a:hover { color: var(--gold-light); }
.footer-contact-icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; font-size: .9rem; }

.footer-bottom {
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom__copy { font-size: .8rem; color: rgba(255,255,255,.45); }
.footer-bottom__legal { display: flex; gap: 20px; }
.footer-bottom__legal a { font-size: .8rem; color: rgba(255,255,255,.45); text-decoration: none; transition: color .2s; }
.footer-bottom__legal a:hover { color: var(--gold); }
.footer-baro { font-size: .78rem; color: rgba(255,255,255,.4); margin-top: 6px; }

/* ─── WhatsApp Floating ─────────────────────────────────────── */
.wa-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 900;
  display: flex; align-items: center; gap: 12px;
  background: #25d366;
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 24px rgba(37,211,102,.4);
  text-decoration: none;
  font-size: .9rem; font-weight: 600;
  transition: var(--transition);
  animation: wa-bounce 3s ease-in-out infinite;
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 36px rgba(37,211,102,.5);
}
.wa-float svg { font-size: 1.3rem; }

@keyframes wa-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
.wa-float:hover { animation: none; }

/* Mobil sticky call bar */
.mobile-call-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 899;
  background: var(--navy);
  padding: 10px 20px;
  gap: 10px;
}
.mobile-call-btn {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px;
  border-radius: var(--radius);
  font-size: .9rem; font-weight: 700;
  text-decoration: none;
  transition: var(--transition-fast);
}
.mobile-call-btn--phone { background: var(--gold); color: var(--navy-deep); }
.mobile-call-btn--wa { background: #25d366; color: var(--white); }
.mobile-call-btn:hover { opacity: .9; }

/* ─── Cookie Banner ─────────────────────────────────────────── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--navy-deep);
  border-top: 1px solid rgba(201,168,76,.25);
  padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  transform: translateY(0); transition: transform 0.4s ease;
}
.cookie-banner.hidden { transform: translateY(100%); display: none; }
.cookie-banner__text { font-size: .85rem; color: rgba(255,255,255,.8); flex: 1; min-width: 260px; }
.cookie-banner__text a { color: var(--gold); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 10px; }
.cookie-accept {
  padding: 10px 22px;
  background: var(--gold); color: var(--navy-deep);
  border-radius: var(--radius); font-size: .875rem; font-weight: 700;
  cursor: pointer; border: none; transition: var(--transition-fast);
}
.cookie-accept:hover { background: var(--gold-light); }
.cookie-decline {
  padding: 10px 22px;
  background: transparent; color: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius); font-size: .875rem;
  cursor: pointer; transition: var(--transition-fast);
}
.cookie-decline:hover { border-color: rgba(255,255,255,.4); color: var(--white); }

/* ─── Hizmet Detay Sayfası ──────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  padding: calc(var(--header-h) + 60px) 0 60px;
  text-align: center;
  color: var(--white);
}
.page-hero__eyebrow {
  display: inline-block;
  background: rgba(201,168,76,.2); color: var(--gold-light);
  border-radius: var(--radius-full);
  padding: 5px 16px;
  font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 16px;
}
.page-hero__title { color: var(--white); margin-bottom: 16px; }
.page-hero__sub { color: rgba(255,255,255,.75); max-width: 560px; margin-inline: auto; font-size: 1.05rem; }

.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: .8rem; color: rgba(255,255,255,.55);
  justify-content: center; margin-bottom: 20px;
}
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* ─── Sayfa İçi Kartlar ─────────────────────────────────────── */
.info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.info-card--navy { background: var(--navy); border-color: var(--navy-light); }
.info-card--navy h3, .info-card--navy p, .info-card--navy li { color: var(--white); }
.info-card--gold-border { border-left: 4px solid var(--gold); }

.process-steps { display: flex; flex-direction: column; gap: 20px; }
.process-step { display: flex; gap: 16px; align-items: flex-start; }
.process-step__num {
  width: 40px; height: 40px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--gold); font-family: var(--font-serif); font-weight: 700; font-size: 1.1rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-navy);
}
.process-step__content strong { display: block; color: var(--navy); font-size: .95rem; margin-bottom: 4px; }
.process-step__content p { font-size: .875rem; margin: 0; }

.check-list { display: flex; flex-direction: column; gap: 10px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .95rem; color: var(--text-muted); line-height: 1.6;
}
.check-list li::before {
  content: '✓';
  width: 22px; height: 22px; flex-shrink: 0;
  background: rgba(201,168,76,.15);
  color: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 700;
  margin-top: 1px;
}

/* ─── CTA Banner ────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy-muted));
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; top: -40%; right: -10%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(201,168,76,.12) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-banner h2 { color: var(--white); margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,.75); margin-bottom: 28px; max-width: 500px; margin-inline: auto; }
.cta-banner .cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─── Scroll Animasyonları ──────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s 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; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── Yardımcı ──────────────────────────────────────────────── */
.mt-0  { margin-top: 0; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.text-center { text-align: center; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.fw-600 { font-weight: 600; }

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-photo { max-width: 440px; margin-inline: auto; }
  .about-photo__badge { right: -8px; }
}

@media (max-width: 900px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card--wide { grid-column: 1 / -1; grid-template-columns: 1fr; text-align: center; }
  .service-card--wide .service-card__icon { margin-inline: auto; margin-bottom: 12px; }
}

@media (max-width: 768px) {
  :root { --section-py: 56px; --header-h: 76px; }

  .main-nav, .header-actions .header-phone { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }

  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-visual { order: -1; }
  .hero-photo-wrap { max-width: 280px; margin-inline: auto; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-float-card--1, .hero-float-card--2 { display: none; }

  .contact-section { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-wrap { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .service-grid { grid-template-columns: 1fr; }

  .wa-float { right: 16px; bottom: 80px; }
  .wa-float .wa-label { display: none; }
  .wa-float { padding: 14px; border-radius: 50%; }

  .mobile-call-bar { display: flex; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }

  .about-feats { grid-template-columns: 1fr; }

  .cta-banner { padding: 36px 24px; }

  .map-wrap { height: 280px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.9rem; }
  .container { padding-inline: 16px; }
  .contact-form-wrap { padding: 20px 16px; }
  .cookie-banner { flex-direction: column; }
}
