/* ==========================================================================
   EMAS AMBULANS — Modern UI (2026)
   Dark mode disabled, mobile-first, performance focused
   ========================================================================== */

:root {
  --primary:        #dc2626;
  --primary-deep:   #b91c1c;
  --primary-soft:   #fef2f2;
  --primary-glow:   rgba(220, 38, 38, 0.18);
  --accent:         #1e40af;
  --accent-soft:    #eff6ff;
  --green:          #16a34a;
  --dark:           #0f172a;
  --text:           #1e293b;
  --muted:          #64748b;
  --border:         #e2e8f0;
  --border-strong:  #cbd5e1;
  --bg:             #ffffff;
  --bg-soft:        #f8fafc;
  --gradient:       linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  --gradient-dark:  linear-gradient(120deg, rgba(15,23,42,0.85) 0%, rgba(220,38,38,0.50) 100%);
  --shadow-sm:      0 2px 8px rgba(15, 23, 42, 0.05);
  --shadow:         0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg:      0 16px 48px rgba(15, 23, 42, 0.12);
  --shadow-red:     0 12px 32px rgba(220, 38, 38, 0.25);
  --display:        'Sora', 'Inter', sans-serif;
  --body:           'Inter', sans-serif;
  --container:      1240px;
  --topbar-h:       42px;
  --header-h:       82px;
  --radius:         14px;
  --radius-lg:      18px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s; }
