/* ============================================================
   assets/css/style.css
   drimplant – Ana Site Stilleri
   Açık mavi / beyaz, ferah, modern sağlık arayüzü
   ============================================================ */

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

/* ══════════════════════════════════════════════════════════════
   1. CSS CUSTOM PROPERTIES (Design Tokens)
   ══════════════════════════════════════════════════════════════ */
:root {
  /* Renk Paleti */
  --primary:       #2563EB;
  --primary-dark:  #1D4ED8;
  --primary-light: #3B82F6;
  --accent:        #0EA5E9;
  --accent-light:  #38BDF8;
  --white:         #FFFFFF;
  --off-white:     #F0F7FF;
  --surface:       #FFFFFF;
  --surface-2:     #F8FBFF;

  /* Metin */
  --text-primary:  #0F172A;
  --text-body:     #334155;
  --text-muted:    #64748B;
  --text-light:    #94A3B8;

  /* Kenarlık */
  --border:        #E2EEFF;
  --border-light:  #F0F7FF;

  /* Gölge */
  --shadow-sm:  0 1px 3px rgba(37,99,235,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow:     0 4px 16px rgba(37,99,235,0.08), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-md:  0 8px 32px rgba(37,99,235,0.12), 0 2px 8px rgba(0,0,0,0.06);
  --shadow-lg:  0 20px 60px rgba(37,99,235,0.15), 0 4px 16px rgba(0,0,0,0.08);
  --shadow-glow:0 0 40px rgba(37,99,235,0.20);

  /* Tipografi */
  --font:       'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-size:  1rem;
  --line-height:1.65;

  /* Boyutlar */
  --container:  1200px;
  --radius-sm:  8px;
  --radius:     14px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --radius-pill:100px;

  /* Geçiş */
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring:cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration:   0.25s;

  /* Header */
  --header-h:   72px;
}

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

html {
  font-size: 16px;
  scroll-behavior: auto; /* Smooth scroll JS ile yapılıyor */
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: var(--font-size);
  line-height: var(--line-height);
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
  /* JS smooth scroll için */
  overflow-y: scroll;
}

/* Lenis smooth scroll sınıfı */
html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }

img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--duration) var(--ease); }
a:hover { color: var(--primary-dark); }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* Erişilebilirlik: klavye odaklanma */
:focus-visible {
  outline: 2.5px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ══════════════════════════════════════════════════════════════
   3. YARDIMCI SINIFLAR
   ══════════════════════════════════════════════════════════════ */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.5rem;
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}
.text-center { text-align: center; }
.text-primary { color: var(--primary); }

/* ══════════════════════════════════════════════════════════════
   4. HEADER & NAVİGASYON
   ══════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid rgba(37,99,235,0.08);
  z-index: 900;
  transition: height var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease),
              background var(--duration) var(--ease),
              transform 0.3s ease;
}

.site-header.scrolled {
  height: 62px;
  box-shadow: var(--shadow);
  background: rgba(255,255,255,0.96);
}

.site-header.header-hidden {
  transform: translateY(-100%);
}

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

/* ── Logo ── */
.logo {
  display: flex; align-items: center; gap: 0.65rem;
  text-decoration: none; flex-shrink: 0;
  transition: opacity var(--duration) var(--ease);
}
.logo:hover { opacity: 0.85; }

.logo-mark {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(37,99,235,0.30);
  transition: transform var(--duration) var(--ease-spring);
}
.logo:hover .logo-mark { transform: rotate(-5deg) scale(1.05); }
.logo-mark svg { width: 24px; height: 24px; fill: white; }

.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-brand {
  font-size: 1.1875rem; color: var(--text-primary); letter-spacing: -0.02em;
}
.logo-brand strong { color: var(--primary); }
.logo-sub { font-size: 0.6875rem; color: var(--text-muted); font-weight: 500; letter-spacing: 0.02em; }

/* ── Nav List ── */
.main-nav { flex: 1; display: flex; justify-content: center; }
.nav-list  { display: flex; align-items: center; gap: 0.25rem; }

.nav-link {
  display: flex; align-items: center; gap: 0.3rem;
  padding: 0.5rem 0.875rem;
  font-size: 0.9375rem; font-weight: 600;
  color: var(--text-body); border-radius: var(--radius-sm);
  position: relative;
  transition: color var(--duration) var(--ease), background var(--duration) var(--ease);
  background: none; border: none;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; right: 50%;
  height: 2px; background: var(--primary); border-radius: 2px;
  transition: left var(--duration) var(--ease), right var(--duration) var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--primary); }
