/* =========================================================
   Özlem Rehabilitasyon Merkezi — Ortak Stil Dosyası
   Tema: Beyaz zemin + koyu gold (lüks) vurgu rengi
   ========================================================= */

:root {
  --white: #ffffff;
  --offwhite: #faf7f1;
  --charcoal: #232220;
  --charcoal-soft: #55524c;
  --gold: #b3872f;
  --gold-dark: #8a691f;
  --gold-light: #e7d8ae;
  --gold-pale: #f6efdc;
  --border: #ece6d8;
  --shadow-sm: 0 2px 10px rgba(35, 34, 32, 0.06);
  --shadow-md: 0 10px 30px rgba(35, 34, 32, 0.08);
  --shadow-lg: 0 20px 50px rgba(35, 34, 32, 0.12);
  --radius: 14px;
  --transition: 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', 'Georgia', serif;
  color: var(--charcoal);
  margin: 0 0 0.5em;
  font-weight: 600;
  letter-spacing: 0.3px;
}

p { margin: 0 0 1em; color: var(--charcoal-soft); }

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

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

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Ortak eyeliner / süsler ---------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.section-title {
  font-size: clamp(28px, 3.5vw, 40px);
  margin-bottom: 16px;
}

.section-lead {
  max-width: 620px;
  color: var(--charcoal-soft);
  font-size: 15px;
  margin-bottom: 36px;
}

.center { text-align: center; margin-left: auto; margin-right: auto; }

section { padding: 68px 0; }
section.alt { background: var(--offwhite); }

/* ---------- Butonlar ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(138, 105, 31, 0.28);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(138, 105, 31, 0.36);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  transform: translateY(-3px);
}

/* =========================================================
   FLOATING WHATSAPP / TELEFON / INSTAGRAM
   ========================================================= */

.floating-contact-bar {
  position: fixed;
  top: 94px;
  right: 24px;
  z-index: 1200;
  display: flex;
  align-items: center;
  gap: 10px;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: var(--white);
  padding: 10px 16px 10px 12px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
  font-size: 13px;
  font-weight: 600;
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(37, 211, 102, 0.45);
}

.whatsapp-btn svg { width: 20px; height: 20px; flex-shrink: 0; }

.whatsapp-status {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff3b3b;
  animation: livePulse 1.6s infinite;
}

@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(255, 59, 59, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 59, 59, 0); }
}

.mini-social {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  color: var(--gold-dark);
  transition: all var(--transition);
  flex-shrink: 0;
}

.mini-social:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}

.mini-social svg { width: 18px; height: 18px; }

@media (max-width: 768px) {
  .floating-contact-bar { top: 80px; right: 12px; gap: 8px; }
  .whatsapp-label { display: none; }
  .whatsapp-btn { padding: 9px; }
  .mini-social { width: 38px; height: 38px; }
  .mini-social svg { width: 16px; height: 16px; }
}

/* =========================================================
   YAN DEKOR (sadece geniş ekranlarda, boş kenarlarda)
   ========================================================= */

.side-decor {
  position: fixed;
  top: 0;
  height: 100vh;
  width: 100px;
  pointer-events: none;
  z-index: 1;
  display: none;
}
.side-decor.left { left: 0; }
.side-decor.right { right: 0; }

.side-decor span {
  position: absolute;
  font-size: 32px;
  opacity: 0.4;
  filter: drop-shadow(0 6px 12px rgba(35, 34, 32, 0.08));
  animation: floatDecor 7s ease-in-out infinite;
}

@keyframes floatDecor {
  0%, 100% { transform: translateY(0) rotate(-6deg); }
  50% { transform: translateY(-16px) rotate(6deg); }
}

@media (min-width: 1480px) {
  .side-decor { display: block; }
}

/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--transition), border-color var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--charcoal);
}

.logo-text small {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-top: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  position: relative;
  padding: 10px 16px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--charcoal-soft);
  border-radius: 999px;
  transition: color var(--transition), background var(--transition);
}

.nav-link:hover { color: var(--gold-dark); background: var(--gold-pale); }

.nav-link.active {
  color: var(--gold-dark);
  background: var(--gold-pale);
  font-weight: 600;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;
  padding: 88px 0 64px;
  background:
    radial-gradient(circle at 85% 15%, var(--gold-pale) 0%, transparent 45%),
    radial-gradient(circle at 10% 90%, var(--gold-pale) 0%, transparent 40%),
    var(--white);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 46px 46px;
  opacity: 0.35;
  mask-image: radial-gradient(circle at 50% 0%, black, transparent 70%);
  z-index: 1;
}

