

:root {
  --primary:       #1b4f8a;   /* lacivert — ana marka */
  --primary-hover: #154080;   /* koyu lacivert — hover */
  --accent:        #2a9d8f;   /* tıbbi teal — CTA, vurgular */
  --accent-hover:  #23867a;   /* koyu teal — hover */
  --accent-soft:   #e7f4f2;   /* açık teal tint — zemin/rozet */
  --accent-text:   #1f7a6e;   /* koyu teal — küçük metin (WCAG AA ≥4.5:1) */
  --dark:          #0f2744;   /* koyu lacivert — koyu bölümler, top bar */
  --text:          #1e293b;
  --text-muted:    #556070;   /* koyulaştırıldı — WCAG AA ≥4.5:1 */
  --bg:            #fffdfb;   /* sıcak beyaz zemin */
  --bg-soft:       #faf8f5;   /* sıcak krem — bölüm arkaplanı */
  --white:         #ffffff;
  --border:        #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.10);
  --radius: 0.75rem;
  --radius-lg: 1rem;
  --container:      71.25rem; /* 1140px — header + geniş anasayfa bölümleri */
  --container-read: 56rem;    /* 896px — makale/okuma genişliği */
}

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

h1, h2, h3, h4, h5, h6 { font-size: inherit; font-weight: inherit; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { background: none; border: none; cursor: pointer; font: inherit; }
ul, ol { list-style: none; padding: 0; margin: 0; }
table { border-collapse: collapse; }
input, textarea, select { font: inherit; }

body {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

/* ─── SKIP LINK (erişilebilirlik) ─── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  background: var(--primary);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 0 0 0.4rem 0;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus { left: 0; }

/* ─── GÖRÜNÜR FOCUS (klavye erişimi) ─── */
.nav-link:focus-visible,
.faq-trigger:focus-visible,
.nav-hamburger:focus-visible,
.gallery-item:focus-visible,
.card-arrow:focus-visible,
.nav-brand:focus-visible,
.tab-btn:focus-visible,
.top-bar-socials a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ─── TOP BAR ─── */
.top-bar {
  background: #0f2744;
  color: rgba(255,255,255,0.8);
  font-size: 0.75rem;
  height: 36px;
  display: flex;
  align-items: center;
}
.top-bar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-bar-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s;
}
.top-bar-phone:hover { color: white; }
.top-bar-socials {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.top-bar-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 5px;
  transition: opacity 0.15s, transform 0.15s;
}
.top-bar-socials a:hover { opacity: 0.85; transform: translateY(-1px); }
@media (max-width: 480px) {
  .top-bar-phone span { display: none; }
}

/* ─── NAVIGATION ─── */
.site-nav {
  background: var(--white);
  box-shadow: 0 1px 0 var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.site-nav.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1rem;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-brand img {
  height: 44px;
  width: auto;
}

.nav-desktop {
  display: none;
  gap: 1.5rem;
  align-items: center;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .nav-desktop { display: flex; }
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  padding: 0.25rem 0;
  position: relative;
  transition: color 0.2s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.nav-link:hover { color: var(--primary); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.active {
  color: var(--primary);
}
.nav-link.active::after { transform: scaleX(1); }

.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.15s;
}
.nav-hamburger:hover { background: var(--bg); }
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.25s;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 768px) {
  .nav-hamburger { display: none; }
}

.nav-mobile {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--white);
}
.nav-mobile.open { display: block; }
.nav-mobile-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.nav-mobile a {
  display: block;
  padding: 0.625rem 0.75rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: 0.5rem;
  transition: background 0.15s;
}
.nav-mobile a:hover { background: var(--bg); color: var(--primary); }
.nav-mobile a.active { background: #eff6ff; color: var(--primary); }
.nav-mobile .cta-button {
  display: block;
  text-align: center;
  margin-top: 0.5rem;
}

/* ─── BREADCRUMB ─── */
.breadcrumb {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .sep { opacity: 0.4; }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroImgEntrance {
  from { opacity: 0; transform: translateY(16px) scale(1.04); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── HERO ─── */
.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--primary);
}

/* ─── CTA BUTTON ─── */
.cta-button {
  display: inline-block;
  background: #1a7066;   /* koyu teal — beyaz yazıyla WCAG AA ≥4.5:1 (erişilebilirlik) */
  color: var(--white);
  padding: 0.75rem 1.75rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
  box-shadow: 0 1px 3px rgba(42,157,143,0.22);
}
.cta-button:hover {
  background: #15625a;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(42,157,143,0.28);
}
.cta-button--outline {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: 0 1px 3px rgba(27,79,138,0.1);
}
.cta-button--outline:hover {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(27,79,138,0.2);
}
.cta-button:active { transform: translateY(0); }
.cta-button:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

/* ─── SECTION TITLE ─── */
.section-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ─── PROSE (article pages) ─── */
.prose {
  color: var(--text);
  max-width: none;
}
.prose h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin: 2.25rem 0 0.875rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e0eaf5;
  line-height: 1.3;
}
.prose h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin: 1.5rem 0 0.5rem;
}
.prose p {
  margin-bottom: 1.1rem;
  color: #334155;
  line-height: 1.8;
}
.prose ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.25rem;
}
.prose ul li {
  padding: 0.35rem 0 0.35rem 1.5rem;
  position: relative;
  color: #334155;
  line-height: 1.7;
}
.prose ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.prose a { color: var(--primary); text-decoration: underline; text-underline-offset: 2px; }
.prose a:hover { color: var(--primary-hover); }