.nav-link:hover::after, .nav-link.active::after { left: 0.875rem; right: 0.875rem; }
.nav-link:hover { text-decoration: none; }

.nav-link--dropdown { cursor: pointer; }
.dropdown-chevron {
  width: 14px; height: 14px;
  transition: transform var(--duration) var(--ease);
}
.nav-item--dropdown.open .dropdown-chevron { transform: rotate(180deg); }

/* ── Dropdown Menü ── */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%; transform: translateX(-50%) translateY(-8px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-width: 600px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
  z-index: 200;
  overflow: hidden;
}

.nav-item--dropdown { position: relative; }

.nav-item--dropdown.open .dropdown-menu,
.nav-item--dropdown:focus-within .dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; padding: 0.75rem;
}

.dropdown-item {
  display: flex; align-items: flex-start; gap: 0.6rem;
  padding: 0.75rem 0.875rem; border-radius: var(--radius);
  text-decoration: none;
  transition: background var(--duration) var(--ease), transform 0.15s var(--ease);
}
.dropdown-item:hover {
  background: var(--off-white);
  transform: translateY(-1px);
  text-decoration: none;
}
.di-icon {
  font-size: 1.375rem; line-height: 1; flex-shrink: 0; margin-top: 1px;
}
.dropdown-item strong {
  display: block; font-size: 0.8125rem; font-weight: 700;
  color: var(--text-primary); line-height: 1.2;
}
.dropdown-item small {
  display: block; font-size: 0.7rem; color: var(--text-muted);
  margin-top: 2px; line-height: 1.3;
}

.dropdown-footer {
  border-top: 1px solid var(--border);
  padding: 0.75rem 1.25rem;
  background: var(--off-white);
}
.dropdown-cta {
  font-size: 0.8125rem; font-weight: 700; color: var(--primary);
  text-decoration: none;
}
.dropdown-cta:hover { text-decoration: underline; }

/* ── Header Right ── */
.header-right { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }

/* ── Dil Seçici ── */
.lang-switcher { display: flex; gap: 0.25rem; }
.lang-btn {
  display: flex; align-items: center; gap: 0.3rem;
  padding: 0.3rem 0.6rem; border-radius: 8px;
  font-size: 0.75rem; font-weight: 700;
  color: var(--text-muted);
  border: 1.5px solid transparent;
  background: transparent;
  transition: all var(--duration) var(--ease);
}
.lang-btn svg { width: 24px; height: 16px; border-radius: 2px; display: block; }
.lang-btn:hover { background: var(--off-white); color: var(--text-primary); }
.lang-btn--active {
  border-color: var(--primary);
  background: rgba(37,99,235,0.07);
  color: var(--primary);
}

/* ── Header CTA Butonu ── */
.btn-header-cta {
  padding: 0.5rem 1.1rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white; border-radius: var(--radius-pill);
  font-size: 0.875rem; font-weight: 700;
  box-shadow: 0 2px 10px rgba(37,99,235,0.30);
  transition: transform var(--duration) var(--ease-spring),
              box-shadow var(--duration) var(--ease);
  white-space: nowrap;
  text-decoration: none;
}
.btn-header-cta:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 4px 16px rgba(37,99,235,0.40);
  color: white; text-decoration: none;
}

/* ── Hamburger ── */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 0.4rem; background: none; border: none; cursor: pointer;
}
.hamburger-bar {
  display: block; width: 22px; height: 2.5px;
  background: var(--text-primary); border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.hamburger.open .hamburger-bar:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open .hamburger-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open .hamburger-bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── Mobil Nav ── */
.mobile-nav-overlay {
  position: fixed; inset: 0; background: rgba(15,23,42,0.5);
  backdrop-filter: blur(4px); z-index: 850;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.3s var(--ease), visibility 0.3s;
}
.mobile-nav-overlay.open { opacity: 1; visibility: visible; pointer-events: auto; }

/* ══════════════════════════════════════════════════════════════
   5. ORTAK BUTON SİSTEMİ
   ══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.75rem 1.75rem; border-radius: var(--radius-pill);
  font-family: var(--font); font-size: 0.9375rem; font-weight: 700;
  letter-spacing: 0.01em; border: 2px solid transparent;
  cursor: pointer; text-decoration: none;
  transition: transform var(--duration) var(--ease-spring),
              box-shadow var(--duration) var(--ease),
              background var(--duration) var(--ease);
  position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.12); opacity: 0;
  transition: opacity 0.2s;
}
.btn:hover::after { opacity: 1; }
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  box-shadow: 0 4px 18px rgba(37,99,235,0.35);
}
.btn-primary:hover {
  box-shadow: 0 6px 24px rgba(37,99,235,0.45);
  color: white;
}

.btn-outline {
  background: transparent; color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: white; }
.btn-outline::after { background: none; }

.btn-white {
  background: white; color: var(--primary);
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}
.btn-white:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.15); color: var(--primary-dark); }

.btn-lg { padding: 0.95rem 2.25rem; font-size: 1.0625rem; }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; }

/* ══════════════════════════════════════════════════════════════
   6. BÖLÜM BAŞLIKLARI (SECTION HEADERS)
   ══════════════════════════════════════════════════════════════ */
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }

