﻿/* =========================================
   BAÅYILDIZ DÄ°Å KLÄ°NÄ°ÄÄ° - TAM Ã–ZEL CSS
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --teal-50:  #f0fdfa;
  --teal-100: #ccfbf1;
  --teal-200: #99f6e4;
  --teal-400: #2dd4bf;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --teal-700: #0f766e;
  --teal-800: #115e59;
  --cyan-600: #0891b2;
  --slate-50:  #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--slate-800);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

a { text-decoration: none; transition: all 0.25s ease; }
img { max-width: 100%; height: auto; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes pulseSlow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}
.animate-fadeInUp { animation: fadeInUp 0.7s ease forwards; }
.animate-slideInLeft { animation: slideInLeft 0.7s ease forwards; }

/* Intersection Observer animations */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== NAVBAR ===== */
.bys-navbar {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding: 14px 0;
  transition: all 0.35s ease;
  z-index: 1050;
}
.bys-navbar.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 4px 30px rgba(13,148,136,0.1);
  padding: 8px 0;
}
.bys-logo { height: 52px; border-radius: 10px; object-fit: contain; }
.bys-nav-links .nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--slate-700);
  padding: 10px 20px !important;
  border-radius: 50px;
  transition: all 0.2s ease;
  letter-spacing: -0.01em;
}
.bys-nav-links .nav-link:hover,
.bys-nav-links .nav-link.active {
  background: var(--teal-50);
  color: var(--teal-600);
}
/* Mega Menu */
.bys-mega-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 98vw;
  max-width: 1320px;
  background: #fff;
  border: none;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  padding: 0;
  margin-top: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  z-index: 1100;
}
.bys-mega-parent:hover .bys-mega-dropdown,
.bys-mega-parent.show .bys-mega-dropdown {
  opacity: 1;
  visibility: visible;
}
.bys-mega-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 28px 32px 12px;
}
.bys-mega-col {
  padding: 10px 14px;
  border-bottom: 1px solid var(--slate-100);
}
.bys-mega-col:nth-last-child(-n+4) {
  border-bottom: none;
}
.bys-mega-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--slate-800);
  text-decoration: none;
  padding: 6px 0;
  transition: color 0.2s ease;
}
.bys-mega-heading i {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--teal-50);
  color: var(--teal-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.bys-mega-heading:hover {
  color: var(--teal-600);
}
.bys-mega-heading:hover i {
  background: var(--teal-600);
  color: #fff;
}
.bys-mega-sublinks {
  list-style: none;
  padding: 0;
  margin: 4px 0 8px 42px;
}
.bys-mega-sublinks li a {
  display: block;
  font-size: 0.78rem;
  color: var(--slate-500);
  text-decoration: none;
  padding: 3px 0;
  transition: all 0.15s ease;
  line-height: 1.4;
}
.bys-mega-sublinks li a:hover {
  color: var(--teal-600);
  padding-left: 4px;
}
.bys-mega-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  border-top: 1px solid var(--slate-100);
  background: var(--slate-50);
  border-radius: 0 0 20px 20px;
}
.bys-mega-footer a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal-600);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.bys-mega-footer a:hover { color: var(--teal-700); }

/* Old dropdown fallback hidden but keep for mobile */
.bys-dropdown {
  border: none;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  padding: 10px;
  margin-top: 8px;
  min-width: 240px;
}
.bys-dropdown .dropdown-item {
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--slate-600);
  padding: 10px 16px;
  transition: all 0.2s ease;
}
.bys-dropdown .dropdown-item:hover {
  background: var(--teal-50);
  color: var(--teal-600);
}