/* ─── INFO BOX ─── */
.info-box {
  background: #eff6ff;
  border-left: 3px solid var(--primary);
  border-radius: 0 0.5rem 0.5rem 0;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  font-size: 0.9rem;
  color: #1e3a5f;
}

/* ─── TABLE ─── */
.prose table,
.data-table {
  width: 100%;
  font-size: 0.875rem;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.prose table thead,
.data-table thead {
  background: var(--primary);
  color: white;
}
.prose table thead th,
.data-table thead th {
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.prose table tbody tr,
.data-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.1s;
}
.prose table tbody tr:hover,
.data-table tbody tr:hover { background: #f8fafc; }
.prose table tbody tr:last-child,
.data-table tbody tr:last-child { border-bottom: none; }
.prose table td,
.data-table td { padding: 0.75rem 1rem; vertical-align: top; }

/* ─── FAQ ACCORDION ─── */
.faq-list {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-item {
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.faq-item:last-child { border-bottom: none; }
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  transition: background 0.15s, color 0.15s;
}
.faq-trigger:hover { background: #f8fafc; color: var(--primary); }
.faq-trigger.open { color: var(--primary); background: #eff6ff; }
.faq-icon {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-muted);
  transition: all 0.2s;
  line-height: 1;
}
.faq-trigger.open .faq-icon {
  background: var(--primary);
  color: white;
  transform: rotate(45deg);
}
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.25rem;
  font-size: 0.9rem;
  line-height: 1.75;
  color: #475569;
}
.faq-body.open {
  max-height: 500px;
  padding: 0 1.25rem 1.25rem;
}

/* ─── STAT CARDS ─── */
.stat-card {
  background: var(--primary);
  color: white;
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  text-align: center;
  transition: transform 0.15s, box-shadow 0.15s;
}
.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.stat-card .stat-number {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat-card .stat-label {
  font-size: 0.8rem;
  margin-top: 0.35rem;
  opacity: 0.85;
  font-weight: 500;
}
.stat-card .stat-sub {
  font-size: 0.7rem;
  margin-top: 0.2rem;
  opacity: 0.6;
}

/* ─── PAGE HEADER ─── */
.page-header {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.page-header h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}
.page-header .byline {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.page-header .byline span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* ─── CTA BOX ─── */
.cta-box {
  background: linear-gradient(135deg, #1b4f8a 0%, #154080 100%);
  color: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  margin-top: 3rem;
}
.cta-box p { color: rgba(255,255,255,0.85); margin: 0; }
.cta-box .cta-button {
  margin-top: 1rem;
}

/* ─── CONTACT STRIP (Ana Sayfa CTA) ─── */
.contact-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 4rem;
  padding: 2rem 2.5rem;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-lg);
}
.contact-strip-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.contact-strip-headline {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
  white-space: nowrap;
  padding-right: 1.5rem;
  border-right: 2px solid var(--border);
}
.contact-strip-details {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  align-items: center;
}
.contact-strip-details span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.contact-strip-details svg { flex-shrink: 0; color: var(--primary); }
@media (max-width: 640px) {
  .contact-strip { padding: 1.25rem 1.5rem; }
  .contact-strip-info { gap: 1rem; }
  .contact-strip-headline { border-right: none; padding-right: 0; }
}

/* ─── COMPLIANCE WARNING ─── */
.compliance-warning {
  font-size: 0.75rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  margin-top: 2.5rem;
  line-height: 1.6;
}

/* ─── CONTACT CARDS ─── */
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--primary);
  color: rgba(255,255,255,0.75);
  margin-top: 4rem;
  padding: 2.5rem 1rem;
  font-size: 0.85rem;
}
.site-footer strong { color: white; }
.site-footer a { color: rgba(255,255,255,0.85); text-underline-offset: 2px; }
.site-footer a:hover { color: white; }
.footer-instagram {
  display: inline-flex;
  align-items: center;
  color: rgba(255,255,255,0.6);
  transition: color 0.15s;
}
.footer-instagram:hover { color: #e1306c; }
.footer-youtube {
  display: inline-flex;
  align-items: center;
  color: rgba(255,255,255,0.6);
  transition: color 0.15s;
}
.footer-youtube:hover { color: #ff0000; }
.footer-facebook {
  display: inline-flex;
  align-items: center;
  color: rgba(255,255,255,0.6);
  transition: color 0.15s;
}
.footer-facebook:hover { color: #1877f2; }
/* Erişilebilirlik: footer sosyal ikonları için min. dokunma hedefi (WCAG ≥24px) */
.footer-instagram, .footer-youtube, .footer-facebook {
  min-width: 24px;
  min-height: 24px;
  justify-content: center;
}
/* Erişilebilirlik: metin içi e-posta linki renge ek olarak altçizgiyle ayırt edilsin */
a[href^="mailto:"] { text-decoration: underline; }
.hero-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  align-items: center;
}
.hero-social a {
  display: inline-flex;
  align-items: center;
  color: var(--text-muted);
  transition: color 0.15s;
}
.hero-social a:hover { color: var(--primary); }
.hero-social a.instagram:hover { color: #e1306c; }
.hero-social a.facebook:hover  { color: #1877f2; }
.hero-social a.youtube:hover   { color: #ff0000; }

/* ─── SERVICE CARDS (homepage) ─── */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: box-shadow 0.2s, transform 0.15s, border-color 0.2s;
  box-shadow: var(--shadow-sm);
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: #bfdbfe;
}
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0.75rem 0 0.5rem;
  line-height: 1.3;
}
.service-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}
.service-card .arrow {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.secondary-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: background 0.15s, border-color 0.15s;
  box-shadow: var(--shadow-sm);
}
.secondary-card:hover { background: #eff6ff; border-color: #bfdbfe; }
.secondary-card p:first-child { font-weight: 600; font-size: 0.875rem; color: var(--primary); margin: 0 0 0.25rem; }
.secondary-card p:last-child { font-size: 0.75rem; color: var(--text-muted); margin: 0; }

/* ─── SCROLL TO TOP ─── */
#scroll-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: opacity 0.2s, transform 0.2s;
  font-size: 1rem;
  z-index: 40;
}
#scroll-top.visible { display: flex; }
#scroll-top:hover { transform: translateY(-2px); }

/* ─── RESPONSIVE ─── */
@media (max-width: 640px) {
  .prose h2 { font-size: 1.15rem; }
  .cta-box { padding: 1.5rem 1rem; }
  .contact-card { padding: 1.25rem; }
}

/* ─── İÇ SAYFA ZEMİNİ (krem + beyaz "kağıt" — göz yormayan, profesyonel) ─── */
body:has(.page-hero) { background: var(--bg-soft); }
main:has(.prose) {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin-top: -2.5rem;
  margin-bottom: 3.5rem;
  padding-top: 3rem;
  position: relative;
  z-index: 1;
}

/* ─── BLOG ─── */
.blog-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 1.1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--border);
}
.blog-meta .author { color: var(--primary); font-weight: 600; }
.blog-meta .sep { opacity: 0.45; }
/* GEO "kısa cevap" kutusu — yapay zeka cevap motorlarının çekebileceği özet */
.blog-summary {
  background: var(--accent-soft);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.15rem 1.4rem;
  margin: 0 0 1.9rem;
}
.blog-summary strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--primary);
}
.blog-summary p { margin: 0; font-size: 0.97rem; line-height: 1.7; color: var(--text); }
.blog-card-meta { font-size: 0.78rem; color: var(--text-muted); margin: 0 0 0.4rem; }

