/* ═══════════════════════════════════════════
   EMEK OTO KURTARMA & YIKAMA
   style.css — Ana Stil Dosyası
   ═══════════════════════════════════════════ */

/* ── 1. CSS DEĞİŞKENLERİ ── */
:root {
  --navy:        #1b2a3b;
  --navy-deep:   #111e2b;
  --navy-mid:    #243447;
  --gold:        #f0a500;
  --gold-dark:   #c88800;
  --gold-light:  #ffd166;
  --gold-pale:   rgba(240, 165, 0, 0.12);
  --white:       #ffffff;
  --gray-light:  #f7f8fa;
  --gray-mid:    #e2e6ea;
  --gray-border: #d0d7de;
  --text-dark:   #1b2a3b;
  --text-muted:  #6b7a8d;
  --text-faint:  #8fa5be;

  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   16px;
  --radius-xl:   24px;

  --shadow-sm:   0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:   0 6px 24px rgba(0,0,0,0.09);
  --shadow-lg:   0 16px 48px rgba(0,0,0,0.12);

  --transition:  0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-height:  70px;
}

/* ── 2. RESET & BASE ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: 'Barlow', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

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

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

ul { list-style: none; }

/* ── 3. YARDIMCI SINIFLAR ── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 5%;
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 46px;
  color: var(--navy);
  letter-spacing: 2px;
  line-height: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header .section-desc {
  font-size: 15px;
  color: var(--text-muted);
  margin-top: 12px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* Scroll animasyonu için başlangıç durumu */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s var(--transition), transform 0.65s var(--transition);
}

.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; }

/* ── 4. NAVBAR ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: var(--white);
  border-bottom: 3px solid var(--gold);
  box-shadow: var(--shadow-sm);
  transition: background var(--transition), box-shadow var(--transition);
}

#navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-icon {
  width: 46px;
  height: 46px;
  background: var(--navy);
  color: var(--gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  transition: background var(--transition), color var(--transition);
}

.logo:hover .logo-icon {
  background: var(--gold);
  color: var(--navy);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text .brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--navy);
}

.logo-text .sub {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--gold);
  text-transform: uppercase;
}

/* Nav Linkleri */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Nav CTA Butonu */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition);
}

.nav-cta:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.hamburger:hover {
  background: var(--gray-light);
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition), width var(--transition);
  transform-origin: center;
}

.hamburger span:nth-child(1) { width: 24px; }
.hamburger span:nth-child(2) { width: 18px; }
.hamburger span:nth-child(3) { width: 24px; }

.hamburger.open span:nth-child(1) {
  width: 24px;
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  width: 24px;
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobil Menü */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 3px solid var(--gold);
  padding: 20px 5%;
  box-shadow: var(--shadow-md);
  z-index: 999;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--transition), opacity var(--transition);
}

.mobile-menu.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu a {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}

.mobile-menu a:hover {
  background: var(--gray-light);
  color: var(--navy);
}

.mobile-menu .mobile-cta {
  margin-top: 8px;
  background: var(--gold);
  color: var(--navy);
  text-align: center;
  font-weight: 700;
  border-radius: var(--radius-sm);
}

.mobile-menu .mobile-cta:hover {
  background: var(--gold-dark);
}

/* ── 5. HERO ── */
#hero {
  margin-top: var(--nav-height);
  background: linear-gradient(135deg, var(--navy-deep) 0%, #152336 100%);
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* Arka plan efektleri */
#hero::before {
  content: '';
  position: absolute;
  right: -100px; top: -100px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240,165,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}

#hero::after {
  content: '';
  position: absolute;
  left: -60px; bottom: -60px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240,165,0,0.05) 0%, transparent 70%);
  pointer-events: none;
}

/* Geometrik çizgi desen */
.hero-bg-lines {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 60px,
      rgba(255,255,255,0.3) 60px,
      rgba(255,255,255,0.3) 61px
    );
  pointer-events: none;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  position: relative;
  z-index: 1;
}

.hero-left { flex: 1; min-width: 0; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(240,165,0,0.15);
  border: 1px solid rgba(240,165,0,0.3);
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 30px;
  margin-bottom: 24px;
  box-shadow: 0 0 15px rgba(240, 165, 0, 0.15);
}