@media (min-width: 1024px) {
  .section { padding: 8rem 0; }
  .section-sm { padding: 5rem 0; }
}

.section-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.35rem 1rem; background: rgba(37,99,235,0.08);
  border-radius: var(--radius-pill); border: 1px solid rgba(37,99,235,0.15);
  font-size: 0.8125rem; font-weight: 700; color: var(--primary);
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800; line-height: 1.15;
  color: var(--text-primary); letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.section-title span { color: var(--primary); }

.section-subtitle {
  font-size: 1.0625rem; color: var(--text-muted);
  max-width: 560px; line-height: 1.7;
}
.section-header-center {
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
  margin-bottom: 3.5rem;
}
.section-header-center .section-subtitle { margin-inline: auto; }

/* ══════════════════════════════════════════════════════════════
   7. HERO (YEPYENİ TEMİZ YAPI)
   ══════════════════════════════════════════════════════════════ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 75% 50%, #e0f2fe 0%, #f0f9ff 45%, #f8fafc 100%);
  padding-top: var(--header-h, 90px);
  overflow: hidden;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
}

@media (max-width: 991px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

/* --- SOL İÇERİK --- */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media (max-width: 991px) {
  .hero-content { align-items: center; }
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #ffffff;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
  margin-bottom: 2rem;
}

.hero-tag-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--primary);
  animation: pulse 2s infinite;
}

.hero-tag-text {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
}

.hero-brand {
  color: var(--primary);
  display: block;
}

.hero-desc {
  font-size: 1.125rem;
  color: #475569;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2.5rem;
}

/* Butonlar Flex-Row Yapısı */
.hero-actions {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .hero-actions { justify-content: center; }
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1.0625rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.hero-btn-primary {
  background: var(--primary);
  color: #ffffff !important;
  box-shadow: 0 10px 25px rgba(37,99,235,0.3);
}

.hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(37,99,235,0.45);
}

.hero-btn-icon {
  width: 20px;
  height: 20px;
}

.hero-btn-secondary {
  background: #ffffff;
  color: var(--primary) !important;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.hero-btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  color: #1d4ed8 !important;
}

/* --- SAĞ İÇERİK (YENİ MODERN GÖRSEL) --- */
.hero-visual-modern {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 550px;
  width: 100%;
}

.hero-composition {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 550px;
}

/* Arkaplan Blob Efekti */
.hero-blob-bg {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 80%;
  height: 80%;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(124, 58, 237, 0.2));
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  filter: blur(40px);
  animation: blobMorph 8s ease-in-out infinite;
  z-index: 0;
}

@keyframes blobMorph {
  0% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
  100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

/* Ana Büyük Görsel */
.img-main-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  width: 85%;
  height: 85%;
  border-radius: 2rem 2rem 2rem 8rem;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.15);
  z-index: 2;
  border: 6px solid #ffffff;
}

.img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.img-main-wrapper:hover .img-main {
  transform: scale(1.05);
}

.img-overlay-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.4) 0%, transparent 40%);
  pointer-events: none;
}

/* İkinci Küçük Görsel */
.img-second-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 55%;
  height: 45%;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.2);
  z-index: 3;
  border: 6px solid #ffffff;
}

.img-second {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Yeni Glassmorphism Rozet */
.hero-badge-glass {
  position: absolute;
  top: 20%;
  left: -5%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  z-index: 4;
}

.badge-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F59E0B, #D97706);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
}

.badge-icon-wrap svg {
  width: 20px;
  height: 20px;
}

.badge-text-wrap {
  display: flex;
  flex-direction: column;
}

.badge-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.1;
}

.badge-desc {
  font-size: 0.8rem;
  color: #64748B;
  font-weight: 600;
}


@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
  100% { transform: scale(1); opacity: 1; }
}