.hero-photo-marquee {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-photo-marquee::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86) 0%, rgba(255, 255, 255, 0.6) 45%, rgba(255, 255, 255, 0.86) 100%);
}

.hero-photo-track {
  display: flex;
  align-items: center;
  height: 100%;
  width: max-content;
  gap: 14px;
  animation: heroMarquee 70s linear infinite;
  will-change: transform;
}

.hero-photo-track img {
  height: 260px;
  width: 340px;
  object-fit: cover;
  border-radius: 18px;
  opacity: 0.5;
  filter: grayscale(20%) saturate(115%);
  flex-shrink: 0;
}

.hero-action-mobile-only { display: none; }

@keyframes heroMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-photo-track { animation: none; }
}

@media (max-width: 768px) {
  .hero-photo-track img { height: 160px; width: 220px; }
  .hero-action-mobile-only { display: inline-flex; }
}

.hero-inner {
  position: relative;
  max-width: 760px;
  text-align: center;
  margin: 0 auto;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(26px, 3.6vw, 40px);
  line-height: 1.2;
}

.hero h1 .accent {
  color: var(--gold-dark);
  position: relative;
  white-space: nowrap;
}

.hero-lead {
  font-size: 15.5px;
  max-width: 520px;
  margin: 0 auto 28px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-hero {
  padding: 118px 0 54px;
  text-align: center;
  background:
    radial-gradient(circle at 85% 0%, var(--gold-pale) 0%, transparent 50%),
    var(--white);
}

.page-hero h1 { font-size: clamp(24px, 3.2vw, 34px); }

/* =========================================================
   KARTLAR / GRID
   ========================================================= */

.grid {
  display: grid;
  gap: 28px;
}

.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
}

.card-highlight {
  border: 2px solid var(--gold);
  background: linear-gradient(180deg, var(--gold-pale) 0%, var(--white) 45%);
  box-shadow: 0 8px 22px rgba(179, 135, 47, 0.16);
}

.card-highlight:hover {
  border-color: var(--gold-dark);
  box-shadow: 0 16px 32px rgba(179, 135, 47, 0.24);
}

.icon-badge {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--gold-pale);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

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

.card h3 { font-size: 19px; margin-bottom: 10px; }
.card p { font-size: 14.5px; margin-bottom: 0; }

/* ---------- İstatistik / Sayaç ---------- */

.stats {
  background: linear-gradient(135deg, var(--charcoal) 0%, #322c1f 100%);
  border-radius: 24px;
  padding: 48px 36px;
  color: var(--white);
}

.stats .grid-4 { gap: 20px; }

.stat-item { text-align: center; }

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 46px);
  color: var(--gold-light);
  font-weight: 700;
}

.stat-label {
  font-size: 13.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #d8d2c4;
  margin-top: 6px;
}

/* ---------- Liste (olanaklar, saatler) ---------- */

.check-list { list-style: none; padding: 0; margin: 0; }

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--charcoal-soft);
}

.check-list li:last-child { border-bottom: none; }

.check-list svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--gold-dark);
  margin-top: 2px;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table td {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}

.hours-table tr:last-child td { border-bottom: none; }
.hours-table td:first-child { color: var(--charcoal); font-weight: 500; }
.hours-table td:last-child { text-align: right; color: var(--gold-dark); font-weight: 600; }

/* =========================================================
   HOCALARIMIZ
   ========================================================= */

.staff-card {
  text-align: center;
  padding: 40px 26px;
}

.avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold-pale), var(--gold-light));
  color: var(--gold-dark);
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 1px var(--gold-light);
  /* NOT: Fotoğraflar geldiğinde bu daire yerine <img> konacak */
}

.staff-card h3 { font-size: 18px; margin-bottom: 4px; }

.staff-role {
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}

.staff-card p { font-size: 14px; }

/* =========================================================
   GALERİ
   ========================================================= */

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

.gallery-item {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--offwhite);
  box-shadow: 0 6px 18px rgba(30, 26, 20, 0.08);
  transition: transform var(--transition), box-shadow var(--transition);
  overflow: hidden;
  position: relative;
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: 0 14px 30px rgba(30, 26, 20, 0.16);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-item svg { width: 30px; height: 30px; }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 16, 10, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

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