.blink-dot {
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: blink 1.4s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.7); }
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 7vw, 76px);
  line-height: 0.95;
  color: var(--white);
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.hero-title .gold { color: var(--gold); display: block; }

.hero-sub {
  font-size: 16px;
  color: var(--text-faint);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 440px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 15px;
  padding: 15px 30px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.5px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(240, 165, 0, 0.2);
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(240, 165, 0, 0.4);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(240,165,0,0.45);
  color: var(--gold-light);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(240,165,0,0.08);
  transform: translateY(-2px);
}

/* Hero sayaçları */
.hero-counters {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.counter-item {
  display: flex;
  flex-direction: column;
}

.counter-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--gold);
  letter-spacing: 2px;
  line-height: 1;
}

.counter-label {
  font-size: 11px;
  color: var(--text-faint);
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-top: 3px;
}

.counter-divider {
  width: 1px;
  background: rgba(255,255,255,0.12);
  align-self: stretch;
}

/* Hero sağ — stat kartları */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 180px;
}

.stat-card {
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  text-align: center;
  transition: background var(--transition), transform var(--transition);
  cursor: default;
}

.stat-card:hover {
  background: rgba(255,255,255,0.09);
  transform: translateX(-4px);
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 38px;
  color: var(--gold);
  letter-spacing: 2px;
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  color: var(--text-faint);
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* ── 6. HİZMETLER ── */
#hizmetler {
  background: var(--gray-light);
  padding: 100px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px 22px;
  text-align: center;
  border-top: 4px solid var(--gold);
  border: 1px solid var(--gray-border);
  border-top: 4px solid var(--gold);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: default;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  font-size: 40px;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
  transition: transform var(--transition);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(-5deg);
}

.service-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 21px;
  color: var(--navy);
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.service-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── 7. GALERİ ── */
#galeri {
  padding: 100px 0;
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
}

.gallery-img, .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--transition);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 30, 43, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s var(--transition);
}

.gallery-overlay i {
  color: var(--white);
  font-size: 32px;
  transform: scale(0.5);
  transition: transform 0.3s var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}

/* ── 8. NEDEN BİZ ── */
#neden {
  background: var(--navy);
  padding: 100px 0;
}

.neden-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.neden-left .section-tag { color: var(--gold-light); }
.neden-left .section-title { color: var(--white); margin-bottom: 18px; }

.neden-text {
  font-size: 15px;
  color: var(--text-faint);
  line-height: 1.85;
  margin-bottom: 32px;
}

.neden-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.neden-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold);
  transition: background var(--transition), transform var(--transition);
}

.neden-item:hover {
  background: rgba(255,255,255,0.08);
  transform: translateX(4px);
}

.neden-item .check {
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
}

.neden-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.feature-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: background var(--transition), transform var(--transition), border-color var(--transition);
  cursor: default;
}

.feature-box:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-4px);
  border-color: rgba(240,165,0,0.3);
}

.feature-icon {
  font-size: 30px;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.feature-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

.feature-sub {
  font-size: 12px;
  color: var(--text-faint);
  line-height: 1.5;
}

/* ── 8. ACİL BANT ── */
#acil {
  background: var(--gold);
  padding: 36px 0;
}

.acil-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.acil-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 34px;
  color: var(--navy);
  letter-spacing: 2px;
  line-height: 1;
}

.acil-text p {
  font-size: 14px;
  font-weight: 500;
  color: rgba(27,42,59,0.65);
  margin-top: 4px;
}

.acil-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.acil-btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: var(--radius-sm);
  transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.acil-btn-dark:hover {
  opacity: 0.85;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.acil-btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: var(--radius-sm);
  transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.acil-btn-white:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* ── 9. İLETİŞİM FORMU ── */
#iletisim {
  background: var(--gray-light);
  padding: 100px 0;
}

.iletisim-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.contact-info .section-title { margin-bottom: 8px; }

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.contact-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.contact-icon-wrap {
  width: 46px; height: 46px;
  background: var(--navy);
  color: var(--gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  flex-shrink: 0;
}

.contact-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 3px;
}

