/* saglikturizmi.info — Shared Stylesheet */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #FFFFFF;
  --bg-soft: #F8F7FB;
  --bg-lavender: #EEE7F8;
  --purple-deep: #3B0A57;
  --purple-main: #6D28D9;
  --purple-mid: #7C3AED;
  --purple-light: #A78BFA;
  --purple-xlight: #EDE9FE;
  --text-dark: #171321;
  --text-mid: #5F5A6B;
  --text-light: #9991A8;
  --border: #E8E2F0;
  --border-strong: #C4B8D8;
  --navy: #1E1A2E;
  --success: #059669;
  --warning: #D97706;
  --danger: #DC2626;
  --font: 'Plus Jakarta Sans', sans-serif;
  --font-serif: 'Lora', serif;
}
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: var(--font); cursor: pointer; }
::selection { background: var(--purple-xlight); color: var(--purple-deep); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-soft); }
::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 3px; }

/* ── Layout */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 860px; margin: 0 auto; padding: 0 24px; }
.container-xs { max-width: 720px; margin: 0 auto; padding: 0 24px; }
.page-wrap { padding-top: 88px; min-height: 100vh; }
.section { padding: 80px 0; }
.section-soft { background: var(--bg-soft); }
.section-navy { background: var(--navy); }
.section-lavender { background: var(--bg-lavender); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.mt-8 { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-20 { margin-top: 20px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.text-center { text-align: center; }
.wrap { flex-wrap: wrap; }

/* ── Typography */
h1 { font-size: clamp(28px, 4vw, 46px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.15; color: var(--text-dark); }
h2 { font-size: clamp(22px, 3vw, 34px); font-weight: 800; letter-spacing: -0.025em; line-height: 1.2; color: var(--text-dark); }
h3 { font-size: clamp(17px, 2vw, 22px); font-weight: 700; letter-spacing: -0.015em; line-height: 1.3; color: var(--text-dark); }
h4 { font-size: 17px; font-weight: 700; color: var(--text-dark); }
p { font-size: 15px; color: var(--text-mid); line-height: 1.8; }
.lead { font-size: 17px; line-height: 1.75; color: var(--text-mid); }
.caption { font-size: 13px; color: var(--text-light); }
.text-purple { color: var(--purple-main); }
.text-deep { color: var(--purple-deep); }
.text-dark { color: var(--text-dark); }
.text-mid { color: var(--text-mid); }
strong, b { font-weight: 700; color: var(--text-dark); }
.kw { font-weight: 700; color: var(--purple-deep); }

/* ── Header */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97); border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px); height: 64px;
}
.header-inner { height: 64px; display: flex; align-items: center; gap: 24px; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 8px; cursor: pointer; }
.logo-mark { width: 32px; height: 32px; border-radius: 8px; background: var(--purple-deep); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.logo-text { font-weight: 800; font-size: 16px; color: var(--text-dark); letter-spacing: -0.02em; white-space: nowrap; }
.logo-text span { color: var(--purple-main); }
.nav { display: flex; align-items: center; gap: 2px; flex: 1; justify-content: center; }
.nav-link { background: none; border: none; padding: 6px 11px; border-radius: 8px; font-size: 13px; font-weight: 500; color: var(--text-mid); cursor: pointer; transition: all 0.15s; white-space: nowrap; text-decoration: none; display: inline-block; }
.nav-link:hover, .nav-link.active { background: var(--bg-lavender); color: var(--purple-main); font-weight: 600; }

/* Pulse animation for highlighted nav (Hizmetlerimiz) */
@keyframes nav-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(109,40,217,0.55); background: var(--purple-main); }
  50% { box-shadow: 0 0 0 8px rgba(109,40,217,0); background: #7c3aed; }
}
.nav-link-pulse { background: var(--purple-main) !important; color: #fff !important; font-weight: 700 !important; padding: 7px 14px !important; animation: nav-pulse 1.8s infinite; position: relative; }
.nav-link-pulse:hover { background: #4c1d95 !important; color: #fff !important; animation: none; }
.nav-link-pulse.active { background: #4c1d95 !important; color: #fff !important; animation: none; }
.mobile-nav-link-pulse { background: var(--purple-main) !important; color: #fff !important; font-weight: 700 !important; animation: nav-pulse 1.8s infinite; }
.mobile-nav-link-pulse:hover, .mobile-nav-link-pulse.active { background: #4c1d95 !important; color: #fff !important; animation: none; }
.header-ctas { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }

/* Mobile menu toggle (hamburger) */
.menu-toggle { display: none; background: none; border: 1px solid var(--border); border-radius: 10px; width: 40px; height: 40px; flex-direction: column; align-items: center; justify-content: center; gap: 4px; cursor: pointer; padding: 0; flex-shrink: 0; transition: background 0.15s; }
.menu-toggle:hover { background: var(--bg-lavender); }
.menu-toggle span { display: block; width: 18px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: transform 0.25s, opacity 0.2s; }
.menu-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu drawer */
.mobile-menu { position: fixed; top: 64px; right: 0; width: 320px; max-width: 88vw; height: calc(100vh - 64px); background: #fff; border-left: 1px solid var(--border); box-shadow: -16px 0 48px rgba(59,10,87,0.12); transform: translateX(100%); transition: transform 0.3s cubic-bezier(.4,0,.2,1); z-index: 999; overflow-y: auto; visibility: hidden; }
.mobile-menu.open { transform: translateX(0); visibility: visible; }
.mobile-nav { display: flex; flex-direction: column; padding: 16px; gap: 2px; }
.mobile-nav-link { padding: 14px 16px; border-radius: 10px; font-size: 15px; font-weight: 500; color: var(--text-dark); text-decoration: none; transition: background 0.15s; }
.mobile-nav-link:hover, .mobile-nav-link.active { background: var(--bg-lavender); color: var(--purple-main); font-weight: 600; }
.mobile-menu-ctas { display: flex; flex-direction: column; gap: 8px; padding: 16px 0 24px; margin-top: 12px; border-top: 1px solid var(--border); }
.mobile-menu-backdrop { position: fixed; inset: 64px 0 0 0; background: rgba(15,12,40,0.4); backdrop-filter: blur(2px); opacity: 0; visibility: hidden; transition: opacity 0.25s; z-index: 998; }
.mobile-menu-backdrop.open { opacity: 1; visibility: visible; }

/* ── Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font); font-weight: 600; border-radius: 10px; border: none; cursor: pointer; transition: all 0.18s; white-space: nowrap; text-decoration: none; }
.btn-primary { background: var(--purple-main); color: #fff; box-shadow: 0 2px 8px rgba(109,40,217,0.2); }
.btn-primary:hover { background: var(--purple-deep); box-shadow: 0 6px 24px rgba(109,40,217,0.35); }
.btn-secondary { background: var(--bg); color: var(--purple-main); border: 1.5px solid var(--purple-main); }
.btn-secondary:hover { background: var(--bg-lavender); }
.btn-ghost { background: transparent; color: var(--purple-main); }
.btn-ghost:hover { background: var(--bg-lavender); }
.btn-dark { background: var(--purple-deep); color: #fff; }
.btn-dark:hover { background: #2A0843; }
.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-md { padding: 11px 24px; font-size: 14px; }
.btn-lg { padding: 14px 32px; font-size: 15px; }
.btn-wa { background: #25D366; color: #fff; box-shadow: 0 4px 16px rgba(37,211,102,0.3); }
.btn-wa:hover { background: #1ebe5c; }

/* ── Cards */
.card { background: var(--bg); border: 1px solid var(--border); border-radius: 16px; padding: 24px; transition: all 0.2s; }
.card:hover { border-color: var(--border-strong); box-shadow: 0 8px 32px rgba(59,10,87,0.08); }
.card-top-accent { border-top: 3px solid var(--purple-main); }
.card-flat { box-shadow: none; }

/* ── Badges */
.badge { display: inline-flex; align-items: center; gap: 4px; padding: 3px 10px; border-radius: 100px; font-size: 12px; font-weight: 600; letter-spacing: 0.02em; }
.badge-purple { background: var(--bg-lavender); color: var(--purple-main); border: 1px solid var(--purple-xlight); }
.badge-success { background: #ECFDF5; color: #059669; border: 1px solid #A7F3D0; }
.badge-warning { background: #FFFBEB; color: #D97706; border: 1px solid #FDE68A; }
.badge-danger { background: #FEF2F2; color: #DC2626; border: 1px solid #FECACA; }

/* ── Section Tag */
.section-tag { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.section-tag-bar { width: 3px; height: 20px; border-radius: 2px; background: var(--purple-main); }
.section-tag-text { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--purple-main); }

/* ── Insight Boxes */
.insight { border-radius: 12px; padding: 14px 18px; display: flex; gap: 12px; align-items: flex-start; }
.insight-icon { width: 22px; height: 22px; border-radius: 50%; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.insight-info { background: var(--bg-lavender); border: 1px solid var(--purple-xlight); }
.insight-info .insight-icon { background: var(--purple-main); }
.insight-warning { background: #FFFBEB; border: 1px solid #FDE68A; }
.insight-warning .insight-icon { background: #D97706; }
.insight-success { background: #ECFDF5; border: 1px solid #A7F3D0; }
.insight-success .insight-icon { background: #059669; }
.insight-note { background: var(--bg-soft); border: 1px solid var(--border); }
.insight-note .insight-icon { background: var(--text-light); }
.insight-title { font-weight: 700; font-size: 13px; margin-bottom: 4px; }
.insight-body { font-size: 14px; color: var(--text-mid); line-height: 1.6; }

/* ── Forms */
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label { font-size: 13px; font-weight: 600; color: var(--text-mid); }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--border);
  border-radius: 10px; font-size: 14px; font-family: var(--font);
  color: var(--text-dark); background: var(--bg); outline: none;
  transition: border-color 0.15s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--purple-main); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.score-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.score-btn { width: 40px; height: 40px; border-radius: 8px; border: 1.5px solid var(--border); background: var(--bg); color: var(--text-mid); font-weight: 700; font-size: 15px; cursor: pointer; transition: all 0.15s; font-family: var(--font); }
.score-btn.active { border-color: var(--purple-main); background: var(--purple-main); color: #fff; }
.choice-btn { padding: 7px 18px; border-radius: 8px; border: 1.5px solid var(--border); background: var(--bg); color: var(--text-mid); font-weight: 600; font-size: 13px; cursor: pointer; transition: all 0.15s; font-family: var(--font); }
.choice-btn.active { border-color: var(--purple-main); background: var(--purple-main); color: #fff; }

/* ── FAQ Accordion */
.faq-item { border: 1px solid var(--border); border-radius: 10px; margin-bottom: 8px; overflow: hidden; }
.faq-q { width: 100%; padding: 16px 20px; text-align: left; background: var(--bg); border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: var(--font); font-size: 15px; font-weight: 600; color: var(--text-dark); transition: background 0.15s; }
.faq-q:hover { background: var(--bg-soft); }
.faq-q.open { background: var(--bg-lavender); }
.faq-a { padding: 0 20px 16px; font-size: 14px; color: var(--text-mid); line-height: 1.75; }
.faq-icon { font-size: 20px; color: var(--purple-main); line-height: 1; }

/* ── Progress / Score */
.score-display { font-size: 64px; font-weight: 900; line-height: 1; }
.progress-bar { height: 8px; background: var(--border); border-radius: 4px; overflow: hidden; }
.progress-fill { height: 100%; border-radius: 4px; transition: width 1s ease; }

/* ── Breadcrumb */
.breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-light); flex-wrap: wrap; padding: 16px 0; }
.breadcrumb a { color: var(--text-light); transition: color 0.15s; }
.breadcrumb a:hover { color: var(--purple-main); }
.breadcrumb span { color: var(--text-light); }

/* ── Page header */
.page-hero { background: var(--bg-soft); padding: 48px 0 64px; border-bottom: 1px solid var(--border); }
.page-hero h1 { margin-bottom: 16px; }

/* ── SEO Article */
.seo-article { padding: 64px 0 80px; }
.seo-article h2 { margin: 40px 0 16px; }
.seo-article h3 { margin: 28px 0 12px; font-size: 19px; }
.seo-article p { margin-bottom: 18px; }
.seo-article ul, .seo-article ol { margin: 16px 0 20px 24px; }
.seo-article li { font-size: 15px; color: var(--text-mid); line-height: 1.8; margin-bottom: 6px; }
.seo-article .kw { font-weight: 700; color: var(--purple-deep); }
.aeo-box { background: var(--bg-lavender); border: 1px solid var(--purple-xlight); border-radius: 14px; padding: 22px 28px; margin: 32px 0; }
.aeo-box-label { font-size: 11px; font-weight: 700; color: var(--purple-main); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px; }
.aeo-box-q { font-weight: 700; font-size: 16px; color: var(--text-dark); margin-bottom: 10px; }
.aeo-box-a { font-size: 15px; color: var(--text-mid); line-height: 1.75; }
.disclaimer { background: var(--bg-soft); border: 1px solid var(--border); border-radius: 12px; padding: 16px 20px; margin-top: 40px; font-size: 13px; color: var(--text-light); line-height: 1.65; }

/* ── Related Tools */
.related-tools { padding: 48px 0; background: var(--bg-soft); border-top: 1px solid var(--border); }
.related-tools h3 { margin-bottom: 24px; }
.tool-card-mini { display: flex; gap: 14px; align-items: flex-start; padding: 16px 18px; background: var(--bg); border: 1px solid var(--border); border-radius: 12px; text-decoration: none; transition: all 0.18s; }
.tool-card-mini:hover { border-color: var(--purple-main); box-shadow: 0 4px 16px rgba(59,10,87,0.07); }
.tool-card-mini-num { width: 36px; height: 36px; border-radius: 10px; background: var(--bg-lavender); display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 14px; color: var(--purple-main); flex-shrink: 0; }
.tool-card-mini-title { font-weight: 700; font-size: 14px; color: var(--text-dark); margin-bottom: 4px; }
.tool-card-mini-desc { font-size: 12px; color: var(--text-mid); line-height: 1.5; }

/* ── WhatsApp CTA */
.wa-cta { display: inline-flex; align-items: center; gap: 10px; background: #25D366; color: #fff; text-decoration: none; padding: 12px 22px; border-radius: 12px; font-weight: 700; font-size: 14px; box-shadow: 0 4px 16px rgba(37,211,102,0.3); transition: background 0.18s; white-space: nowrap; }
.wa-cta:hover { background: #1ebe5c; }
.wa-cta-block { background: var(--bg-lavender); border: 1px solid var(--purple-xlight); border-radius: 16px; padding: 28px 32px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-top: 40px; }
.wa-cta-block-text h3 { font-size: 18px; margin-bottom: 6px; }
.wa-cta-block-text p { font-size: 14px; margin: 0; max-width: 460px; }

/* ── Footer */
.footer { background: var(--navy); color: #fff; padding-top: 64px; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-brand p { font-size: 13.5px; line-height: 1.7; color: rgba(255,255,255,0.5); max-width: 300px; margin-top: 14px; }
.footer-brand small { display: block; margin-top: 14px; font-size: 12px; color: rgba(255,255,255,0.28); line-height: 1.6; }
.footer-col-title { font-weight: 700; font-size: 13px; color: rgba(255,255,255,0.65); margin-bottom: 16px; letter-spacing: 0.06em; text-transform: uppercase; }
.footer-link { display: block; font-size: 13.5px; color: rgba(255,255,255,0.45); margin-bottom: 10px; transition: color 0.15s; text-decoration: none; }
.footer-link:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: rgba(255,255,255,0.3); flex-wrap: wrap; gap: 12px; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.15s; }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ── CTA Block (inline article CTA) */
.cta-block { background: var(--bg-lavender); border: 1px solid var(--purple-xlight); border-radius: 16px; padding: 28px 32px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cta-block-content { flex: 1; min-width: 200px; }
.cta-block-title { font-weight: 700; font-size: 17px; color: var(--text-dark); margin-bottom: 6px; }
.cta-block-desc { font-size: 14px; color: var(--text-mid); line-height: 1.6; }
.wa-cta-sm { display: inline-flex; align-items: center; gap: 8px; background: #25D366; color: #fff; text-decoration: none; padding: 11px 20px; border-radius: 10px; font-weight: 700; font-size: 14px; box-shadow: 0 4px 16px rgba(37,211,102,0.3); transition: background 0.18s; white-space: nowrap; flex-shrink: 0; }
.wa-cta-sm:hover { background: #1ebe5c; }

/* ── Divider */
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ── Responsive */
@media (max-width: 1024px) {
  .nav { display: none; }
  .menu-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .header-inner { gap: 12px; }
}
@media (max-width: 768px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .wa-cta-block { flex-direction: column; }
  h1 { font-size: 28px; }
  h2 { font-size: 22px; }
  .section { padding: 56px 0; }
  .container, .container-sm, .container-xs { padding: 0 16px; }
  .hide-on-mobile { display: none !important; }
  .header-inner { gap: 8px; }
  .logo-text { font-size: 15px; }
  .logo-mark { width: 30px; height: 30px; }
}
@media (max-width: 480px) {
  .hide-on-xs { display: none !important; }
  .header-inner { gap: 6px; }
  .container, .container-sm, .container-xs { padding: 0 14px; }
  .mobile-menu { width: 100%; max-width: 100%; }
  h1 { font-size: 24px; }
}
