/* ============================================================
   style.css — Tuncay Koltuk Yıkama
   Premium temizlik firması ana stili
   ============================================================ */

/* ── CSS Değişkenleri ─────────────────────────────────────── */
:root {
  /* Renk paleti */
  --navy:       #0d2d52;
  --navy-dark:  #081d38;
  --navy-mid:   #1a3a5c;
  --teal:       #1ea8a8;
  --teal-light: #2ec4c4;
  --sky:        #a8d8f0;
  --sky-pale:   #e8f4fc;
  --white:      #ffffff;
  --off-white:  #f7fbff;
  --text-dark:  #0d1f35;
  --text-mid:   #3d5a7a;
  --text-light: #6b8aaa;
  --border:     #d0e4f0;
  --success:    #10b981;
  --error:      #ef4444;
  --warning:    #f59e0b;

  /* Dark mode */
  --bg:         var(--white);
  --bg-alt:     var(--off-white);
  --surface:    var(--white);
  --surface-alt:#edf4fa;
  --text:       var(--text-dark);

  /* Tipografi */
  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body:    'Inter', 'Segoe UI', system-ui, sans-serif;

  /* Boyutlar */
  --header-h:   72px;
  --radius-sm:  6px;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow-sm:  0 2px 8px rgba(13,45,82,.08);
  --shadow:     0 4px 24px rgba(13,45,82,.12);
  --shadow-lg:  0 12px 48px rgba(13,45,82,.18);

  /* Geçişler */
  --tr:  0.25s ease;
  --tr-slow: 0.45s ease;
}

/* Dark mode */
[data-theme="dark"] {
  --bg:         #0a1929;
  --bg-alt:     #0d2040;
  --surface:    #112236;
  --surface-alt:#153050;
  --text:       #d0e8f8;
  --border:     #1e4070;
  --text-mid:   #7aaad0;
  --text-light: #4a7090;
  --sky-pale:   #0f2a46;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  transition: background var(--tr), color var(--tr);
  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; }

/* ── Scroll Progress Bar ──────────────────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--sky));
  z-index: 10000;
  transition: width 0.1s;
  width: 0%;
}

/* ── Header ───────────────────────────────────────────────── */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: background var(--tr), box-shadow var(--tr);
}
#site-header.scrolled {
  box-shadow: var(--shadow);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Logo */
.header-logo {
  display: flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-text strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy);
  font-weight: 700;
}
[data-theme="dark"] .logo-text strong { color: var(--white); }
.logo-text small {
  font-size: .68rem;
  color: var(--teal);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 500;
}

/* Nav */
.header-nav {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav-link {
  padding: .45rem .85rem;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: color var(--tr), background var(--tr);
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.active {
  color: var(--teal);
  background: var(--sky-pale);
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-shrink: 0;
}

/* Hamburger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  border-radius: var(--radius-sm);
  transition: background var(--tr);
}
.burger:hover { background: var(--sky-pale); }
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--header-h);
  background: var(--surface);
  z-index: 999;
  flex-direction: column;
  padding: 2rem;
  gap: .5rem;
  transform: translateX(100%);
  transition: transform .35s ease;
}
.mobile-nav.open {
  transform: translateX(0);
}
.mobile-nav .nav-link {
  font-size: 1.1rem;
  padding: .8rem 1rem;
}

/* ── Butonlar ─────────────────────────────────────────────── */
.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .65rem 1.4rem;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 600;
  transition: transform .2s, box-shadow .2s, background .2s;
  white-space: nowrap;
  letter-spacing: .01em;
}
.btn:active { transform: scale(.97); }

/* Ripple efekti */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  transform: scale(0);
  animation: rippleAnim .6s linear;
  pointer-events: none;
  width: 100px;
  height: 100px;
  margin-top: -50px;
  margin-left: -50px;
}
@keyframes rippleAnim {
  to { transform: scale(4); opacity: 0; }
}

.btn-primary {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: white;
  box-shadow: 0 4px 14px rgba(13,45,82,.3);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--navy-mid), var(--teal));
  box-shadow: 0 6px 20px rgba(13,45,82,.4);
  transform: translateY(-1px);
}

.btn-teal {
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: white;
  box-shadow: 0 4px 14px rgba(30,168,168,.3);
}
.btn-teal:hover {
  box-shadow: 0 6px 20px rgba(30,168,168,.45);
  transform: translateY(-1px);
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  box-shadow: 0 4px 14px rgba(37,211,102,.3);
}
.btn-whatsapp:hover {
  background: #1fb855;
  box-shadow: 0 6px 20px rgba(37,211,102,.45);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--teal);
  color: var(--teal);
}
.btn-outline:hover {
  background: var(--teal);
  color: white;
}

.btn-sm { padding: .4rem .9rem; font-size: .82rem; }
.btn-lg { padding: .85rem 1.8rem; font-size: 1rem; border-radius: var(--radius); }

/* ── Section genel ────────────────────────────────────────── */
section { padding: 5rem 0; }
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .75rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: .75rem;
}
[data-theme="dark"] .section-title { color: var(--white); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 520px;
  line-height: 1.7;
}