/* ─── İÇ SAYFA BAŞLIK BANNER ─── */
.page-hero {
  background:
    radial-gradient(120% 140% at 90% 0%, rgba(42,157,143,0.18) 0%, rgba(42,157,143,0) 50%),
    linear-gradient(120deg, var(--dark) 0%, var(--primary) 100%);
  color: #fff;
}
.page-hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 2.75rem;
}
.page-hero-breadcrumb {
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1rem;
}
.page-hero-breadcrumb a { color: rgba(255,255,255,0.82); text-decoration: none; transition: color 0.15s; }
.page-hero-breadcrumb a:hover { color: #fff; }
.page-hero-breadcrumb .sep { opacity: 0.4; }
.page-hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0;
}
.page-hero-sub {
  color: rgba(255,255,255,0.72);
  font-size: 0.9rem;
  margin: 0.65rem 0 0;
}

/* ─── SİNEMATİK HERO ─── */
.hero {
  position: relative;
  background:
    radial-gradient(120% 120% at 85% 10%, rgba(42,157,143,0.20) 0%, rgba(42,157,143,0) 45%),
    linear-gradient(120deg, var(--dark) 0%, var(--primary) 100%);
  color: #fff;
  overflow: hidden;
}
.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 4.5rem 1.5rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
  min-height: 460px;
}
.hero-text {
  animation: fadeUp 0.6s cubic-bezier(0.25,0.46,0.45,0.94) both;
  animation-delay: 0.1s;
}
.hero-tag {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: #7fded0;
  margin: 0 0 0.9rem;
}
.hero-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #fff;
}
.hero-sub {
  color: rgba(255,255,255,0.82);
  font-size: 1.06rem;
  line-height: 1.75;
  margin: 1.4rem 0 0;
  max-width: 30rem;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.hero-cta { padding: 0.85rem 2rem; font-size: 1rem; }
.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  opacity: 0.9;
  transition: gap 0.15s, opacity 0.15s;
}
.hero-link:hover { opacity: 1; gap: 0.65rem; }
.hero-image {
  animation: heroImgEntrance 1.2s cubic-bezier(0.25,0.46,0.45,0.94) both;
  animation-delay: 0.2s;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  max-width: 380px;
  justify-self: end;
  width: 100%;
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.12);
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 1.5rem;
    text-align: center;
    min-height: 0;
  }
  .hero-text { min-width: 0; }
  .hero-sub { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-name { font-size: clamp(1.9rem, 9vw, 2.6rem); }
  .hero-actions { justify-content: center; }
  .hero-image { order: -1; max-width: 260px; justify-self: center; aspect-ratio: 1/1; }
}