/* ===== BUTTONS ===== */
.bys-btn-primary {
  background: var(--teal-600);
  color: #fff !important;
  border: none;
  border-radius: 50px;
  padding: 11px 26px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(13,148,136,0.3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.bys-btn-primary:hover {
  background: var(--teal-700);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(13,148,136,0.4);
}
.bys-btn-outline {
  background: transparent;
  color: #fff !important;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 50px;
  padding: 11px 26px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.bys-btn-outline:hover {
  background: rgba(255,255,255,0.15);
  color: #fff !important;
  border-color: #fff;
  transform: translateY(-2px);
}
.bys-btn-white {
  background: #fff;
  color: var(--teal-600) !important;
  border: none;
  border-radius: 50px;
  padding: 14px 36px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.bys-btn-white:hover {
  background: var(--teal-50);
  color: var(--teal-700) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.bys-btn-teal-outline {
  background: transparent;
  color: var(--teal-600) !important;
  border: 2px solid var(--teal-600);
  border-radius: 50px;
  padding: 11px 26px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.bys-btn-teal-outline:hover {
  background: var(--teal-600);
  color: #fff !important;
}

/* ===== HERO (VIDEO) ===== */
.bys-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}
.bys-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.bys-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,0.8) 0%, rgba(13,148,136,0.2) 100%);
  z-index: 1;
}
.bys-hero-content { position: relative; z-index: 2; }
.bys-hero-badge {
  display: inline-block;
  background: rgba(13,148,136,0.2);
  border: 1px solid rgba(13,148,136,0.4);
  color: #5eead4;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 22px;
  text-transform: uppercase;
}
.bys-hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}
.bys-text-teal { color: var(--teal-400); }
.bys-hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  line-height: 1.75;
}

/* Hero Features Bar - now outside hero */
.bys-features-bar {
  position: relative;
  margin-top: -70px;
  background: #fff;
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
  z-index: 10;
}
.bys-feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px;
  border-right: 1px solid var(--slate-100);
  transition: background 0.25s ease;
}
.bys-feature-item:hover { background: var(--teal-50); }
.bys-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--teal-50);
  color: var(--teal-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.bys-feature-item:hover .bys-feature-icon {
  background: var(--teal-600);
  color: #fff;
}
.bys-feature-title { font-weight: 700; font-size: 0.88rem; color: var(--slate-800); }
.bys-feature-sub { font-size: 0.78rem; color: var(--slate-500); margin-top: 2px; }

/* ===== STATS ===== */
.bys-stats { background: var(--slate-50); padding: 70px 0; }
.bys-stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--teal-600);
  line-height: 1;
}
.bys-stat-label { font-size: 0.88rem; color: var(--slate-500); font-weight: 500; margin-top: 8px; }

/* ===== SECTION COMMON ===== */
.bys-section-badge {
  display: inline-block;
  background: var(--teal-50);
  color: var(--teal-600);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.bys-section-title {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--slate-800);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.bys-section-desc {
  font-size: 1rem;
  color: var(--slate-500);
  max-width: 600px;
  line-height: 1.7;
}
.text-center .bys-section-desc { margin: 0 auto; }

/* ===== TREATMENT CARDS (HOMEPAGE) ===== */
.bys-treat-card {
  background: #fff;
  border: 1px solid var(--slate-100);
  border-radius: 20px;
  padding: 30px 24px;
  height: 100%;
  transition: all 0.35s ease;
}
.bys-treat-card:hover {
  border-color: var(--teal-100);
  box-shadow: 0 16px 50px rgba(13,148,136,0.1);
  transform: translateY(-6px);
}
.bys-treat-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--teal-50);
  color: var(--teal-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
  transition: all 0.3s ease;
}
.bys-treat-card:hover .bys-treat-icon { background: var(--teal-600); color: #fff; }
.bys-treat-title { font-size: 1rem; font-weight: 700; color: var(--slate-800); margin-bottom: 10px; }
.bys-treat-desc { font-size: 0.85rem; color: var(--slate-500); line-height: 1.7; margin-bottom: 18px; }
.bys-treat-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal-600);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.bys-treat-link:hover { color: var(--teal-700); gap: 10px; }

/* ===== ABOUT (HOMEPAGE) ===== */
.bys-about { background: var(--slate-50); }
.bys-about-img-wrap { position: relative; }
.bys-about-img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  aspect-ratio: 3/2;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.bys-about-badge {
  position: absolute;
  bottom: -20px;
  right: -16px;
  background: var(--teal-600);
  color: #fff;
  padding: 20px 28px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(13,148,136,0.4);
}
.bys-about-badge-number { font-family: 'Outfit', sans-serif; font-size: 2.2rem; font-weight: 800; line-height: 1; }
.bys-about-badge-text { font-size: 0.75rem; font-weight: 600; opacity: 0.9; margin-top: 4px; }
.bys-check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  font-weight: 500;
  color: var(--slate-700);
  font-size: 0.92rem;
  border-bottom: 1px solid var(--slate-100);
}
.bys-check-list li:last-child { border-bottom: none; }
.bys-check-list li i { color: var(--teal-600); font-size: 1.1rem; flex-shrink: 0; }

