* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; background: #fff; color: #1a1a1a; -webkit-font-smoothing: antialiased; padding-bottom: 80px; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(145deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: #fff;
  padding: 1.25rem 1.25rem 2rem;
}
.hero-inner { max-width: 600px; margin: 0 auto; }
.hero-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.75rem;
}
.hero-logo { font-weight: 700; font-size: 0.95rem; opacity: 0.9; }
.hero-phone {
  font-size: 0.8rem;
  background: rgba(255,255,255,0.12);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  color: #fff;
  font-weight: 500;
}
.hero h1 {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0.6rem;
  letter-spacing: -0.03em;
}
.hero-sub {
  font-size: 0.95rem;
  opacity: 0.8;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.btn-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem;
  background: #25D366;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.btn-hero:hover { background: #1fad53; transform: translateY(-1px); }
.btn-hero:active { transform: scale(0.98); }
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.hero-tags span {
  font-size: 0.78rem;
  opacity: 0.7;
  background: rgba(255,255,255,0.08);
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
}

/* ===== TERAPİSTLER ===== */
.therapists {
  padding: 1.75rem 1rem;
  max-width: 600px;
  margin: 0 auto;
}
.t-title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.t-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }

.t-card {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}
.t-card:active { transform: scale(0.97); }

.t-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.t-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.t-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 0.75rem 0.65rem;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
  color: #fff;
}
.t-name {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.2;
}
.t-spec {
  display: block;
  font-size: 0.75rem;
  opacity: 0.8;
  margin-top: 0.15rem;
}
.t-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.65rem;
  background: #25D366;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.2s;
}
.t-cta:hover { background: #1fad53; }

/* ===== MASAJ TÜRLERİ ===== */
.types {
  padding: 2rem 1rem;
  max-width: 600px;
  margin: 0 auto;
  background: #f8f7f4;
}
.types h2 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.types-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.65rem; }
.type-card {
  background: #fff;
  border-radius: 12px;
  padding: 1rem;
  border: 1px solid #eee;
}
.type-icon { font-size: 1.3rem; display: block; margin-bottom: 0.4rem; }
.type-card h3 { font-size: 0.88rem; font-weight: 700; margin-bottom: 0.25rem; }
.type-card p { font-size: 0.78rem; color: #666; line-height: 1.5; }

/* ===== NASIL ÇALIŞIR ===== */
.how {
  padding: 2rem 1rem;
  max-width: 600px;
  margin: 0 auto;
}
.how h2 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.how-steps { display: flex; flex-direction: column; gap: 0.6rem; }
.how-step {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  background: #f8f7f4;
  border-radius: 12px;
}
.hs-num {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #1a1a2e;
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.how-step p { font-size: 0.9rem; font-weight: 500; }

/* ===== BÖLGELER ===== */
.regions {
  padding: 2rem 1rem;
  max-width: 600px;
  margin: 0 auto;
  background: #f8f7f4;
}
.regions h2 { font-size: 1.2rem; font-weight: 800; margin-bottom: 0.25rem; }
.regions-sub { font-size: 0.85rem; color: #888; margin-bottom: 1rem; }
.regions-wrap { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.regions-wrap span {
  padding: 0.4rem 0.8rem;
  background: #fff;
  border: 1px solid #e5e3df;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* ===== YORUMLAR ===== */
.reviews {
  padding: 2rem 1rem;
  max-width: 600px;
  margin: 0 auto;
}
.reviews h2 { font-size: 1.2rem; font-weight: 800; margin-bottom: 1rem; }
.reviews-wrap { display: flex; flex-direction: column; gap: 0.65rem; }
.rev {
  padding: 1rem;
  background: #f8f7f4;
  border-radius: 12px;
}
.rev p { font-size: 0.88rem; color: #333; line-height: 1.6; margin-bottom: 0.5rem; }
.rev span { font-size: 0.78rem; color: #888; font-weight: 500; }

/* ===== SSS ===== */
.faq {
  padding: 2rem 1rem;
  max-width: 600px;
  margin: 0 auto;
  background: #f8f7f4;
}
.faq h2 { font-size: 1.2rem; font-weight: 800; margin-bottom: 1rem; }
.faq details {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  margin-bottom: 0.5rem;
  overflow: hidden;
}
.faq summary {
  padding: 0.85rem 1rem;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 1.2rem; color: #25D366; }
.faq details[open] summary::after { content: '−'; }
.faq details[open] summary { background: rgba(37,211,102,0.06); }
.faq details p { padding: 0 1rem 0.85rem; font-size: 0.85rem; color: #666; line-height: 1.6; }

/* ===== FOOTER ===== */
footer {
  padding: 2rem 1rem 3rem;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.f-brand { font-weight: 800; font-size: 1rem; margin-bottom: 0.3rem; }
.f-desc { font-size: 0.82rem; color: #888; margin-bottom: 0.6rem; line-height: 1.5; }
.f-phone a { font-size: 0.9rem; font-weight: 600; color: #25D366; }
.f-copy { font-size: 0.72rem; color: #bbb; margin-top: 1rem; }

/* ===== SABİT WHATSAPP FAB ===== */
.fab {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  z-index: 999;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: fab-pulse 2.5s ease-in-out infinite;
}
.fab:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }
.fab:active { transform: scale(0.95); }

@keyframes fab-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.1); }
}

/* ===== DESKTOP (768px+) ===== */
@media (min-width: 768px) {
  body { padding-bottom: 0; }
  .hero { padding: 3rem 2rem 3.5rem; }
  .hero-inner { max-width: 900px; }
  .hero h1 { font-size: 3rem; }
  .hero-sub { font-size: 1.1rem; }
  .btn-hero { max-width: 380px; }
  .hero-tags { justify-content: flex-start; }

  .therapists, .types, .how, .regions, .reviews, .faq, footer { max-width: 900px; padding-left: 2rem; padding-right: 2rem; }
  .t-grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; }
  .types-grid { grid-template-columns: repeat(4, 1fr); }
  .how-steps { flex-direction: row; }
  .how-step { flex: 1; flex-direction: column; text-align: center; padding: 1.25rem; }
  .reviews-wrap { flex-direction: row; }
  .rev { flex: 1; }
  .faq { columns: 2; column-gap: 0.75rem; }
  .faq h2 { column-span: all; }
  .faq details { break-inside: avoid; }
}