/* ─── SERVICE PHOTO CARD ─── */
.service-photo-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  text-decoration: none;
  color: var(--text);
  transition: transform 0.2s, box-shadow 0.2s;
  background: var(--white);
}
.service-photo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-photo-card .card-image {
  aspect-ratio: 16/9;
  background: var(--bg-soft);
  overflow: hidden;
  position: relative;
}
.service-photo-card .card-image img {
  width: 100%; height: 100%; object-fit: cover;
}
.service-photo-card .card-image .card-category {
  position: absolute;
  bottom: 0.75rem;
  left: 1rem;
}
.service-photo-card .card-body {
  padding: 1.25rem 1.5rem 1.5rem;
}
.service-photo-card h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 0.5rem;
}
.service-photo-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0 0 1rem;
  line-height: 1.5;
}
.service-photo-card .card-arrow {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-text);
  display: inline-block;
  transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.service-photo-card:hover .card-arrow {
  transform: translateX(4px);
}

/* ─── TAM GENİŞLİK BANT + HİZMET IZGARASI ─── */
.services-band {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: var(--bg-soft);
  padding: 4rem 0;
}
.services-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.band-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--primary);
  text-align: center;
  margin: 0;
}
.band-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
  margin: 0.5rem 0 2.5rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.band-cta {
  text-align: center;
  margin-top: 2.5rem;
}
@media (max-width: 1023px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .services-grid { grid-template-columns: 1fr; } }