/* Hero Stats Bar */
.hero-stats {
  display: flex; gap: 2rem; margin-top: 2.5rem; flex-wrap: wrap;
}
.hero-stat-item { text-align: center; }
.hero-stat-num {
  display: block; font-size: 1.75rem; font-weight: 800;
  color: var(--primary); line-height: 1;
}
.hero-stat-label {
  font-size: 0.8125rem; color: var(--text-muted); font-weight: 500; margin-top: 0.2rem;
}
.hero-stat-divider {
  width: 1px; background: var(--border); align-self: stretch;
}

/* ══════════════════════════════════════════════════════════════
   8. HİZMETLER GRID
   ══════════════════════════════════════════════════════════════ */
.services-section { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-decoration: none; color: var(--text-body);
  position: relative; overflow: hidden;
  transition: transform 0.25s var(--ease-spring),
              box-shadow 0.25s var(--ease),
              border-color 0.25s var(--ease);
  display: block;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37,99,235,0.20);
  text-decoration: none; color: var(--text-body);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(37,99,235,0.10), rgba(14,165,233,0.10));
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.625rem;
  margin-bottom: 1.25rem;
  transition: transform 0.2s var(--ease-spring);
}
.service-card:hover .service-icon { transform: scale(1.1) rotate(-5deg); }

.service-title {
  font-size: 1rem; font-weight: 700; color: var(--text-primary);
  margin-bottom: 0.5rem; line-height: 1.3;
}
.service-summary {
  font-size: 0.875rem; color: var(--text-muted); line-height: 1.65;
}
.service-arrow {
  margin-top: 1rem; font-size: 0.8125rem; font-weight: 700; color: var(--primary);
  display: inline-flex; align-items: center; gap: 0.25rem;
  opacity: 0; transform: translateX(-4px);
  transition: opacity 0.2s, transform 0.2s;
}
.service-card:hover .service-arrow { opacity: 1; transform: translateX(0); }

/* ══════════════════════════════════════════════════════════════
   9. BEFORE / AFTER SLIDER
   ══════════════════════════════════════════════════════════════ */
.ba-section { background: var(--off-white); }