.contact-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}

/* İletişim Formu */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px;
  border: 1px solid var(--gray-border);
  box-shadow: var(--shadow-sm);
}

.contact-form-wrap h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--navy);
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.contact-form-wrap p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-border);
  border-radius: var(--radius-sm);
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(240,165,0,0.12);
}

.form-group textarea {
  min-height: 110px;
}

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

.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  margin-top: 8px;
  box-shadow: 0 4px 14px rgba(240, 165, 0, 0.2);
}

.form-submit:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(240, 165, 0, 0.4);
}

.form-submit:active {
  transform: translateY(0);
}

/* Form başarı mesajı */
.form-success {
  display: none;
  text-align: center;
  padding: 20px;
}

.form-success .success-icon { font-size: 48px; margin-bottom: 12px; color: #25d366; }
.form-success h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: var(--navy);
  letter-spacing: 2px;
  margin-bottom: 6px;
}
.form-success p { font-size: 14px; color: var(--text-muted); }

/* ── 10. HARİTA ── */
#harita {
  height: 420px;
  background: #c8d6e5;
  position: relative;
  overflow: hidden;
}

#harita iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(20%);
}

.map-overlay {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}

/* ── 11. FOOTER ── */
footer {
  background: var(--navy-deep);
  padding: 56px 0 28px;
}

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

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--text-faint);
  line-height: 1.7;
  max-width: 260px;
}

.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  background: rgba(240,165,0,0.12);
  border: 1px solid rgba(240,165,0,0.25);
  color: var(--gold-light);
  font-weight: 700;
  font-size: 15px;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.footer-phone:hover {
  background: rgba(240,165,0,0.2);
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  font-size: 13px;
  color: var(--text-faint);
  transition: color var(--transition), padding-left var(--transition);
}

.footer-col ul a:hover {
  color: var(--white);
  padding-left: 4px;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-faint);
  transition: color var(--transition);
}

.social-link:hover { color: var(--white); }

.social-icon {
  width: 36px; height: 36px;
  color: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.social-link:hover .social-icon {
  transform: scale(1.1);
}

.ig-icon { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.wa-icon { background: #25d366; }

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  font-size: 12px;
  color: #3d5060;
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--transition);
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  max-width: 90%;
  max-height: 85vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  transform: scale(0.9);
  transition: transform 0.3s var(--transition);
}

.lightbox.active .lightbox-content {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: var(--white);
  font-size: 50px;
  font-weight: bold;
  cursor: pointer;
  transition: color var(--transition), transform var(--transition);
  line-height: 1;
}

.lightbox-close:hover {
  color: var(--gold);
  transform: scale(1.1);
}

/* ── 12. SCROLL TO TOP ── */
#scrollTop {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 46px; height: 46px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
  z-index: 800;
  pointer-events: none;
}

#scrollTop.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

#scrollTop:hover {
  background: var(--gold-dark);
}

/* ── 13. RESPONSİF ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .neden-inner { gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }

  #hero { padding: 40px 0; }
  #hizmetler, #galeri, #neden, #iletisim { padding: 60px 0; }

  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero-inner { flex-direction: column; }
  
  .hero-buttons { flex-direction: column; width: 100%; gap: 12px; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }

  .hero-right {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;
  }
  .stat-card { flex: 1; min-width: 130px; }

  .hero-counters { gap: 20px; justify-content: center; width: 100%; }
  .counter-divider { display: none; }

  .section-title { font-size: 34px; }

  .neden-inner { grid-template-columns: 1fr; gap: 40px; }
  .neden-right { grid-template-columns: 1fr; gap: 16px; }

  .iletisim-inner { grid-template-columns: 1fr; }

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

  .form-row { grid-template-columns: 1fr; }

  .acil-inner { flex-direction: column; text-align: center; gap: 18px; }
  .acil-buttons { flex-direction: column; width: 100%; gap: 12px; }
  .acil-btn-dark, .acil-btn-white { width: 100%; justify-content: center; }
}

@media (max-width: 520px) {
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 38px; }
  .contact-form-wrap { padding: 24px 18px; }
  #scrollTop { bottom: 16px; right: 16px; }
}