/* ─── VİDEO BANDI (koyu, tam genişlik) ─── */
.video-band {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background:
    radial-gradient(120% 120% at 15% 0%, rgba(42,157,143,0.18) 0%, rgba(42,157,143,0) 45%),
    linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
  padding: 4rem 0;
}
.video-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.band-title--light { color: #fff; }
.band-subtitle--light { color: rgba(255,255,255,0.7); }
.hp-video-carousel { position: relative; }
.hp-video-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 0.25rem 0 0.5rem;
  scrollbar-width: none;
}
.hp-video-track::-webkit-scrollbar { display: none; }
.hp-video-card {
  margin: 0;
  flex: 0 0 calc((100% - 3rem) / 3);
  scroll-snap-align: start;
}
.hp-video-card video,
.hp-video-card iframe {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  background: #000;
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
  display: block;
}
.hp-video-card figcaption {
  margin-top: 0.9rem;
  text-align: center;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  font-size: 0.95rem;
}
.hp-video-nav {
  position: absolute;
  top: calc(50% - 1.1rem);
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.32);
  z-index: 3;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s, opacity 0.15s;
}
.hp-video-nav:hover { background: #fff; transform: translateY(-50%) scale(1.07); }
.hp-video-prev { left: -12px; }
.hp-video-next { right: -12px; }
.hp-video-nav:disabled { opacity: 0; pointer-events: none; }
@media (max-width: 1023px) { .hp-video-card { flex-basis: calc((100% - 1.5rem) / 2); } }
@media (max-width: 640px) {
  .hp-video-card { flex-basis: 86%; }
  .hp-video-nav { display: none; }
}
/* YouTube facade (tıklayınca yüklenir) */
.yt-facade {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  background-color: #000;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
  cursor: pointer;
  display: block;
}
.yt-facade::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(0,0,0,0.18);
  transition: background 0.15s;
}
.yt-facade:hover::before { background: rgba(0,0,0,0.04); }
.yt-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 44px;
  border-radius: 12px;
  background: rgba(229,9,20,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s, background 0.15s;
}
.yt-facade:hover .yt-play { transform: translate(-50%, -50%) scale(1.08); background: #ff0000; }
.yt-play::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 18px solid #fff;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  margin-left: 4px;
}

/* ─── SSS BANDI (açık tint, tam genişlik) ─── */
.faq-band {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: var(--accent-soft);
  padding: 4rem 0;
}
.faq-inner {
  max-width: 46rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.faq-inner .faq-list { margin-top: 0.5rem; background: var(--white); }

/* ─── GALLERY GRID ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
@media (max-width: 767px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
.gallery-item {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-soft);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: contain;
  transition: transform 0.3s;
}
.gallery-item:hover img { transform: scale(1.04); }

/* ─── VIDEO GRID ─── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 767px) {
  .video-grid { grid-template-columns: 1fr; }
}
.video-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--white);
}
.video-card iframe,
.video-card video {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
  border: none;
  background: #000;
}
.video-card-body {
  padding: 0.875rem 1rem;
}
.video-card-body h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}

/* ─── TAB NAV ─── */
.tab-nav {
  display: flex;
  gap: 0.5rem;
  border-bottom: 2px solid var(--border);
  margin-bottom: 2rem;
}
.tab-btn {
  padding: 0.625rem 1.25rem;
  border: none;
  background: none;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color 0.15s, border-color 0.15s;
}
.tab-btn.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}
.tab-btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ─── WHY GRID ─── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 767px) {
  .why-grid { grid-template-columns: 1fr; }
}
.why-item {
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: var(--radius);
  background: var(--bg-soft);
}
.why-item .why-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.why-item h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 0.375rem;
}
.why-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* ─── HAKKIMDA GRID ─── */
.hakkimda-grid {
  display: grid;
  grid-template-columns: minmax(220px, 280px) 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 767px) {
  .hakkimda-grid { grid-template-columns: 1fr; }
}
.hakkimda-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--bg-soft);
}
.hakkimda-photo img {
  width: 100%; height: 100%; object-fit: cover;
}
.cv-section {
  margin-bottom: 1.75rem;
}
.cv-section h3 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-text);
  margin: 0 0 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.cv-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cv-section ul li {
  padding: 0.375rem 0;
  font-size: 0.9rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}