a:hover { color: var(--primary); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--display); color: var(--dark); line-height: 1.2; letter-spacing: -0.02em; font-weight: 800; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* === TOP BAR === */
.topbar {
  background: var(--dark);
  color: rgba(255,255,255,.85);
  font-size: 12.5px;
  height: var(--topbar-h);
  display: flex; align-items: center;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.topbar-info { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar-info a { color: rgba(255,255,255,.85); display: inline-flex; align-items: center; gap: 7px; }
.topbar-info a:hover { color: #fff; }
.topbar-info i { color: var(--primary); font-size: 12px; }
.topbar-social { display: flex; gap: 6px; }
.topbar-social a { width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,.08); display: inline-flex; align-items: center; justify-content: center; color: rgba(255,255,255,.85); font-size: 12px; transition: all .2s; }
.topbar-social a:hover { background: var(--primary); color: #fff; }

/* === HEADER === */
.site-header {
  position: sticky; top: 0; z-index: 999;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 30px; }
.logo { display: flex; align-items: center; }
.logo img { max-height: 50px; width: auto; }

/* Nav */
.nav-menu { display: flex; gap: 4px; }
.nav-menu a {
  padding: 10px 16px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--dark);
  border-radius: 10px;
  transition: all .2s;
  position: relative;
}
.nav-menu a:hover { background: var(--primary-soft); color: var(--primary-deep); }
.nav-menu a.active { color: var(--primary-deep); }
.nav-menu a.active::before {
  content: ''; position: absolute; bottom: 0; left: 18px; right: 18px; height: 3px;
  background: var(--gradient); border-radius: 3px 3px 0 0;
}

/* Nav Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: inline-flex; align-items: center; }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 0;
  background: #fff; border: 1px solid var(--border);
  border-radius: 12px; box-shadow: var(--shadow-lg);
  min-width: 220px; padding: 8px;
  opacity: 0; pointer-events: none;
  transform: translateY(-6px);
  transition: all .2s; z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1; pointer-events: all; transform: translateY(0);
}
.nav-dropdown-menu a {
  display: flex !important; align-items: center; gap: 10px;
  padding: 10px 14px !important; border-radius: 8px;
  font-size: 13.5px; font-weight: 500;
  color: var(--dark) !important;
}
.nav-dropdown-menu a:hover { background: var(--primary-soft); color: var(--primary-deep) !important; }
.nav-dropdown-menu a.active::before { display: none; }
.nav-dropdown-menu a i { color: var(--primary-deep); width: 16px; text-align: center; font-size: 13px; }

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed; bottom: 16px; left: 16px; right: 16px; max-width: 720px; margin: 0 auto;
  background: #fff; border: 1px solid var(--border);
  border-radius: 16px; padding: 22px 24px;
  box-shadow: 0 24px 60px rgba(0,0,0,.18);
  z-index: 9998;
  display: none;
  animation: slideUp .35s ease-out;
}
.cookie-banner.show { display: block; }
@keyframes slideUp { from { transform: translateY(40px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.cookie-banner h4 { font-size: 17px; font-weight: 800; margin-bottom: 6px; color: var(--dark); display: flex; align-items: center; gap: 10px; }
.cookie-banner h4 i { color: var(--primary); }
.cookie-banner p { font-size: 13.5px; color: var(--muted); margin-bottom: 14px; line-height: 1.6; }
.cookie-banner p a { color: var(--primary-deep); font-weight: 600; }
.cookie-banner .actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-banner .btn-yes, .cookie-banner .btn-no {
  padding: 10px 22px; border-radius: 100px; font-size: 13px; font-weight: 700;
  cursor: pointer; border: none; transition: all .2s;
}
.cookie-banner .btn-yes { background: var(--gradient); color: #fff; box-shadow: var(--shadow-red); }
.cookie-banner .btn-yes:hover { transform: translateY(-2px); }
.cookie-banner .btn-no { background: #f1f5f9; color: var(--dark); border: 1px solid var(--border); }
.cookie-banner .btn-no:hover { background: #e2e8f0; }
@media (max-width: 600px) {
  .cookie-banner { padding: 18px 18px 16px; left: 10px; right: 10px; bottom: 10px; }
  .cookie-banner h4 { font-size: 15px; }
  .cookie-banner p { font-size: 12.5px; }
  .cookie-banner .actions { flex-direction: column; }
  .cookie-banner .btn-yes, .cookie-banner .btn-no { width: 100%; }
}

/* CTA button in header */
.btn-emergency {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  background: var(--gradient);
  color: #fff !important;
  border-radius: 100px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: var(--shadow-red);
  transition: all .25s;
  position: relative;
  overflow: hidden;
}
.btn-emergency::before {
  content: ''; position: absolute; top: 50%; left: 50%; width: 8px; height: 8px;
  background: #fff; border-radius: 50%; transform: translate(-50%, -50%);
  opacity: 0; transition: all .35s;
}
.btn-emergency:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(220,38,38,.4); color: #fff !important; }
.btn-emergency i { font-size: 16px; }
.btn-emergency .pulse { width: 10px; height: 10px; background: #fff; border-radius: 50%; animation: pulse 1.5s infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.6); }
  50%      { box-shadow: 0 0 0 8px rgba(255,255,255,0); }
}

/* Mobile menu toggle */
.menu-toggle { display: none; width: 44px; height: 44px; background: var(--primary-soft); border-radius: 10px; color: var(--primary-deep); font-size: 18px; align-items: center; justify-content: center; }

/* === HERO === */
.hero {
  position: relative;
  min-height: 660px;
  background: var(--dark);
  overflow: hidden;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero-slide::before { content: ''; position: absolute; inset: 0; background: var(--gradient-dark); }
.hero-inner {
  position: relative; z-index: 2;
  height: 100%; min-height: 660px;
  display: grid; grid-template-columns: 1fr 380px; gap: 50px;
  align-items: center;
  padding: 60px 0;
}
/* Form'suz tek-kolon, ortalı hero */
.hero-fullbleed { min-height: 720px; }
.hero-inner-center {
  position: relative; z-index: 2;
  min-height: 720px;
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
  padding: 80px 0;
  max-width: 820px;
  color: #fff;
}
.hero-inner-center .hero-pill { margin-bottom: 22px; }
.hero-inner-center h1 {
  font-family: var(--display);
  font-size: 64px; font-weight: 800;
  color: #fff; line-height: 1.08;
  margin-bottom: 22px;
  text-shadow: 0 4px 24px rgba(0,0,0,.35);
}
.hero-inner-center p {
  font-size: 18px; line-height: 1.65;
  color: rgba(255,255,255,.92);
  max-width: 640px;
  margin-bottom: 32px;
  text-shadow: 0 2px 12px rgba(0,0,0,.25);
}
.hero-text { color: #fff; max-width: 700px; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 100px;
  font-size: 13px; font-weight: 700; color: #fff;
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
}
.hero-pill .dot { width: 8px; height: 8px; background: #fff; border-radius: 50%; animation: pulse 1.5s infinite; }
.hero-text h1 {
  font-family: var(--display);
  font-size: 56px; font-weight: 800;
  color: #fff;
  margin-bottom: 22px;
  text-shadow: 0 4px 24px rgba(0,0,0,.3);
}
.hero-text p {
  font-size: 17px; line-height: 1.65;
  color: rgba(255,255,255,.92);
  margin-bottom: 30px;
  text-shadow: 0 2px 12px rgba(0,0,0,.25);
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-white-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.4);
  color: #fff !important;
  border-radius: 100px;
  font-weight: 700; font-size: 14px;
  backdrop-filter: blur(6px);
  transition: all .25s;
}
.btn-white-outline:hover { background: #fff; color: var(--dark) !important; transform: translateY(-2px); }

/* Hero form */
.hero-form-card {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
}
.hero-form-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.hero-form-card p { color: var(--muted); font-size: 13px; margin-bottom: 18px; }
.hero-form-card form { display: flex; flex-direction: column; gap: 11px; position: relative; }
.hero-form-card input, .hero-form-card textarea, .hero-form-card select {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: inherit; font-size: 13.5px;
  color: var(--dark);
  transition: all .2s;
}
.hero-form-card input:focus, .hero-form-card textarea:focus, .hero-form-card select:focus {
  outline: none; border-color: var(--primary); background: #fff;
  box-shadow: 0 0 0 3px var(--primary-glow);
}
.hero-form-card textarea { resize: vertical; min-height: 80px; max-height: 140px; }

/* Hero arrows + dots */
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff; font-size: 16px;
  backdrop-filter: blur(10px);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all .25s;
}
.hero-arrow:hover { background: #fff; color: var(--dark); transform: translateY(-50%) scale(1.08); }
.hero-arrow.prev { left: 24px; }
.hero-arrow.next { right: 24px; }
.hero-dots { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 5; display: flex; gap: 8px; }
.hero-dot { width: 36px; height: 4px; border-radius: 4px; background: rgba(255,255,255,.4); cursor: pointer; transition: all .3s; }
.hero-dot.active { background: #fff; width: 56px; }

/* === SECTION === */
.section { padding: 90px 0; }
.section-soft { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px;
  background: var(--primary-soft);
  color: var(--primary-deep);
  border-radius: 100px;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.6px;
  margin-bottom: 14px;
}
.section-title { font-size: 38px; font-weight: 800; margin-bottom: 14px; letter-spacing: -1px; }
.section-sub { color: var(--muted); font-size: 16px; line-height: 1.7; }

/* === FEATURES (slider-alti) === */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 64px; height: 64px;
  background: var(--primary-soft);
  border-radius: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--primary-deep);
  margin-bottom: 18px;
  transition: all .3s;
}
.feature-card:hover .feature-icon { background: var(--gradient); color: #fff; transform: rotate(-6deg) scale(1.05); }
.feature-card h3 { font-size: 18px; margin-bottom: 8px; font-weight: 800; }
.feature-card p { color: var(--muted); font-size: 13.5px; line-height: 1.6; }

/* === ABOUT (biz-kimiz) === */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image { position: relative; }
.about-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.about-image .badge-circle {
  position: absolute;
  bottom: -30px; right: -20px;
  width: 140px; height: 140px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  color: #fff;
  box-shadow: var(--shadow-red);
}
.about-image .badge-circle strong { font-size: 32px; font-weight: 800; line-height: 1; }
.about-image .badge-circle span { font-size: 11px; font-weight: 700; opacity: .9; margin-top: 4px; }
.about-content .section-tag { margin-bottom: 14px; }
.about-content h2 { font-size: 38px; margin-bottom: 18px; letter-spacing: -1px; }
.about-content > p { color: var(--muted); font-size: 15.5px; line-height: 1.75; margin-bottom: 24px; }
.about-points { display: grid; gap: 16px; margin-bottom: 30px; }
.about-point { display: flex; gap: 14px; align-items: flex-start; }
.about-point .ic { flex-shrink: 0; width: 38px; height: 38px; background: var(--primary-soft); border-radius: 10px; color: var(--primary-deep); display: inline-flex; align-items: center; justify-content: center; font-size: 14px; }
.about-point h4 { font-size: 15px; margin-bottom: 3px; }
.about-point p { color: var(--muted); font-size: 13.5px; line-height: 1.6; }

/* === STATS (sayi) === */
.stats-section { padding: 80px 0; background: var(--gradient); color: #fff; position: relative; overflow: hidden; }
.stats-section::before { content: ''; position: absolute; top: -50px; right: -50px; width: 300px; height: 300px; background: rgba(255,255,255,.08); border-radius: 50%; }
.stats-section::after { content: ''; position: absolute; bottom: -80px; left: -50px; width: 200px; height: 200px; background: rgba(255,255,255,.06); border-radius: 50%; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; position: relative; z-index: 2; }
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--display);
  font-size: 56px; font-weight: 800;
  line-height: 1;
  color: #fff;
  letter-spacing: -2px;
}
.stat-label { font-size: 14px; font-weight: 600; color: rgba(255,255,255,.95); margin-top: 10px; text-transform: uppercase; letter-spacing: 0.6px; }

/* === SERVICES (hizmetler) === */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute; top: 0; right: 0; width: 100px; height: 100px;
  background: var(--primary-soft); border-radius: 0 0 0 100px;
  opacity: 0; transition: opacity .3s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::after { opacity: 1; }
.service-icon {
  width: 64px; height: 64px;
  background: var(--gradient);
  border-radius: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-size: 26px;
  margin-bottom: 22px;
  position: relative; z-index: 2;
  box-shadow: var(--shadow-red);
}
.service-card h3 { font-size: 19px; margin-bottom: 10px; }
.service-card h3 a { color: var(--dark); }
.service-card h3 a:hover { color: var(--primary); }
.service-card p { color: var(--muted); font-size: 13.5px; line-height: 1.65; margin-bottom: 18px; }
.service-card .read-more {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--primary-deep);
  font-weight: 700; font-size: 13px;
  position: relative; z-index: 2;
}
.service-card .read-more i { transition: transform .25s; }
.service-card:hover .read-more i { transform: translateX(4px); }

/* === FAQ (sss) === */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.faq-illustration { background: var(--primary-soft); border-radius: var(--radius-lg); padding: 40px; text-align: center; }
.faq-illustration img { max-width: 100%; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  transition: all .25s;
}
.faq-item.open { border-color: var(--primary); box-shadow: var(--shadow); }
.faq-q {
  width: 100%;
  padding: 18px 22px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  text-align: left;
  font-weight: 700; font-size: 15px; color: var(--dark);
  background: transparent;
  cursor: pointer;
}
.faq-q .ic { width: 28px; height: 28px; border-radius: 50%; background: var(--primary-soft); color: var(--primary-deep); display: inline-flex; align-items: center; justify-content: center; font-size: 12px; transition: all .25s; flex-shrink: 0; }
.faq-item.open .faq-q .ic { background: var(--primary); color: #fff; transform: rotate(180deg); }
.faq-a { padding: 0 22px; max-height: 0; overflow: hidden; transition: all .35s; color: var(--muted); font-size: 14px; line-height: 1.7; }
.faq-item.open .faq-a { max-height: 500px; padding: 0 22px 20px; }

/* === BLOG === */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.blog-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .3s;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.blog-image { aspect-ratio: 16 / 10; overflow: hidden; }
.blog-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.blog-card:hover .blog-image img { transform: scale(1.06); }
.blog-content { padding: 22px 24px; }
.blog-meta { font-size: 12px; color: var(--muted); margin-bottom: 8px; }
.blog-meta i { color: var(--primary); margin-right: 5px; }
.blog-card h3 { font-size: 17px; margin-bottom: 10px; line-height: 1.35; }
.blog-card h3 a { color: var(--dark); }
.blog-card h3 a:hover { color: var(--primary); }
.blog-card p { color: var(--muted); font-size: 13.5px; line-height: 1.6; margin-bottom: 14px; }
.blog-card .read-more {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--primary-deep); font-weight: 700; font-size: 13px;
}
.blog-card:hover .read-more i { transform: translateX(4px); }
.blog-card .read-more i { transition: transform .25s; }

/* === CTA SECTION === */
.cta-section {
  padding: 70px 0;
  background: var(--dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-section::before { content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 50%; background: var(--gradient); transform: skewX(-20deg) translateX(20%); opacity: .9; }
.cta-inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-text h2 { color: #fff; font-size: 32px; margin-bottom: 8px; }
.cta-text p { color: rgba(255,255,255,.85); font-size: 15px; }
.cta-phone {
  display: inline-flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  padding: 16px 28px;
  border-radius: 100px;
  color: #fff !important; font-weight: 700;
  backdrop-filter: blur(10px);
  transition: all .25s;
}
.cta-phone:hover { background: #fff; color: var(--primary-deep) !important; transform: translateY(-2px); }
.cta-phone .ic { width: 44px; height: 44px; background: rgba(255,255,255,.15); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 18px; }
.cta-phone .num { font-size: 22px; line-height: 1; }
.cta-phone .lbl { font-size: 11px; opacity: .85; }

/* === PAGE HERO === */
.page-hero {
  background: var(--dark);
  position: relative;
  padding: 80px 0 60px;
  color: #fff;
  overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(220,38,38,0.7) 0%, rgba(15,23,42,0.85) 100%);
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.35; z-index: 0;
}
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb-nav { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.85); margin-bottom: 14px; }
.breadcrumb-nav a { color: rgba(255,255,255,.85); }
.breadcrumb-nav a:hover { color: #fff; }
.breadcrumb-nav i { font-size: 9px; opacity: .6; }
.page-hero h1 { font-size: 44px; color: #fff; letter-spacing: -1px; }

/* === DETAY === */
.detail-grid { display: grid; grid-template-columns: 1fr 320px; gap: 46px; }
.detail-content { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-sm); }
.detail-content h2 { font-size: 28px; margin: 24px 0 14px; color: var(--dark); }
.detail-content h3 { font-size: 22px; margin: 20px 0 12px; color: var(--dark); }
.detail-content p { color: var(--text); margin-bottom: 14px; line-height: 1.75; font-size: 15.5px; }
.detail-content ul, .detail-content ol { padding-left: 24px; margin-bottom: 14px; }
.detail-content ul li, .detail-content ol li { margin-bottom: 8px; line-height: 1.7; }
.detail-content ul { list-style: none; padding-left: 0; }
.detail-content ul li { padding-left: 28px; position: relative; }
.detail-content ul li::before { content: '\f058'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--primary); position: absolute; left: 0; top: 2px; }
.detail-content img { border-radius: var(--radius); margin: 18px 0; max-width: 100%; }
.detail-content blockquote { border-left: 4px solid var(--primary); background: var(--primary-soft); padding: 16px 22px; margin: 20px 0; border-radius: 0 var(--radius) var(--radius) 0; font-style: italic; color: var(--dark); }
.detail-content a { color: var(--primary-deep); font-weight: 600; text-decoration: underline; }

/* === İçindekiler (TOC) === */
.toc-card {
  background: linear-gradient(135deg, var(--primary-soft) 0%, #fff 100%);
  border: 1.5px solid var(--primary);
  border-left: 4px solid var(--primary-deep);
  border-radius: var(--radius);
  padding: 18px 22px 14px;
  margin: 0 0 24px;
}
.toc-head {
  font-family: var(--display);
  font-weight: 800;
  font-size: 16px;
  color: var(--dark);
  margin-bottom: 10px;
  display: flex; align-items: center; gap: 10px;
}
.toc-head i { color: var(--primary-deep); font-size: 14px; }
.toc-list {
  list-style: decimal;
  padding-left: 22px;
  margin: 0;
  counter-reset: toc-num;
}
.toc-list li { padding: 4px 0; line-height: 1.5; font-size: 14px; }
.toc-list li a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: all .2s;
}
.toc-list li a:hover { color: var(--primary-deep); padding-left: 4px; text-decoration: underline; }
.toc-list li.toc-sub { list-style: none; margin-left: 12px; padding-left: 16px; position: relative; }
.toc-list li.toc-sub::before { content: '↳'; position: absolute; left: 0; top: 4px; color: var(--muted); font-size: 12px; }
.toc-list li.toc-sub a { font-size: 13px; color: var(--muted); }
@media (max-width: 720px) {
  .toc-card { padding: 14px 16px 10px; }
  .toc-list li { font-size: 13px; }
}
/* Smooth scroll for anchor links + offset for sticky header */
:target { scroll-margin-top: 100px; }
.detail-content h2[id], .detail-content h3[id] { scroll-margin-top: 100px; }

.detail-sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.sidebar-card h4 { font-size: 17px; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--primary-soft); }
.sidebar-card h4 i { color: var(--primary); margin-right: 8px; }
.sidebar-list { display: flex; flex-direction: column; gap: 4px; }
.sidebar-list a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 8px;
  color: var(--text); font-size: 14px; font-weight: 500;
  transition: all .2s;
}
.sidebar-list a i { color: var(--primary); font-size: 11px; transition: transform .2s; }
.sidebar-list a:hover { background: var(--primary-soft); color: var(--primary-deep); }
.sidebar-list a:hover i { transform: translateX(3px); }

.sidebar-cta { background: var(--gradient); color: #fff; text-align: center; padding: 28px 24px; border-radius: var(--radius); }
.sidebar-cta h4 { color: #fff; padding-bottom: 0; border-bottom: none; margin-bottom: 8px; font-size: 19px; }
.sidebar-cta p { font-size: 13px; opacity: .92; margin-bottom: 16px; }
.sidebar-cta .btn-white { display: inline-flex; align-items: center; gap: 8px; background: #fff; color: var(--primary-deep) !important; padding: 11px 22px; border-radius: 100px; font-weight: 700; font-size: 13.5px; }
.sidebar-cta .btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(0,0,0,.2); }

/* Tags / Pills */
.pill { display: inline-flex; align-items: center; gap: 6px; padding: 4px 12px; border-radius: 100px; font-size: 11.5px; font-weight: 700; }
.pill-info { background: var(--accent-soft); color: var(--accent); }

/* === CONTACT === */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 40px; }
.contact-info { background: var(--dark); color: #fff; border-radius: var(--radius-lg); padding: 38px 32px; position: relative; overflow: hidden; }
.contact-info::before { content: ''; position: absolute; top: -80px; right: -80px; width: 220px; height: 220px; background: var(--gradient); border-radius: 50%; opacity: .3; }
.contact-info h3 { color: #fff; font-size: 24px; margin-bottom: 8px; position: relative; z-index: 2; }
.contact-info > p { color: rgba(255,255,255,.85); font-size: 14px; line-height: 1.7; margin-bottom: 28px; position: relative; z-index: 2; }
.contact-row { display: flex; gap: 14px; margin-bottom: 18px; align-items: flex-start; position: relative; z-index: 2; }
.contact-row .ic { flex-shrink: 0; width: 44px; height: 44px; background: rgba(255,255,255,.10); border-radius: 12px; color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 16px; }
.contact-row strong { color: #fff; font-weight: 700; font-size: 13.5px; display: block; margin-bottom: 2px; }
.contact-row a, .contact-row span { color: rgba(255,255,255,.85); font-size: 14px; }
.contact-row a:hover { color: #fff; }
.contact-form { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 38px 32px; box-shadow: var(--shadow-sm); }
.contact-form h3 { font-size: 24px; margin-bottom: 6px; }
.contact-form p { color: var(--muted); font-size: 14px; margin-bottom: 22px; }
.fld { margin-bottom: 14px; }
.fld label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 6px; color: var(--dark); }
.fld input, .fld textarea, .fld select { width: 100%; padding: 12px 14px; background: var(--bg-soft); border: 1px solid var(--border); border-radius: 10px; font-family: inherit; font-size: 14px; color: var(--dark); transition: all .2s; }
.fld input:focus, .fld textarea:focus, .fld select:focus { outline: none; border-color: var(--primary); background: #fff; box-shadow: 0 0 0 3px var(--primary-glow); }
.fld textarea { min-height: 120px; resize: vertical; }
.fld-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 30px;
  background: var(--gradient);
  color: #fff !important;
  border-radius: 100px;
  font-weight: 700; font-size: 14.5px;
  box-shadow: var(--shadow-red);
  transition: all .25s;
  cursor: pointer;
  border: none;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(220,38,38,.4); color: #fff !important; }

/* Map */
.contact-map { margin-top: 40px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.contact-map iframe { width: 100%; height: 380px; border: 0; display: block; }

/* === FOOTER === */
.site-footer { background: var(--dark); color: rgba(255,255,255,.75); padding: 70px 0 30px; position: relative; overflow: hidden; margin-top: 60px; }
.site-footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--gradient); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 44px; margin-bottom: 50px; }
.footer-brand img { max-height: 50px; margin-bottom: 18px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.7); margin-bottom: 22px; }
.footer-social { display: flex; gap: 8px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.08); display: inline-flex; align-items: center; justify-content: center; color: #fff; transition: all .25s; }
.footer-social a:hover { background: var(--primary); transform: translateY(-3px); }
.footer-col h4 { color: #fff; font-size: 16px; font-weight: 700; margin-bottom: 22px; padding-bottom: 14px; position: relative; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 3px; background: var(--gradient); border-radius: 3px; }
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a { color: rgba(255,255,255,.7); font-size: 13.5px; transition: all .2s; }
.footer-links a:hover { color: #fff; padding-left: 6px; }
.footer-links a i { margin-right: 7px; color: var(--primary); font-size: 10px; opacity: .8; }
.footer-contact-row { display: flex; gap: 12px; margin-bottom: 16px; align-items: flex-start; font-size: 13.5px; }
.footer-contact-row i { flex-shrink: 0; width: 32px; height: 32px; background: rgba(220,38,38,.18); color: var(--primary); border-radius: 8px; display: inline-flex; align-items: center; justify-content: center; }
.footer-contact-row a, .footer-contact-row span { color: rgba(255,255,255,.85); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; font-size: 13px; color: rgba(255,255,255,.6); }
.footer-bottom a { color: rgba(255,255,255,.7); }
.footer-bottom a:hover { color: #fff; }

/* === FLOAT BUTTONS === */
.float-actions { position: fixed; right: 16px; bottom: 16px; z-index: 100; display: flex; flex-direction: column; gap: 10px; }
.float-btn { width: 54px; height: 54px; border-radius: 50%; box-shadow: var(--shadow-lg); display: inline-flex; align-items: center; justify-content: center; font-size: 22px; color: #fff; transition: all .25s; position: relative; }
.float-btn:hover { transform: translateY(-3px) scale(1.05); color: #fff; }
.float-btn.wp { background: #25d366; }
.float-btn.tel { background: var(--primary); }
.float-btn.tel::after { content: ''; position: absolute; inset: -6px; border: 2px solid var(--primary); border-radius: 50%; opacity: 0; animation: ring 2s infinite; }
@keyframes ring { 0% { transform: scale(.95); opacity: 1; } 100% { transform: scale(1.4); opacity: 0; } }

.go-top { position: fixed; right: 16px; bottom: 86px; width: 44px; height: 44px; background: var(--dark); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: all .25s; z-index: 100; cursor: pointer; }
.go-top.visible { opacity: 1; pointer-events: all; }
.go-top:hover { background: var(--primary); transform: translateY(-3px); }

/* === PAGINATION === */
.pagination { display: flex; gap: 6px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.pagination a, .pagination span { min-width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; padding: 0 12px; border-radius: 10px; background: #fff; border: 1px solid var(--border); color: var(--dark); font-weight: 600; font-size: 13.5px; transition: all .2s; }
.pagination a:hover { background: var(--primary-soft); border-color: var(--primary); color: var(--primary-deep); }
.pagination .current { background: var(--gradient); color: #fff; border-color: transparent; }

/* Mobile Responsive */
@media (max-width: 1100px) {
  .hero-text h1 { font-size: 44px; }
  .nav-menu a { padding: 10px 12px; font-size: 14px; }
}
@media (max-width: 1100px) {
  /* Header'daki "Ambulans Çağır" butonu küçülsün, alt metin gizli, tek satır */
  .btn-emergency { padding: 10px 16px; font-size: 13px; gap: 6px; }
  .btn-emergency span small { display: none; }
  .btn-emergency span strong { font-size: 13.5px; }
  .btn-emergency span { line-height: 1 !important; }
}
@media (max-width: 992px) {
  .topbar-info { gap: 14px; }
  .topbar-info li:not(:first-child):not(:last-child) { display: none; }
  .nav-menu, .others-options { display: none; }
  .menu-toggle { display: inline-flex; }
  /* Header buton sadece icon + numara, çok kompakt */
  .btn-emergency { padding: 9px 14px; }
  .btn-emergency span small { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 50px 0; }
  .hero-text { text-align: center; max-width: 100%; }
  .hero-text h1 { font-size: 36px; }
  .hero-cta { justify-content: center; }
  .hero-fullbleed, .hero-inner-center { min-height: 540px; }
  .hero-inner-center { padding: 60px 0; align-items: center; text-align: center; }
  .hero-inner-center h1 { font-size: 36px; }
  .hero-inner-center p { font-size: 15px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image .badge-circle { width: 110px; height: 110px; right: 20px; bottom: -25px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .service-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .detail-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .section { padding: 60px 0; }
  .section-title { font-size: 30px; }
  .page-hero h1 { font-size: 32px; }
}
@media (max-width: 720px) {
  /* Mobile: Header butonu sadece numara, küçük */
  .btn-emergency { padding: 8px 12px; font-size: 12px; }
  .btn-emergency .pulse { width: 7px; height: 7px; }
  .btn-emergency i { font-size: 13px; }
  .btn-emergency span strong { font-size: 12.5px; }
  .header-inner { gap: 12px; }
  .logo img { max-height: 40px; }

  /* Mobile slider — görsel üstte tam genişlik, alt kısımda kırmızı yazı bandı */
  .hero-fullbleed { min-height: 0; height: auto; background: var(--dark); }
  .hero-slide {
    background-image: url('../img/slider/emas-slider-1.png') !important;
    background-size: cover !important;
    background-position: 90% center !important;
    background-repeat: no-repeat !important;
    background-color: var(--dark);
    height: 460px;
    width: 100%;
    position: relative;
    display: block;
  }
  .hero-slide.active { position: relative; }
  .hero-slide:not(.active) { display: none; }
  .hero-slide::before {
    background: linear-gradient(180deg, rgba(220,38,38,0.18) 0%, rgba(220,38,38,0.10) 50%, rgba(15,23,42,0.35) 100%);
  }
  .hero-fullbleed .container {
    /* Yazı kutusu görselin altına */
    background: linear-gradient(135deg, var(--primary-deep) 0%, var(--dark) 100%);
    padding: 24px 0 32px;
    margin: 0;
    max-width: 100%;
    position: relative;
    z-index: 5;
  }
  .hero-fullbleed .container::before {
    content: ''; position: absolute; top: -1px; left: 0; right: 0; height: 1px; background: var(--primary);
  }
  .hero-fullbleed .container > .hero-inner-center { padding-left: 18px; padding-right: 18px; }
  .hero-inner-center {
    min-height: 0;
    padding: 0;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    max-width: 100%;
  }
  .hero-inner-center .hero-pill {
    background: rgba(255,255,255,.18);
    border-color: rgba(255,255,255,.3);
    padding: 5px 12px; font-size: 11px;
    margin-bottom: 10px;
  }
  .hero-inner-center h1 { font-size: 24px; line-height: 1.2; margin-bottom: 8px; text-shadow: 0 2px 8px rgba(0,0,0,.3); }
  .hero-inner-center p {
    font-size: 13.5px; line-height: 1.55; margin-bottom: 14px;
    text-shadow: 0 1px 6px rgba(0,0,0,.25);
    color: rgba(255,255,255,.95);
    max-width: 100%;
  }
  .hero-cta { flex-wrap: wrap; gap: 8px; }
  .hero-cta .btn-emergency, .hero-cta .btn-white-outline { padding: 9px 14px; font-size: 12.5px; }
  /* Mobile arrows ve dotlar görselin üstünde */
  .hero-arrow { width: 34px; height: 34px; font-size: 12px; top: 230px; transform: translateY(-50%); }
  .hero-arrow.prev { left: 8px; }
  .hero-arrow.next { right: 8px; }
  .hero-dots { bottom: auto; top: 430px; transform: translateX(-50%); }
  .hero-dot { width: 22px; height: 3px; background: rgba(255,255,255,.5); }
  .hero-dot.active { width: 32px; background: #fff; }
}
@media (max-width: 600px) {
  .topbar { display: none; }
  .features-grid, .service-grid, .blog-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-num { font-size: 42px; }
  .hero-text h1 { font-size: 22px; }
  .hero-inner-center h1 { font-size: 22px; }
  .hero-slide { height: 400px; }
  .hero-arrow { top: 200px; }
  .hero-dots { top: 370px; }
  .hero-inner-center p { font-size: 13px; }
  /* En küçük ekranda numarayı sadece simge yap */
  .btn-emergency span strong { display: none; }
  .btn-emergency { padding: 9px 12px; }
  .section-title { font-size: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-text h2 { font-size: 24px; }
  .fld-row { grid-template-columns: 1fr; }
  .detail-content, .contact-info, .contact-form { padding: 24px 18px; }
  .container { padding: 0 16px; }
  .logo img { max-height: 42px; }
}

/* === MOBILE NAV === */
.mobile-nav-overlay { position: fixed; inset: 0; background: rgba(15,23,42,0.6); backdrop-filter: blur(4px); opacity: 0; pointer-events: none; transition: opacity .3s; z-index: 998; }
.mobile-nav-overlay.active { opacity: 1; pointer-events: all; }
.mobile-nav { position: fixed; top: 0; right: -320px; width: 320px; max-width: 86vw; height: 100vh; background: #fff; z-index: 999; transition: right .35s; overflow-y: auto; box-shadow: -10px 0 40px rgba(0,0,0,.15); }
.mobile-nav.active { right: 0; }
.mobile-nav-head { padding: 22px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.mobile-nav-close { width: 38px; height: 38px; border-radius: 50%; background: var(--primary-soft); color: var(--primary); display: inline-flex; align-items: center; justify-content: center; }
.mobile-nav ul { padding: 14px; }
.mobile-nav ul li a { display: block; padding: 13px 16px; border-radius: 10px; font-weight: 600; color: var(--dark); font-size: 15px; }
.mobile-nav ul li a:hover, .mobile-nav ul li a.active { background: var(--primary-soft); color: var(--primary-deep); }
.mobile-nav .btn-emergency { margin: 18px 14px; }
