

:root {
  --primary:       #1b4f8a;   /* lacivert — ana marka */
  --primary-hover: #154080;   /* koyu lacivert — hover */
  --accent:        #e8605a;   /* mercan-kırmızı — CTA, vurgular */
  --accent-hover:  #d04e48;   /* koyu mercan — hover */
  --text:          #1e293b;
  --text-muted:    #64748b;
  --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;
}

*, *::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: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

/* ─── 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: 56rem;
  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: 56rem;
  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: 56rem;
  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); }
}

.hero-split-text {
  animation: fadeUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation-delay: 0.15s;
}

.hero-split-image {
  animation: heroImgEntrance 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation-delay: 0.25s;
}

.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: var(--accent);
  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(232,96,90,0.2);
}
.cta-button:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(232,96,90,0.25);
}
.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.6); 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; }
.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; }
}

/* ─── HERO SPLIT ─── */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  min-height: 480px;
  padding: 4rem 0;
}
.hero-split-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--bg-soft);
}
.hero-split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-soft);
  color: var(--text-muted);
  font-size: 0.875rem;
}
@media (max-width: 767px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-split-image { aspect-ratio: 3/4; order: -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);
  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);
}

/* ─── 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);
  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-kategori {
  margin-bottom: 0.875rem;
}
.uzmanlik-kategori strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.2rem;
}
.uzmanlik-kategori span {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.uzmanlik-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.4rem;
}
.uzmanlik-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--primary);
  background: rgba(27,79,138,0.07);
  border: 1px solid rgba(27,79,138,0.18);
  border-radius: 999px;
  padding: 0.2rem 0.75rem;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.uzmanlik-tag:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* ─── 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: var(--accent);
  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.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  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-md);
  transform: translateY(-3px);
  border-color: #1b4f8a;
}
.contact-info-action {
  margin-top: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #1b4f8a;
  letter-spacing: 0.01em;
}
.contact-info-action--wa {
  color: #16a34a;
}
.contact-info-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.4rem;
  flex-shrink: 0;
}
.contact-info-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.contact-info-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}
.contact-info-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: start;
}
.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: 2rem;
}
.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: flex;
  flex-direction: column;
  gap: 1rem;
}
.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-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 {
  position: sticky;
  top: 5rem;
  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: 460px;
  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-main-grid { grid-template-columns: 1fr; }
  .contact-map-col { position: static; }
  .contact-map-col iframe { height: 300px; }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .contact-info-row { grid-template-columns: repeat(3, 1fr); }
}

/* ─── HASTA YOLCULUĞU ─── */
.journey-section {
  background: var(--bg-soft);
  padding: 4rem 0;
  text-align: center;
}
.journey-section-sub {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--accent);
  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 KARTLARI ─── */
.calc-tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.calc-tool-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.75rem 1rem 1.5rem;
  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: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}
.calc-tool-card:hover .calc-tool-icon {
  background: var(--primary-hover);
}
.calc-tool-title {
  font-size: 0.82rem;
  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);
  background: rgba(232,96,90,0.08);
  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);
  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);
  border-color: var(--accent);
}