/* ===== BLOG CARDS (HOMEPAGE) ===== */
.bys-blog-card {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--slate-100);
  transition: all 0.35s ease;
  height: 100%;
}
.bys-blog-card:hover {
  box-shadow: 0 16px 50px rgba(0,0,0,0.08);
  transform: translateY(-6px);
}
.bys-blog-img-wrap { position: relative; overflow: hidden; }
.bys-blog-img { width: 100%; aspect-ratio: 16/10; object-fit: cover; transition: transform 0.45s ease; }
.bys-blog-card:hover .bys-blog-img { transform: scale(1.06); }
.bys-blog-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--teal-600);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
}
.bys-blog-body { padding: 24px; }
.bys-blog-date { font-size: 0.78rem; color: var(--slate-400); margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.bys-blog-title { font-size: 1rem; font-weight: 700; color: var(--slate-800); margin-bottom: 14px; line-height: 1.5; }
.bys-blog-excerpt { font-size: 0.85rem; color: var(--slate-500); line-height: 1.65; margin-bottom: 14px; }
.bys-blog-meta { display: flex; align-items: center; gap: 16px; font-size: 0.78rem; color: var(--slate-400); margin-bottom: 14px; }
.bys-blog-meta i { margin-right: 4px; }

/* ===== CTA BANNER ===== */
.bys-cta {
  background: linear-gradient(135deg, var(--teal-600) 0%, var(--cyan-600) 100%);
  padding: 90px 0;
}
.bys-cta-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; color: #fff; line-height: 1.25; margin-bottom: 18px; }
.bys-cta-desc { font-size: 1rem; color: rgba(255,255,255,0.8); max-width: 520px; margin: 0 auto; }

/* ===== FOOTER ===== */
.bys-footer { background: var(--slate-900); color: rgba(255,255,255,0.65); }
.bys-footer-logo { height: 48px; border-radius: 10px; object-fit: contain; }
.bys-footer-desc { font-size: 0.85rem; line-height: 1.75; margin-top: 16px; }
.bys-footer-heading {
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 22px;
}
.bys-footer-links li { margin-bottom: 12px; }
.bys-footer-links a { color: rgba(255,255,255,0.55); font-size: 0.85rem; font-weight: 500; }
.bys-footer-links a:hover { color: var(--teal-400); }
.bys-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.85rem;
}
.bys-footer-contact li i { color: var(--teal-500); margin-top: 3px; flex-shrink: 0; }
.bys-footer-contact a { color: rgba(255,255,255,0.55); }
.bys-footer-contact a:hover { color: var(--teal-400); }
.bys-footer-hr { border-color: rgba(255,255,255,0.08); margin: 0; }
.bys-footer-copy { color: rgba(255,255,255,0.4); font-size: 0.78rem; }
.bys-footer-policy { color: rgba(255,255,255,0.45); font-size: 0.78rem; }
.bys-footer-policy:hover { color: var(--teal-400); }
.bys-footer-insta { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.55); font-size: 0.85rem; margin-top: 14px; }
.bys-footer-insta:hover { color: var(--teal-400); }

/* ===== PAGE HERO (SUB-PAGES) ===== */
.bys-page-hero {
  background: linear-gradient(180deg, var(--teal-50) 0%, #fff 100%);
  padding: 120px 0 60px;
}
.bys-page-badge {
  display: inline-block;
  color: var(--teal-600);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.bys-page-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--slate-800);
  line-height: 1.15;
  margin-bottom: 18px;
}
.bys-page-desc { font-size: 1.05rem; color: var(--slate-500); line-height: 1.7; max-width: 680px; }

/* ===== HAKKIMIZDA PAGE ===== */
.bys-story-section { background: var(--slate-50); padding: 80px 0; }
.bys-story-img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  aspect-ratio: 3/2;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.bys-hygiene-section { padding: 80px 0; }
.bys-hygiene-img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

/* Values Cards */
.bys-value-card {
  background: #fff;
  border: 1px solid var(--slate-100);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}
.bys-value-card:hover {
  border-color: var(--teal-100);
  box-shadow: 0 12px 40px rgba(13,148,136,0.08);
  transform: translateY(-4px);
}
.bys-value-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--teal-50);
  color: var(--teal-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 18px;
}
.bys-value-title { font-size: 1.05rem; font-weight: 700; color: var(--slate-800); margin-bottom: 10px; }
.bys-value-desc { font-size: 0.85rem; color: var(--slate-500); line-height: 1.65; }