.section-header { margin-bottom: 3rem; }
.section-header.centered { text-align: center; }
.section-header.centered .section-label { justify-content: center; }
.section-header.centered .section-subtitle { margin: 0 auto; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy-dark);
}

.hero-image {
  width: 100%;
  line-height: 0;
}

.hero-image img {
  display: block;
  width: 100%;
  height: auto;
}

.hero .container {
  padding-top: 2.5rem;
  padding-bottom: 3rem;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(30,168,168,.15);
  border: 1px solid rgba(30,168,168,.3);
  color: var(--teal-light);
  padding: .35rem .9rem;
  border-radius: 99px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: .75rem;
  text-wrap: balance;
}
.hero-title em {
  font-style: normal;
  color: var(--teal-light);
}
.hero-subtitle {
  font-size: clamp(1rem, 1.7vw, 1.12rem);
  color: rgba(255,255,255,.9);
  margin-bottom: 1.75rem;
  line-height: 1.62;
  max-width: 600px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
}

.hero .btn-outline:hover {
  background: rgba(255, 255, 255, 0.95);
  color: var(--navy-dark);
  border-color: rgba(255, 255, 255, 0.95);
}
.hero-badges {
  margin-top: 3.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: rgba(255,255,255,.7);
  font-size: .85rem;
}
.hero-badge .badge-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .hero .container {
    padding-top: 1.75rem;
    padding-bottom: 2rem;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-badges {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
  }

  .hero-badges {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

/* ── Neden Biz? ───────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--teal);
}
.why-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--sky-pale), var(--sky));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
[data-theme="dark"] .why-icon { background: rgba(30,168,168,.15); }
.why-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem;
}
[data-theme="dark"] .why-card h3 { color: var(--white); }
.why-card p { font-size: .9rem; color: var(--text-light); }

/* ── İstatistikler ────────────────────────────────────────── */
.stats-section {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: white;
  padding: 4rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.stat-item {
  text-align: center;
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--teal-light);
  line-height: 1;
}
.stat-suffix {
  font-size: 1.5rem;
  color: var(--teal);
}
.stat-label {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  margin-top: .5rem;
}

/* ── Hizmetler ────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--sky));
  transform: scaleX(0);
  transition: transform var(--tr);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  display: block;
}
.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .6rem;
}
[data-theme="dark"] .service-card h3 { color: var(--white); }
.service-card p { font-size: .9rem; color: var(--text-light); margin-bottom: 1.2rem; }
.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: 1.5rem;
}
.feature-tag {
  font-size: .75rem;
  background: var(--sky-pale);
  color: var(--navy);
  padding: .2rem .6rem;
  border-radius: 99px;
  border: 1px solid var(--sky);
}
[data-theme="dark"] .feature-tag {
  background: rgba(30,168,168,.1);
  color: var(--sky);
  border-color: rgba(30,168,168,.2);
}
.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.service-price {
  font-size: .85rem;
  color: var(--teal);
  font-weight: 700;
}
.service-duration { font-size: .78rem; color: var(--text-light); }

/* ── Galeri ───────────────────────────────────────────────── */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2rem;
}
.filter-btn {
  padding: .4rem .9rem;
  border-radius: 99px;
  border: 2px solid var(--border);
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-mid);
  transition: all var(--tr);
}
.filter-btn:hover,
.filter-btn.active {
  border-color: var(--teal);
  background: var(--teal);
  color: white;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery-item:hover img,
.gallery-item:hover video { transform: scale(1.06); }
.gallery-play-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(0,0,0,.55);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  pointer-events: none;
}
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,29,56,.8) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--tr);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  color: white;
  font-size: .85rem;
  font-weight: 600;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

/* ── SSS ──────────────────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: .75rem;
  overflow: hidden;
  transition: box-shadow var(--tr);
}
.faq-item.open { box-shadow: var(--shadow-sm); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.4rem;
  text-align: left;
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  background: var(--surface);
  gap: 1rem;
  transition: background var(--tr);
}
.faq-question:hover { background: var(--sky-pale); }
.faq-item.open .faq-question { color: var(--teal); }
.faq-chevron {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  transition: transform .3s, border-color .3s, background .3s;
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  border-color: var(--teal);
  background: var(--teal);
  color: white;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s;
  background: var(--surface);
}
.faq-answer-inner {
  padding: 0 1.4rem;
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-item.open .faq-answer-inner { padding: 0 1.4rem 1.2rem; }

/* ── İletişim ─────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-info-cards { display: flex; flex-direction: column; gap: 1rem; }
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  transition: border-color var(--tr);
}
.contact-info-card:hover { border-color: var(--teal); }
.contact-info-icon {
  width: 44px; height: 44px;
  background: var(--sky-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
[data-theme="dark"] .contact-info-icon { background: rgba(30,168,168,.1); }
.contact-info-label { font-size: .78rem; color: var(--text-light); margin-bottom: .2rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.contact-info-value { font-size: .95rem; font-weight: 600; color: var(--text); }
.contact-info-card a:hover .contact-info-value { color: var(--teal); }

.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.contact-form-wrap h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
[data-theme="dark"] .contact-form-wrap h3 { color: var(--white); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: .4rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .7rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-alt);
  color: var(--text);
  font-size: .9rem;
  transition: border-color var(--tr), box-shadow var(--tr);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(30,168,168,.15);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.maps-wrap {
  margin-top: 3rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 320px;
}
.maps-wrap iframe { width: 100%; height: 100%; border: none; }

/* ── Footer ───────────────────────────────────────────────── */
#site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.8);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand { }
.footer-logo {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: 1rem;
}
.footer-logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
}
.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1rem;
  color: white;
  font-weight: 700;
}
.footer-desc {
  font-size: .88rem;
  line-height: 1.7;
  color: rgba(255,255,255,.55);
  margin-bottom: 1.5rem;
}
.footer-social {
  display: flex;
  gap: .6rem;
}
.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  transition: background var(--tr), color var(--tr);
}
.social-btn:hover { background: var(--teal); color: white; }