.cv-section ul li:last-child { border-bottom: none; }

/* CV kariyer zaman çizelgesi */
.cv-timeline {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cv-timeline li {
  display: flex;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
}
.cv-timeline li:last-child { border-bottom: none; }
.cv-year {
  min-width: 9rem;
  font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
  flex-shrink: 0;
}

/* CV uzmanlık kategorileri */
/* ─── UZMANLIK ALANLARI (hakkımda — kategori kartları) ─── */
.expertise { margin-top: 3.5rem; }
.expertise-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--primary);
  text-align: center;
  margin: 0;
}
.expertise-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0.4rem 0 2rem;
}
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.expertise-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.5rem 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.15s;
}
.expertise-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.expertise-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-text);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
}
.expertise-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 0.5rem;
}
.expertise-card ul { list-style: none; margin: 0; padding: 0; }
.expertise-card li { border-top: 1px solid var(--border); }
.expertise-card li:first-child { border-top: none; }
.expertise-card li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: var(--text);
  text-decoration: none;
  transition: color 0.15s;
}
.expertise-card li a::after {
  content: '→';
  color: var(--accent-text);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.15s, transform 0.15s;
}
.expertise-card li a:hover { color: var(--accent-text); }
.expertise-card li a:hover::after { opacity: 1; transform: translateX(0); }
@media (max-width: 900px) { .expertise-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .expertise-grid { grid-template-columns: 1fr; } }

/* ─── KART GRADİENT (fotoğrafsız hizmet kartları) ─── */
.card-image--gradient {
  display: flex;
  align-items: flex-end;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, var(--primary) 0%, #154080 100%);
}

.card-category {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.12);
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
}