/* Mission Banner */
.bys-mission {
  background: linear-gradient(135deg, var(--teal-600) 0%, var(--cyan-600) 100%);
  padding: 70px 0;
}
.bys-mission-title { font-size: clamp(1.4rem, 3vw, 1.8rem); font-weight: 700; color: #fff; margin-bottom: 14px; }
.bys-mission-desc { font-size: 1rem; color: rgba(255,255,255,0.8); max-width: 700px; margin: 0 auto; line-height: 1.7; }

/* ===== TEDAVÄ° DETAY PAGE ===== */
.bys-breadcrumb { margin-bottom: 24px; }
.bys-breadcrumb a { color: var(--teal-600); font-weight: 600; font-size: 0.88rem; display: inline-flex; align-items: center; gap: 6px; }
.bys-breadcrumb a:hover { color: var(--teal-700); }
.bys-treatment-header { display: flex; align-items: center; gap: 18px; margin-bottom: 12px; }
.bys-treatment-icon-lg {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--teal-50);
  color: var(--teal-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}
.bys-treatment-label { color: var(--teal-600); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.bys-treatment-name { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--slate-800); }
.bys-treatment-short { font-size: 1rem; color: var(--slate-500); margin-bottom: 0; }

.bys-detail-content { background: var(--slate-50); padding: 60px 0; }
.bys-detail-img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  aspect-ratio: 16/9;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  margin-bottom: 32px;
}
.bys-prose { font-size: 0.95rem; color: var(--slate-600); line-height: 1.85; }
.bys-prose p + p { margin-top: 18px; }

/* Sidebar */
.bys-sidebar-card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: 20px;
  padding: 28px;
  margin-bottom: 24px;
}
.bys-sidebar-title { font-size: 1.1rem; font-weight: 700; color: var(--slate-800); margin-bottom: 20px; }
.bys-subcat-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.88rem;
  color: var(--slate-600);
  border-bottom: 1px solid var(--slate-100);
}
.bys-subcat-list li:last-child { border-bottom: none; }
.bys-subcat-list li i { color: var(--teal-600); }

.bys-sidebar-cta {
  background: linear-gradient(135deg, var(--teal-600) 0%, var(--cyan-600) 100%);
  border-radius: 20px;
  padding: 32px 28px;
  color: #fff;
}
.bys-sidebar-cta .bys-sidebar-title { color: #fff; }
.bys-sidebar-cta p { font-size: 0.85rem; color: rgba(255,255,255,0.8); line-height: 1.6; margin-bottom: 18px; }
.bys-sidebar-cta .btn {
  background: #fff;
  color: var(--teal-600) !important;
  border-radius: 50px;
  font-weight: 700;
  padding: 12px 24px;
  font-size: 0.88rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
}
.bys-sidebar-cta .btn:hover { background: var(--teal-50); transform: translateY(-2px); }

/* Prev/Next navigation */
.bys-prev-next { border-top: 1px solid var(--slate-200); margin-top: 40px; padding-top: 30px; }
.bys-prev-next a {
  color: var(--slate-600);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.bys-prev-next a:hover { color: var(--teal-600); }
.bys-prev-next .bys-pn-label { font-size: 0.75rem; color: var(--slate-400); display: block; }
.bys-prev-next .bys-pn-title { font-weight: 700; color: var(--slate-800); font-size: 0.95rem; }

/* ===== BLOG PAGE ===== */
.bys-featured-blog {
  background: #fff;
  border: 1px solid var(--slate-100);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.35s ease;
}
.bys-featured-blog:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.08); }
.bys-featured-blog-img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.bys-featured-blog-body { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.bys-blog-cat-badge {
  display: inline-block;
  background: var(--teal-50);
  color: var(--teal-600);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.bys-featured-blog-title { font-size: 1.6rem; font-weight: 800; color: var(--slate-800); line-height: 1.3; margin-bottom: 14px; }
.bys-blog-grid-card {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--slate-100);
  transition: all 0.35s ease;
  height: 100%;
}
.bys-blog-grid-card:hover { box-shadow: 0 16px 50px rgba(0,0,0,0.07); transform: translateY(-5px); }
.bys-blog-grid-img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.bys-blog-grid-body { padding: 24px; }
.bys-blog-grid-title { font-size: 1rem; font-weight: 700; color: var(--slate-800); margin-bottom: 10px; line-height: 1.45; }

/* Newsletter */
.bys-newsletter {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(16px);
  border: 1px solid var(--slate-200);
  border-radius: 24px;
  padding: 50px 40px;
  text-align: center;
}
.bys-newsletter-title { font-size: 1.4rem; font-weight: 800; color: var(--slate-800); margin-bottom: 10px; }
.bys-newsletter-desc { font-size: 0.92rem; color: var(--slate-500); margin-bottom: 24px; }
.bys-newsletter-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; }
.bys-newsletter-form input {
  flex: 1;
  border: 1px solid var(--slate-200);
  border-radius: 50px;
  padding: 12px 20px;
  font-size: 0.88rem;
  font-family: 'Manrope', sans-serif;
  outline: none;
  transition: border-color 0.2s ease;
}
.bys-newsletter-form input:focus { border-color: var(--teal-500); }