.ba-wrapper {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.ba-item {
  border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
  background: white;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.ba-item-label {
  padding: 0.875rem 1.25rem; font-size: 0.875rem;
  font-weight: 700; color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}

/* Sürüklenebilir Before/After karşılaştırıcı */
.ba-slider-container {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden; user-select: none; cursor: col-resize;
  flex-grow: 1;
  display: flex;
}
.ba-img {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover;
  -webkit-user-drag: none; user-drag: none; pointer-events: none;
}
.ba-img--placeholder {
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; font-weight: 800; letter-spacing: 0.05em;
}
.ba-img--before { background: linear-gradient(135deg, #CBD5E1, #94A3B8); color: rgba(255,255,255,0.5); }
.ba-img--after  {
  background: linear-gradient(135deg, #BFDBFE, #93C5FD); color: rgba(37,99,235,0.4);
  clip-path: inset(0 0 0 50%); /* JS tarafından dinamik değiştirilir */
}

/* Ayırıcı çizgi & tutamaç */
.ba-divider {
  position: absolute; top: 0; bottom: 0;
  width: 2px; background: white;
  left: 50%; transform: translateX(-50%);
  z-index: 5;
  box-shadow: 0 0 6px rgba(0,0,0,0.3);
}
.ba-handle {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  background: white; border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0,0,0,0.20);
  display: flex; align-items: center; justify-content: center;
  z-index: 6;
  transition: transform 0.15s var(--ease-spring);
}
.ba-handle svg { width: 20px; height: 20px; color: var(--primary); pointer-events: none; }

.ba-labels {
  display: flex; justify-content: space-between;
  padding: 0.5rem 0.75rem;
}
.ba-label-tag {
  font-size: 0.75rem; font-weight: 700; padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
}
.ba-label-tag--before { background: rgba(100,116,139,0.12); color: var(--text-muted); }
.ba-label-tag--after  { background: rgba(37,99,235,0.10);   color: var(--primary); }

/* ══════════════════════════════════════════════════════════════
   10. RANDEVU FORMU
   ══════════════════════════════════════════════════════════════ */
.appointment-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  position: relative; overflow: hidden;
}
.appointment-section::before {
  content: ''; position: absolute;
  width: 600px; height: 600px; border-radius: 50%;
  background: rgba(255,255,255,0.05);
  top: -200px; right: -200px; pointer-events: none;
}

.appointment-inner {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: center;
}
.appt-left { color: white; }
.appt-left .section-title { color: white; }
.appt-left .section-subtitle { color: rgba(255,255,255,0.80); }

.appt-features { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.appt-feature  { display: flex; align-items: center; gap: 0.75rem; color: rgba(255,255,255,0.9); font-weight: 500; }
.appt-feature-icon {
  width: 36px; height: 36px; background: rgba(255,255,255,0.15);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}

.appt-form-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 32px 80px rgba(0,0,0,0.12), inset 0 2px 4px rgba(255,255,255,0.8);
}

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-size: 0.8125rem; font-weight: 700;
  color: var(--text-primary); margin-bottom: 0.5rem;
  text-transform: uppercase; letter-spacing: 0.05em;
  opacity: 0.8;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.85rem 1.25rem;
  border: 1.5px solid rgba(0,0,0,0.08); 
  border-radius: 14px;
  font-family: var(--font); font-size: 0.95rem; color: var(--text-primary);
  background: #f8fafc;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary); 
  background: white;
  box-shadow: 0 8px 24px rgba(37,99,235,0.12), 0 0 0 4px rgba(37,99,235,0.10);
  transform: translateY(-1px);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-message {
  padding: 0.75rem 1rem; border-radius: var(--radius-sm);
  font-size: 0.875rem; font-weight: 600; margin-bottom: 1rem;
}
.form-message--success { background: rgba(16,185,129,0.10); color: #065F46; border: 1px solid rgba(16,185,129,0.25); }
.form-message--error   { background: rgba(239,68,68,0.10);  color: #991B1B;  border: 1px solid rgba(239,68,68,0.25); }

/* ══════════════════════════════════════════════════════════════
   11. HİZMET DETAY SAYFASI
   ══════════════════════════════════════════════════════════════ */
.service-detail-hero {
  padding: calc(var(--header-h) + 3rem) 0 3.5rem;
  background: linear-gradient(160deg, #EFF6FF 0%, #DBEAFE 50%, #F0F9FF 100%);
  position: relative; overflow: hidden;
}
.service-detail-hero::after {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.08), transparent 70%);
}

.sdh-inner {
  display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center;
}
.sdh-tag { margin-bottom: 0.75rem; }
.sdh-title {
  font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 800;
  letter-spacing: -0.03em; color: var(--text-primary);
  line-height: 1.15; margin-bottom: 1rem;
}
.sdh-desc { font-size: 1.0625rem; color: var(--text-muted); max-width: 540px; }

.service-detail-content {
  display: grid; grid-template-columns: 1fr 340px; gap: 3rem; align-items: start;
}
.service-detail-body { font-size: 1rem; color: var(--text-body); line-height: 1.75; }
.service-detail-body h2, .service-detail-body h3 {
  color: var(--text-primary); font-weight: 700; margin: 2rem 0 0.75rem;
}
.service-detail-body h2 { font-size: 1.375rem; }
.service-detail-body h3 { font-size: 1.125rem; }
.service-detail-body p  { margin-bottom: 1rem; }
.service-detail-body ul, .service-detail-body ol {
  margin: 1rem 0 1rem 1.5rem; list-style: disc;
}
.service-detail-body li { margin-bottom: 0.4rem; }

/* Sidebar sticky */
.service-detail-sidebar { position: sticky; top: calc(var(--header-h) + 1.5rem); }

/* ── WhatsApp CTA Kutusu ── */
.wa-cta-box {
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: var(--radius-lg);
  padding: 2rem;
  color: white; text-align: center;
  box-shadow: 0 8px 32px rgba(37,211,102,0.30);
  position: relative; overflow: hidden;
  animation: wa-pulse 3s ease-in-out infinite;
}
.wa-cta-box::before {
  content: ''; position: absolute; top: -30px; right: -30px;
  width: 120px; height: 120px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(37,211,102,0.30); }
  50%       { box-shadow: 0 12px 44px rgba(37,211,102,0.45); }
}
.wa-cta-icon { font-size: 3rem; margin-bottom: 1rem; display: block; }
.wa-cta-title { font-size: 1.125rem; font-weight: 800; margin-bottom: 0.5rem; }
.wa-cta-desc  { font-size: 0.875rem; opacity: 0.9; margin-bottom: 1.5rem; line-height: 1.6; }
.wa-cta-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 1.75rem; background: white;
  color: #128C7E; border-radius: var(--radius-pill);
  font-size: 0.9375rem; font-weight: 800;
  transition: transform 0.2s var(--ease-spring), box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  text-decoration: none;
}
.wa-cta-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
  color: #128C7E; text-decoration: none;
}
.wa-cta-btn svg { width: 20px; height: 20px; }

/* SSS Accordion */
.faq-section { margin-top: 3.5rem; }
.faq-item {
  border: 1.5px solid var(--border); border-radius: var(--radius);
  margin-bottom: 0.75rem; overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--primary); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.125rem 1.25rem; text-align: left;
  font-size: 0.9375rem; font-weight: 700; color: var(--text-primary);
  background: none; cursor: pointer; border: none;
  transition: color 0.2s;
}
.faq-item.open .faq-question { color: var(--primary); }
.faq-chevron {
  width: 18px; height: 18px; color: var(--text-muted); flex-shrink: 0;
  transition: transform 0.25s var(--ease);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--primary); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s var(--ease), padding 0.3s;
  padding: 0 1.25rem;
  font-size: 0.9375rem; color: var(--text-muted); line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 400px; padding: 0 1.25rem 1.125rem; }