.lightbox img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.96);
  transition: transform var(--transition);
}

.lightbox.open img { transform: scale(1); }

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.lightbox-close:hover { background: rgba(255, 255, 255, 0.24); }

body.no-scroll { overflow: hidden; }

/* =========================================================
   İLETİŞİM
   ========================================================= */

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.contact-item:last-child { border-bottom: none; }

.contact-item .icon-badge {
  margin-bottom: 0;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 15px;
  margin-bottom: 4px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.contact-item a, .contact-item span.value {
  font-size: 15px;
  color: var(--charcoal-soft);
  transition: color var(--transition);
}

.contact-item a:hover { color: var(--gold-dark); }

.map-box {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  height: 100%;
  min-height: 340px;
  background: var(--offwhite);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--charcoal-soft);
  padding: 30px;
}

.whatsapp-inline-wrap {
  padding: 14px 0;
}

.contact-item.no-border {
  border-bottom: none;
  padding-bottom: 6px;
}

.map-cta-wrap {
  padding: 6px 0 18px;
  border-bottom: 1px solid var(--border);
}

.map-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 20px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.3px;
  box-shadow: 0 10px 24px rgba(138, 105, 31, 0.28);
  transition: transform var(--transition), box-shadow var(--transition);
}

.map-cta span { font-size: 18px; }

.map-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(138, 105, 31, 0.36);
}

.whatsapp-inline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 20px;
  background: #25d366;
  color: var(--white);
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.3px;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.3);
  animation: whatsappPulse 2.4s ease-in-out infinite;
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-inline:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(37, 211, 102, 0.42);
}

.whatsapp-inline svg { width: 22px; height: 22px; flex-shrink: 0; }

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 10px 24px rgba(37, 211, 102, 0.3); }
  50% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.55); }
}

.social-row {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

.social-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-pale);
  color: var(--gold-dark);
  border: 1px solid var(--gold-light);
  transition: all var(--transition);
}

.social-circle:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-4px);
}

.social-circle svg { width: 20px; height: 20px; }

/* =========================================================
   CTA BANNER
   ========================================================= */

.cta-banner {
  border-radius: 24px;
  padding: 48px 36px;
  text-align: center;
  background: linear-gradient(135deg, var(--gold-pale), var(--white));
  border: 1px solid var(--gold-light);
}

.cta-banner h2 { margin-bottom: 14px; }
.cta-banner .hero-actions { margin-top: 28px; }

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  background: var(--charcoal);
  color: #cfc9ba;
  padding: 70px 0 0;
  margin-top: 60px;
}

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

.footer-inner h4 {
  color: var(--white);
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.footer-brand .logo-text, .footer-brand .logo-text small { color: var(--white); }
.footer-brand p { color: #a9a294; font-size: 14px; margin-top: 16px; max-width: 320px; }

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: 14px; color: #cfc9ba; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold-light); }

.footer-contact p, .footer-contact a {
  font-size: 14px;
  color: #cfc9ba;
  display: block;
  margin-bottom: 12px;
}
.footer-contact a:hover { color: var(--gold-light); }

.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: #9b937f;
  padding: 24px 0;
}

/* =========================================================
   SCROLL REVEAL ANIMASYONU
   ========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.06s; }
.reveal-delay-2 { transition-delay: 0.12s; }
.reveal-delay-3 { transition-delay: 0.18s; }
.reveal-delay-4 { transition-delay: 0.24s; }

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 960px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    top: 78px;
    left: 16px;
    right: 16px;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
  }
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-link { padding: 14px 16px; }
  .nav-toggle { display: flex; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-2-mobile-split { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .grid-2-mobile-split .card { padding: 16px 12px; }
  .grid-2-mobile-split .icon-badge { width: 38px; height: 38px; margin-bottom: 10px; }
  .grid-2-mobile-split .icon-badge svg { width: 20px; height: 20px; }
  .grid-2-mobile-split h3 { font-size: 15px; }
  .grid-2-mobile-split p { font-size: 12.5px; }
  .grid-4, .grid-3 { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .card { padding: 24px 18px; }
  .footer-inner { grid-template-columns: 1fr; }
  section { padding: 50px 0; }
  .stats { padding: 36px 22px; }
  .stats .grid-4 { gap: 20px 16px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}