.footer-col h4 {
  font-size: .85rem;
  font-weight: 700;
  color: white;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  transition: color var(--tr);
}
.footer-links a:hover { color: var(--teal); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  margin-bottom: .75rem;
  font-size: .88rem;
  color: rgba(255,255,255,.55);
}
.footer-contact-item span:first-child { flex-shrink: 0; margin-top: .1rem; }
.footer-contact-item a { color: rgba(255,255,255,.55); }
.footer-contact-item a:hover { color: var(--teal); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .82rem;
  color: rgba(255,255,255,.35);
}

.footer-credit {
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  padding: .9rem 0;
}
.footer-credit-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: .6rem .9rem;
  text-align: center;
}
.footer-credit-icon {
  font-size: 1.05rem;
  line-height: 1;
}
.footer-credit-text {
  font-size: .86rem;
  font-weight: 500;
  color: var(--navy-dark);
}
.footer-credit-text strong {
  font-weight: 700;
}
.footer-credit-phone {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .86rem;
  font-weight: 700;
  color: var(--navy-dark);
  background: rgba(255,255,255,.35);
  padding: .35rem .9rem;
  border-radius: var(--radius-sm, 8px);
  transition: background var(--tr), transform var(--tr);
}
.footer-credit-phone:hover {
  background: rgba(255,255,255,.6);
  transform: translateY(-1px);
}

/* ── Sabit butonlar ───────────────────────────────────────── */
.floating-buttons {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  z-index: 500;
}
.fab {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: white;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
  transition: transform .2s, box-shadow .2s;
}
.fab:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(0,0,0,.35); }
.fab-whatsapp { background: #25D366; }
.fab-phone { background: var(--navy); }
.fab-top {
  background: var(--teal);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .3s, transform .3s;
}
.fab-top.visible { opacity: 1; pointer-events: auto; transform: none; }

/* ── Cookie Banner ────────────────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9990;
  background: var(--navy-dark);
  color: rgba(255,255,255,.85);
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.1);
  transform: translateY(100%);
  transition: transform .4s ease;
}
#cookie-banner.show { transform: none; }
#cookie-banner p { font-size: .88rem; flex: 1; min-width: 240px; }
.cookie-actions { display: flex; gap: .75rem; flex-shrink: 0; }

/* ── Page transitions ─────────────────────────────────────── */
.page-enter {
  animation: pageFadeIn .4s ease forwards;
}
@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}

/* ── Dark mode toggle ─────────────────────────────────────── */
.theme-toggle {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-mid);
  transition: background var(--tr), color var(--tr);
}
.theme-toggle:hover { background: var(--sky-pale); color: var(--teal); }

/* ── Utility ──────────────────────────────────────────────── */
.text-teal { color: var(--teal); }
.text-center { text-align: center; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-0 { margin-bottom: 0; }
.d-none { display: none !important; }

/* ── Hakkımızda sayfası ───────────────────────────────────── */
.about-hero {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: white;
  padding: 5rem 0 4rem;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--navy-mid), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 5rem;
}
.about-image-frame::after {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 100px; height: 100px;
  background: var(--teal);
  border-radius: 50%;
  opacity: .15;
}
.about-year-badge {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: var(--teal);
  color: white;
  padding: .75rem 1.2rem;
  border-radius: var(--radius);
  text-align: center;
}
.about-year-badge strong { font-family: var(--font-display); font-size: 1.8rem; display: block; line-height: 1; }
.about-year-badge span { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.about-value {
  background: var(--sky-pale);
  border-radius: var(--radius);
  padding: 1.25rem;
  border: 1px solid var(--sky);
}
[data-theme="dark"] .about-value {
  background: rgba(30,168,168,.07);
  border-color: rgba(30,168,168,.15);
}
.about-value h4 { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: .35rem; }
[data-theme="dark"] .about-value h4 { color: var(--sky); }
.about-value p { font-size: .82rem; color: var(--text-light); }

/* ── Lightbox ─────────────────────────────────────────────── */
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 9995;
  background: rgba(0,0,0,.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
#lightbox.open { opacity: 1; pointer-events: auto; }
#lightbox img,
#lightbox video {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 0 80px rgba(0,0,0,.5);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.lightbox-close:hover { background: rgba(255,255,255,.25); }