/* ══════════════════════════════════════════════════════════════
   12. FOOTER
   ══════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--text-primary);
  color: rgba(255,255,255,0.75);
  padding-top: 0;
}
.footer-wave { line-height: 0; }
.footer-wave svg { width: 100%; display: block; }

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 3rem; padding: 3.5rem 0 3rem;
}

/* Footer Logo */
.footer-logo {
  display: flex; align-items: center; gap: 0.6rem;
  color: white; text-decoration: none; font-size: 1.25rem; font-weight: 800;
  margin-bottom: 1rem; display: flex;
}
.footer-logo-mark {
  width: 38px; height: 38px; background: var(--primary); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.footer-logo-mark svg { width: 20px; height: 20px; fill: white; }
.footer-logo strong { color: #93C5FD; }

.footer-tagline {
  font-size: 0.875rem; line-height: 1.8;
  color: rgba(255,255,255,0.55); margin-bottom: 1.5rem;
}

.footer-social { display: flex; gap: 0.6rem; }
.social-btn {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  text-decoration: none;
}
.social-btn svg { width: 18px; height: 18px; }
.social-btn:hover { background: var(--primary); color: white; transform: translateY(-2px); text-decoration: none; }
.social-btn--wa:hover { background: #25D366; }

/* Footer Sütunlar */
.footer-heading {
  font-size: 0.75rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.08em; color: rgba(255,255,255,0.9);
  margin-bottom: 1.25rem;
}

.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.875rem; color: rgba(255,255,255,0.55);
  transition: color 0.2s, transform 0.2s; display: inline-block;
  text-decoration: none;
}
.footer-links a:hover { color: white; transform: translateX(3px); text-decoration: none; }

.footer-contact-list { display: flex; flex-direction: column; gap: 0.875rem; }
.footer-contact-list li {
  display: flex; align-items: flex-start; gap: 0.65rem;
  font-size: 0.875rem; color: rgba(255,255,255,0.65);
}
.footer-contact-list svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; opacity: 0.6; }
.footer-contact-list a { color: rgba(255,255,255,0.65); }
.footer-contact-list a:hover { color: white; }

.footer-wa-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  margin-top: 1.25rem; padding: 0.65rem 1.25rem;
  background: #25D366; color: white; border-radius: var(--radius-pill);
  font-size: 0.8125rem; font-weight: 700;
  transition: transform 0.2s var(--ease-spring), box-shadow 0.2s;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(37,211,102,0.30);
}
.footer-wa-btn svg { width: 18px; height: 18px; }
.footer-wa-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.40);
  color: white; text-decoration: none;
}

/* Footer Alt Bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.25rem 0;
}
.footer-bottom-inner {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem;
}
.footer-bottom p { font-size: 0.8125rem; color: rgba(255,255,255,0.4); }
.footer-bottom strong { color: rgba(255,255,255,0.65); }
.footer-bottom-links { display: flex; gap: 1rem; align-items: center; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); transition: color 0.2s; text-decoration: none; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.8); }
.footer-bottom-links span { color: rgba(255,255,255,0.2); }

/* ══════════════════════════════════════════════════════════════
   13. SCROLL ANİMASYONLARI
   ══════════════════════════════════════════════════════════════ */