/* ===== Ä°LETÄ°ÅÄ°M PAGE ===== */
.bys-contact-section { background: var(--slate-50); padding: 80px 0; }
.bys-contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 36px;
}
.bys-contact-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--teal-50);
  color: var(--teal-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.bys-contact-label { font-size: 1rem; font-weight: 700; color: var(--slate-800); margin-bottom: 4px; }
.bys-contact-value { font-size: 0.88rem; color: var(--slate-500); line-height: 1.6; }
.bys-contact-value a { color: var(--teal-600); }

/* Contact Form */
.bys-form-card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.04);
}
.bys-form-title { font-size: 1.4rem; font-weight: 800; color: var(--slate-800); margin-bottom: 8px; }
.bys-form-desc { font-size: 0.88rem; color: var(--slate-500); margin-bottom: 28px; }
.bys-form-label { font-size: 0.85rem; font-weight: 600; color: var(--slate-700); margin-bottom: 6px; }
.bys-form-control {
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  padding: 12px 16px;
  font-size: 0.88rem;
  font-family: 'Manrope', sans-serif;
  transition: border-color 0.2s ease;
  width: 100%;
  outline: none;
  background: #fff;
}
.bys-form-control:focus { border-color: var(--teal-500); box-shadow: 0 0 0 3px rgba(13,148,136,0.1); }
.bys-form-select { appearance: none; background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"); background-repeat: no-repeat; background-position: right 12px center; background-size: 16px 12px; padding-right: 36px; }

/* Map */
.bys-map-wrap {
  border-radius: 24px;
  overflow: hidden;
  margin-top: 40px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}
.bys-map-wrap iframe {
  width: 100%;
  height: 350px;
  border: 0;
  filter: grayscale(100%);
  transition: filter 0.4s ease;
}
.bys-map-wrap:hover iframe { filter: grayscale(0); }

/* Back to Top */
.bys-back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--teal-600);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(13,148,136,0.4);
  text-decoration: none;
}
.bys-back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.bys-back-to-top:hover {
  background: var(--teal-700);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(13,148,136,0.5);
  color: #fff;
}

/* Pagination */
.bys-pagination .page-link {
  border: none;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--slate-600);
  background: var(--slate-50);
  margin: 0 4px;
  transition: all 0.25s ease;
}
.bys-pagination .page-link:hover {
  background: var(--teal-50);
  color: var(--teal-600);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(13,148,136,0.15);
}
.bys-pagination .page-item.active .page-link {
  background: var(--teal-600);
  color: #fff;
  box-shadow: 0 4px 15px rgba(13,148,136,0.35);
}
.bys-pagination .page-item.disabled .page-link {
  background: var(--slate-50);
  color: var(--slate-300);
  opacity: 0.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .bys-hero {
    min-height: auto;
    padding-bottom: 40px;
  }
  .bys-hero-content .row { min-height: 70vh !important; }
  .bys-features-bar {
    margin-top: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  }
  .bys-feature-item {
    border-right: none;
    border-bottom: 1px solid var(--slate-100);
    padding: 18px 16px;
  }
  .bys-about-badge { right: 10px; bottom: -16px; }
  .bys-newsletter-form { flex-direction: column; }
  .bys-mega-dropdown {
    position: static;
    transform: none;
    width: 100%;
    max-width: 100%;
    box-shadow: none;
    border-radius: 0;
    margin-top: 0;
    opacity: 1;
    visibility: visible;
    display: none;
    max-height: 60vh;
    overflow-y: auto;
  }
  .bys-mega-parent.show .bys-mega-dropdown { display: block; }
  .bys-mega-grid { grid-template-columns: 1fr 1fr; padding: 12px; }
  .bys-mega-col { padding: 6px 8px; }
  .bys-mega-sublinks { margin-left: 32px; }
  .bys-mega-footer { padding: 12px; border-radius: 0; }
}
@media (max-width: 575px) {
  .bys-hero-content .row { min-height: 60vh !important; }
  .bys-hero-title { font-size: 1.8rem; }
  .bys-hero-desc { font-size: 0.9rem; }
  .bys-hero-badge { font-size: 0.6rem; padding: 5px 12px; }
  .bys-feature-item { padding: 14px 10px; gap: 10px; }
  .bys-feature-icon { width: 36px; height: 36px; font-size: 0.9rem; }
  .bys-feature-title { font-size: 0.75rem; }
  .bys-feature-sub { font-size: 0.65rem; }
  .bys-page-hero { padding: 100px 0 40px; }
  .bys-form-card { padding: 24px; }
  .bys-mega-grid { grid-template-columns: 1fr; }
  .bys-mega-heading { font-size: 0.8rem; }
  .bys-mega-sublinks li a { font-size: 0.72rem; }
}