/* ─── TAILWIND REPLACEMENTS ─── */
/* Layout */
.max-w-4xl  { max-width: 56rem; }
.max-w-none { max-width: none; }
.mx-auto    { margin-left: auto; margin-right: auto; }
.w-full     { width: 100%; }
/* Padding */
.px-4  { padding-left: 1rem;   padding-right: 1rem; }
.py-10 { padding-top: 2.5rem;  padding-bottom: 2.5rem; }
.py-12 { padding-top: 3rem;    padding-bottom: 3rem; }
.p-3   { padding: 0.75rem; }
.p-6   { padding: 1.5rem; }
.pl-4  { padding-left: 1rem; }
/* Margin */
.mt-2  { margin-top: 0.5rem; }
.mt-8  { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mb-2  { margin-bottom: 0.5rem; }
.mb-4  { margin-bottom: 1rem; }
.mb-6  { margin-bottom: 1.5rem; }
.mb-8  { margin-bottom: 2rem; }
/* Typography */
.text-xs   { font-size: 0.75rem;   line-height: 1rem; }
.text-sm   { font-size: 0.875rem;  line-height: 1.25rem; }
.text-lg   { font-size: 1.125rem;  line-height: 1.75rem; }
.text-3xl  { font-size: 1.875rem;  line-height: 2.25rem; }
.text-center { text-align: center; }
.text-left   { text-align: left; }
.font-medium  { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold    { font-weight: 700; }
.underline    { text-decoration: underline; }
/* Colors */
.text-blue-700 { color: #1d4ed8; }
.text-blue-900 { color: #1e3a8a; }
.text-gray-400 { color: #9ca3af; }
.text-gray-500 { color: #6b7280; }
.text-gray-600 { color: #4b5563; }
.text-gray-700 { color: #374151; }
.bg-blue-50  { background-color: #eff6ff; }
.bg-gray-50  { background-color: #f9fafb; }
/* Border */
.border        { border: 1px solid #e5e7eb; }
.border-t      { border-top: 1px solid #e5e7eb; }
.border-l-4    { border-left-width: 4px; border-left-style: solid; }
.border-blue-100 { border-color: #dbeafe; }
.border-blue-200 { border-color: #bfdbfe; }
.border-gray-200 { border-color: #e5e7eb; }
.rounded-lg  { border-radius: 0.5rem; }
.rounded-xl  { border-radius: 0.75rem; }
/* Overflow */
.overflow-x-auto { overflow-x: auto; }
.overflow-hidden { overflow: hidden; }
/* Grid */
.grid { display: grid; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
@media (min-width: 768px) {
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
/* Hover */
.hover\:text-blue-700:hover { color: #1d4ed8; }

/* ─── WHATSAPP FLOAT ─── */
@keyframes wa-pulse {
  0%, 100% { transform: scale(1);    box-shadow: 0 4px 16px rgba(37,211,102,0.35); }
  50%       { transform: scale(1.08); box-shadow: 0 6px 22px rgba(37,211,102,0.50); }
}
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  z-index: 999;
  text-decoration: none;
  animation: wa-pulse 4s ease-in-out infinite;
}
.whatsapp-float:hover {
  animation: none;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float svg { display: block; }

/* ─── HERO STATS BAR ─── */
.hero-stats {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 3rem;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.hero-stat-item {
  flex: 1;
  padding: 1.25rem 1rem;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}
.hero-stat-item:last-child { border-right: none; }
.hero-stat-item:hover { background: var(--bg-soft); }
.hero-stat-num {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.hero-stat-text {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}
.hero-stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* ─── MOBİL STICKY CTA BAR ─── */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  padding: 0.75rem 1rem;
  background: var(--white);
  box-shadow: 0 -2px 12px rgba(0,0,0,0.1);
  gap: 0.75rem;
  z-index: 200;
  border-top: 1px solid var(--border);
}
.mobile-cta-call {
  flex: 1;
  text-align: center;
  padding: 0.75rem 0.5rem;
  border: 2px solid var(--primary);
  border-radius: 0.5rem;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
}
.mobile-cta-book {
  flex: 2;
  text-align: center;
  padding: 0.75rem 0.5rem;
  background: #1a7066;
  border-radius: 0.5rem;
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
}
@media (max-width: 767px) {
  .mobile-cta-bar    { display: flex; }
  .whatsapp-float    { bottom: 5.5rem; }
  #scroll-top        { bottom: 5.5rem; }
}

/* ─── İLETİŞİM SAYFASI ─── */
.contact-info-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.contact-info-card--link {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.contact-info-card--link:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: #dbe7f5;
}
.contact-info-card--link:hover .contact-info-icon { transform: scale(1.07); }
.contact-info-card--link:hover .contact-info-action { gap: 0.55rem; }
.contact-info-action {
  margin-top: 0.9rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-text);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.15s;
}
.contact-info-action--wa {
  color: #128c4a;
}
.contact-info-icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
  flex-shrink: 0;
  box-shadow: 0 8px 18px rgba(0,0,0,0.14);
  transition: transform 0.2s;
}
.contact-info-icon svg { width: 24px; height: 24px; }
.contact-info-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.contact-info-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
  margin-top: 0.1rem;
}
.contact-info-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.contact-main-grid {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.contact-form-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact-form-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
}
.contact-form-box h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.35rem;
}
.contact-form-box > p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem 1rem;
}
.contact-form .form-group:has(textarea),
.contact-form > button {
  grid-column: 1 / -1;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
}
.form-group input,
.form-group textarea {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0.65rem 0.875rem;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.15s, box-shadow 0.15s;
  width: 100%;
  resize: none;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(27,79,138,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #b0bec5; }
.contact-or-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.25rem 0;
  color: var(--text-muted);
  font-size: 0.8rem;
}
.contact-or-divider::before,
.contact-or-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.contact-online-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.contact-online-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.contact-online-btn:hover { background: var(--primary); color: white; }
.contact-map-col {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.contact-map-col iframe {
  display: block;
  width: 100%;
  height: 560px;
  border: 0;
}
.contact-map-footer {
  background: var(--white);
  padding: 0.875rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
}
.contact-map-footer p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}
.contact-map-footer a {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  white-space: nowrap;
}
.contact-map-footer a:hover { text-decoration: underline; }
.form-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.5rem;
}
@media (max-width: 767px) {
  .contact-info-row { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; }
  .contact-online-row { grid-template-columns: 1fr; }
  .contact-map-col iframe { height: 340px; }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .contact-info-row { grid-template-columns: repeat(3, 1fr); }
}

/* ─── HASTA YOLCULUĞU ─── */
.journey-section {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: var(--bg-soft);
  padding: 4rem 1.5rem;
  text-align: center;
}
.journey-section-sub {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--accent-text);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.journey-section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.journey-section-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 36rem;
  margin: 0 auto 3rem;
  line-height: 1.6;
}
.journey-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 52rem;
  margin: 0 auto;
}
.journey-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 2rem 1.5rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: 1rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.journey-num {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(27,79,138,0.25);
}
.journey-step-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}
.journey-step-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.journey-arrow {
  color: var(--primary);
  opacity: 0.35;
  flex-shrink: 0;
  align-self: center;
  display: flex;
  align-items: center;
}
.journey-location {
  margin-top: 2.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2rem;
  padding: 0.5rem 1.1rem;
}
.journey-location svg { flex-shrink: 0; color: var(--primary); }
@media (max-width: 640px) {
  .journey-steps { grid-template-columns: 1fr; gap: 0.75rem; }
  .calc-tools-grid { grid-template-columns: 1fr; }
}

/* ─── HESAPLAMA ARAÇLARI BANDI + KARTLARI ─── */
.calc-band {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: var(--bg);
  padding: 4rem 0;
}
.calc-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.calc-tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 48rem;
  margin: 0 auto;
}
@media (max-width: 640px) { .calc-tools-grid { grid-template-columns: 1fr; } }
.calc-tool-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 0.85rem 1.25rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: 1rem;
  text-decoration: none;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  box-shadow: var(--shadow-sm);
}
.calc-tool-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.calc-tool-icon {
  width: 100%;
  aspect-ratio: 11 / 6;
  border-radius: 0.75rem;
  overflow: hidden;
  background: linear-gradient(150deg, #f3f7fd 0%, #e8f0f9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.calc-tool-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.calc-tool-card:hover .calc-tool-icon img {
  transform: scale(1.05);
}
.calc-tool-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.45;
}

/* ─── İLGİLİ HİZMETLER ─── */
.related-services {
  margin: 2.5rem 0 1rem;
  padding: 1.5rem 1.75rem;
  background: var(--bg-soft);
  border-radius: 0.75rem;
  border-left: 3px solid var(--primary);
}
.related-services h3 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 0.9rem;
}
.related-services ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.related-services li {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.related-services li a {
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}
.related-services li a:hover { text-decoration: underline; }

/* ─── TOOL LINK CARDS ─── */
.tool-link-card:hover { border-color: var(--primary); }

/* ─── KİLO TAKİBİ TABLOSU ─── */
.weight-table { width:100%; border-collapse:collapse; margin-top:1.25rem; font-size:0.9rem; }
.weight-table th { padding:0.5rem 0.75rem; background:var(--bg-soft); text-align:left; font-size:0.75rem; font-weight:700; letter-spacing:0.05em; text-transform:uppercase; color:var(--text-muted); }
.weight-table td { padding:0.5rem 0.75rem; border-top:1px solid #dbeafe; }
.weight-table tr:last-child td { font-weight:700; color:var(--primary); }

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  body { animation: none; }
  .reveal { opacity: 1; transform: none; }
}

/* ─── HEKİM NOTU ─── */
.hekim-notu-section {
  background: var(--bg-soft);
  padding: 4rem 1.5rem;
}
.hekim-notu-card {
  max-width: 42rem;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 2rem 2.5rem 1.75rem;
}
.hekim-notu-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-text);
  background: var(--accent-soft);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}
.hekim-notu-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  line-height: 1.65;
  color: var(--text);
  font-style: italic;
  position: relative;
  padding-left: 1.5rem;
  margin: 0;
}
.hekim-notu-quote::before {
  content: '\201C';
  font-size: 3.5rem;
  line-height: 0;
  position: absolute;
  left: 0;
  top: 0.9rem;
  color: var(--accent-text);
  opacity: 0.2;
  font-family: 'Playfair Display', serif;
}
.hekim-notu-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.hekim-notu-attr {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
  margin: 0;
}
.hekim-notu-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1.5px solid var(--border);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.hekim-notu-link:hover {
  color: var(--accent-text);
  border-color: var(--accent);
}