[data-anim] {
  opacity: 0;
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
[data-anim="fade-up"]   { transform: translateY(30px); }
[data-anim="fade-down"] { transform: translateY(-30px); }
[data-anim="fade-left"] { transform: translateX(-30px); }
[data-anim="fade-right"]{ transform: translateX(30px); }
[data-anim="zoom-in"]   { transform: scale(0.92); }

[data-anim].is-visible {
  opacity: 1;
  transform: none;
}

/* Stagger delays */
[data-delay="100"] { transition-delay: 0.10s; }
[data-delay="200"] { transition-delay: 0.20s; }
[data-delay="300"] { transition-delay: 0.30s; }
[data-delay="400"] { transition-delay: 0.40s; }
[data-delay="500"] { transition-delay: 0.50s; }
[data-delay="600"] { transition-delay: 0.60s; }
[data-delay="700"] { transition-delay: 0.70s; }
[data-delay="800"] { transition-delay: 0.80s; }

/* ══════════════════════════════════════════════════════════════
   14. İLETİŞİM SAYFASI
   ══════════════════════════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; align-items: start; }
.contact-info-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.25rem; background: var(--surface-2);
  border: 1px solid var(--border); border-radius: var(--radius);
  margin-bottom: 1rem;
}
.contact-info-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(37,99,235,0.10), rgba(14,165,233,0.10));
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
}
.contact-info-icon svg { width: 22px; height: 22px; color: var(--primary); }
.contact-info-body strong { display: block; font-size: 0.875rem; font-weight: 700; color: var(--text-primary); }
.contact-info-body span  { font-size: 0.875rem; color: var(--text-muted); }

.map-wrapper {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--border);
  margin-top: 2rem; aspect-ratio: 16/7;
  background: var(--off-white); display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.875rem;
}
.map-wrapper iframe { width: 100%; height: 100%; border: none; }

/* ══════════════════════════════════════════════════════════════
   15. HAKKIMIZDA SAYFASI
   ══════════════════════════════════════════════════════════════ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.about-img-block {
  aspect-ratio: 4/4.5;
  background: linear-gradient(135deg, #DBEAFE, #BAE6FD);
  border-radius: var(--radius-xl); box-shadow: var(--shadow-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
}
.cert-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.cert-item {
  padding: 1rem; background: var(--off-white);
  border: 1px solid var(--border); border-radius: var(--radius);
  text-align: center;
}
.cert-item strong { display: block; font-size: 0.875rem; color: var(--text-primary); }
.cert-item small  { font-size: 0.75rem; color: var(--text-muted); }

/* ══════════════════════════════════════════════════════════════
   16. SAYFA BAŞINDA PAD (fixed header için)
   ══════════════════════════════════════════════════════════════ */
.page-top-pad { padding-top: var(--header-h); }

/* ══════════════════════════════════════════════════════════════
   17. RESPONSİVE
   ══════════════════════════════════════════════════════════════ */

/* ——— Tablet (≤1024px) ——— */
@media (max-width: 1024px) {
  .hero-container           { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .hero-content             { align-items: center; }
  .hero-visual-modern       { display: flex; justify-content: center; min-height: 380px; }
  .hero-composition         { max-width: 420px; height: 420px; }
  .hero-actions             { justify-content: center; }
  .hero-badge-glass         { left: 0; top: auto; bottom: -30px; }

  .appointment-inner        { grid-template-columns: 1fr; }
  .appt-left                { text-align: center; }
  .appt-features            { align-items: center; }

  .footer-inner             { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .service-detail-content   { grid-template-columns: 1fr; }
  .service-detail-sidebar   { position: static; }
  .contact-grid             { grid-template-columns: 1fr; }
  .about-grid               { grid-template-columns: 1fr; gap: 3rem; }
  .about-stats-grid         { grid-template-columns: 1fr; }
  
  /* Site footer yeni 4-col grid → 2-col */
  .site-footer > .container:first-of-type {
    grid-template-columns: 1fr 1fr !important;
  }
}

/* ——— Mobile (≤768px) ——— */
@media (max-width: 768px) {
  :root { --header-h: 62px; }

  /* Nav */
  .main-nav       { display: none; }
  .hamburger      { display: flex; }
  .btn-header-cta { display: none; }
  .lang-switcher  { gap: 0.2rem; }

  /* Genel section padding */
  .section        { padding: 3rem 0; }
  .section-title  { font-size: 1.75rem; }

  /* Hero sol içerik */
  .hero-content { align-items: center; text-align: center; }
  .hero-title   { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-desc    { font-size: 1rem; max-width: 100%; }
  .hero-actions { justify-content: center; flex-wrap: wrap; }
  .hero-btn     { font-size: 0.95rem; padding: 0.875rem 1.5rem; }
  
  /* Hero sağ görsel – daha küçük */
  .hero-visual-modern     { min-height: 300px; }
  .hero-composition       { max-width: 340px; height: 340px; }
  .img-main-wrapper       { border-radius: 1.5rem 1.5rem 1.5rem 5rem; }
  .img-second-wrapper     { width: 50%; height: 42%; }
  .hero-badge-glass       { padding: 0.75rem 1rem; bottom: -20px; left: 5px; }
  .badge-title            { font-size: 1rem; }
  .badge-desc             { font-size: 0.72rem; }

  /* Hakkımızda içi grid → tek kolon */
  div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  div[style*="grid-template-columns:repeat(4,1fr)"] {
    grid-template-columns: 1fr 1fr !important;
    gap: 1.5rem !important;
  }
  h1[style*="font-size:3.5rem"],
  h1[style*="font-size:3rem"],
  h1[style*="font-size:2.75rem"] {
    font-size: 2.25rem !important;
  }
  section[style*="padding:7rem 0 4rem"],
  section[style*="padding:6rem 0 3rem"] {
    padding: 5rem 0 3rem !important;
  }

  /* Dropdown menüsü */
  .dropdown-menu  { min-width: 92vw; }
  .dropdown-grid  { grid-template-columns: 1fr 1fr; }

  /* Hizmetler */
  .services-grid  { grid-template-columns: 1fr; }

  /* Before/After */
  .ba-wrapper     { grid-template-columns: 1fr; }

  /* Formlar */
  .form-row-2     { grid-template-columns: 1fr; }

  /* Footer yeni modern → tek kolon */
  .site-footer > div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .site-footer > .container {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .footer-inner         { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom-inner  { flex-direction: column; text-align: center; }

  /* Hizmet detay sayfaları */
  .sdh-inner    { grid-template-columns: 1fr; }
  .cert-grid    { grid-template-columns: 1fr; }

  /* Hero güven göstergeleri alt çizgi */
  div[style*="border-top:1px solid rgba(0,0,0,0.06)"] {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }
}

/* ——— Small Mobile (≤480px) ——— */
@media (max-width: 480px) {
  .container        { padding-inline: 1rem; }
  .hero-title       { font-size: 1.85rem; }
  .hero-btn-primary { width: 100%; justify-content: center; }
  .hero-btn-secondary { width: 100%; justify-content: center; }

  .hero-composition { max-width: 290px; height: 290px; }
  .img-second-wrapper { width: 48%; height: 40%; }
  .hero-badge-glass { left: 0; padding: 0.6rem 0.875rem; }

  .appt-form-card   { padding: 1.5rem; }
  .dropdown-grid    { grid-template-columns: 1fr; }

  div[style*="grid-template-columns:repeat(4,1fr)"] {
    grid-template-columns: 1fr !important;
  }

  /* Ba-slider tam genişlik */
  .ba-item          { width: 100%; }
  .ba-slider-container { aspect-ratio: 1/1; }

  /* Yeni Footer bottom bar */
  .site-footer div[style*="justify-content:space-between"] {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}

/* ==============================================================
   18. COOKIE BANNER & LENIS
   ============================================================== */
html.lenis, html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

.cookie-banner {
  position: fixed; bottom: 20px; left: 20px; right: 20px; max-width: 600px;
  background: white; border-radius: var(--radius-lg); box-shadow: var(--shadow-xl);
  border: 1px solid var(--border); padding: 1.5rem; z-index: 9999;
  display: flex; flex-direction: column; gap: 1rem;
  transform: translateY(150%); transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner-content { display: flex; gap: 1rem; align-items: flex-start; }
.cookie-icon { color: var(--primary); width: 32px; height: 32px; flex-shrink: 0; }
.cookie-text h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.25rem; color: var(--text-primary); }
.cookie-text p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.5; margin: 0; }
.cookie-actions { display: flex; gap: 0.75rem; justify-content: flex-end; }

/* ==============================================================
   19. HİZMETLER (SERVICES) - MODERN KARTLAR
   ============================================================== */
.services-section {
  background-color: #f8fafc;
  padding-top: 5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #0ea5e9);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(37,99,235,0.08);
  border-color: rgba(37,99,235,0.1);
}

.service-card:hover::before {
  opacity: 1;
}

/* Ufak Logo / İkon Alanı */
.service-icon-modern {
  width: 48px;
  height: 48px;
  background: rgba(37,99,235,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon-modern {
  transform: scale(1.1) rotate(-5deg);
  background: var(--primary);
  color: #ffffff;
}

.service-icon-modern svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1rem;
}

.service-summary {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-arrow {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.service-card:hover .service-arrow {
  gap: 0.75rem;
}