/* ===== WORDPRESS NATIVE UYUMLULUK ===== */

/* CF7 Form Stilleri */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="email"],
.wpcf7-form select,
.wpcf7-form textarea {
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  padding: 12px 16px;
  font-size: 0.88rem;
  font-family: 'Manrope', sans-serif;
  width: 100%;
  outline: none;
  background: #fff;
  transition: border-color 0.2s ease;
  margin-bottom: 16px;
}
.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
  border-color: var(--teal-500);
  box-shadow: 0 0 0 3px rgba(13,148,136,0.1);
}
.wpcf7-form input[type="submit"] {
  background: var(--teal-600);
  color: #fff !important;
  border: none;
  border-radius: 50px;
  padding: 14px 36px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(13,148,136,0.3);
}
.wpcf7-form input[type="submit"]:hover {
  background: var(--teal-700);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(13,148,136,0.4);
}
.wpcf7-not-valid-tip { color: #dc2626; font-size: 0.78rem; margin-top: -10px; margin-bottom: 8px; display: block; }
.wpcf7-response-output { margin-top: 16px; padding: 12px 16px; border-radius: 10px; font-size: 0.88rem; }
.wpcf7-mail-sent-ok { background: #d1fae5; border: 1px solid #6ee7b7; color: #065f46; }
.wpcf7-validation-errors { background: #fee2e2; border: 1px solid #fca5a5; color: #991b1b; }

/* WordPress Alignment */
.aligncenter { display: block; margin: 0 auto 24px; }
.alignleft   { float: left; margin: 0 24px 16px 0; }
.alignright  { float: right; margin: 0 0 16px 24px; }
.alignwide   { max-width: 100%; }
.wp-caption  { max-width: 100%; }
.wp-caption-text { font-size: 0.8rem; color: var(--slate-400); text-align: center; margin-top: 6px; }

/* Body class – admin bar spacer */
.admin-bar .bys-navbar { top: 32px; }
@media (max-width: 782px) { .admin-bar .bys-navbar { top: 46px; } }

/* WP Menu nav-item li reset */
.navbar-nav > li { list-style: none; }

/* Footer menu li reset */
.bys-footer-links > li { list-style: none; }

/* ===== MISSION + CTA SPLIT (HakkÄ±mÄ±zda) ===== */
.bys-mission-cta-split { overflow: hidden; }
.bys-split-left  { background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%); min-height: 420px; padding: 0; }
.bys-split-right { background: linear-gradient(135deg, #0f766e 0%, #134e4a 100%); min-height: 420px; padding: 0; }
.bys-split-inner { padding: 70px 60px; max-width: 520px; }
@media (max-width: 991.98px) {
  .bys-split-inner { padding: 60px 30px; max-width: 100%; }
}
.bys-split-badge {
  display: inline-block; padding: 4px 14px; border-radius: 50px;
  background: rgba(255,255,255,.15); color: #fff;
  font-size: 0.7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 16px;
}
.bys-split-title {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 800; color: #fff; line-height: 1.25; margin-bottom: 16px;
}
.bys-split-desc {
  font-size: 1rem; color: rgba(255,255,255,.82); line-height: 1.75; margin-bottom: 0;
}

