﻿/*!

* =====================================================
* Proje: BTR Yazılım Diş Klinik Script
* Website: https://www.btryazilim.com
*
* Geliştirici: Mehmet Biter
* Marka: BTR Yazılım
*
* Açıklama:
* Bu CSS veya JS dosyası, BTR Yazılım tarafından geliştirilen
* web scriptine aittir. Tasarım ve stil düzenlemeleri
* bu dosya üzerinden yönetilmektedir.
*
* Tüm hakları saklıdır © Mehmet Biter
* İzinsiz kopyalanması, dağıtılması veya kullanılması
* yasaktır.
* =====================================================
*/

/* ============================================================
   DİŞ KLİNİK CMS - Frontend Theme
   ============================================================ */
:root {
  --primary: #1A5F6A;
  --primary-dark: #134850;
  --secondary: #7EC8C4;
  --dark: #0E1C1F;
  --text: #1A1F24;
  --text-light: #5B676C;
  --border: rgba(14,28,31,.10);
  --bg-light: #F4F7F6;
  --radius: 4px;
  --shadow: 0 8px 30px rgba(14,28,31,.06);
  --shadow-hover: 0 16px 40px rgba(14,28,31,.10);
  --transition: all .3s ease;
  --font-family: 'Sora', sans-serif;
  --font-display: 'Instrument Serif', Georgia, serif;
  --mint: #E8F3F2;
  --mint-soft: #D3EBE9;
  --accent: #7EC8C4;
  --surface: #F4F7F6;
  --paper: #FFFFFF;
  --line: rgba(14,28,31,.10);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-family);
  font-size: 16px;
  color: var(--text);
  line-height: 1.7;
  background: #F4F7F6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: var(--primary); transition: var(--transition); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; }
ul { list-style: none; margin: 0; padding: 0; }
.section-pad { padding: 80px 0; }
.bg-light-gray { background: #fff; }
.bg-primary-soft { background: var(--mint); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes softFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes smilePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(26,95,106,.35); }
  50% { box-shadow: 0 0 0 12px rgba(26,95,106,0); }
}

/* ── TOP BAR ─────────────────────────────────────────── */
.top-bar {
  background: linear-gradient(90deg, #0f766e 0%, #134e4a 55%, #115e59 100%);
  color: rgba(255,255,255,.78);
  font-size: 13px;
  padding: 9px 0;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.top-bar a { color: rgba(255,255,255,.78); } .top-bar a:hover { color: #fff; }
.top-bar i { margin-right: 4px; color: var(--accent); }
.top-bar-login {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  color: #fff !important;
  white-space: nowrap;
  transition: var(--transition);
}
.top-bar-login i { margin-right: 0; color: var(--accent); }
.top-bar-login:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.5);
  color: #fff !important;
}
.top-bar-user .hdr-user-btn {
  padding: 3px 8px;
  min-height: 0;
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.22);
  color: #fff;
}
.top-bar-user .hdr-user-name { color: #fff; max-width: 90px; }
.top-bar-user .hdr-user-chevron { color: rgba(255,255,255,.7); }
.top-bar-user .hdr-user-btn:hover,
.top-bar-user .hdr-user-btn.open {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.4);
}
.top-bar-user .hdr-user-dropdown { right: 0; left: auto; top: calc(100% + 8px); z-index: 1100; }

/* ── LANGUAGE SWITCHER ───────────────────────────────── */
.lang-switcher { display: flex; gap: 4px; align-items: center; border-left: 1px solid #ffffff20; padding-left: 16px; }
.lang-btn { color: #aaa; font-size: 12px; font-weight: 600; padding: 2px 8px; border-radius: 4px; transition: var(--transition); }
.lang-btn:hover, .lang-btn.active { background: var(--primary); color: #fff; }

/* ── HEADER ──────────────────────────────────────────── */
.site-header {
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 20px rgba(13,148,136,.08);
  position: sticky; top: 0; z-index: 1000; transition: var(--transition);
  border-bottom: 1px solid rgba(13,148,136,.08);
}
.site-header.scrolled { box-shadow: 0 8px 28px rgba(13,148,136,.12); background: rgba(255,255,255,.94); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 18px 0; }
.logo-wrap { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { max-height: 55px; width: auto; }
.logo-text { display: flex; align-items: center; gap: 10px; }
.logo-icon { font-size: 2rem; color: var(--primary); animation: softFloat 4s ease-in-out infinite; }
.logo-text span {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.15;
  letter-spacing: -.02em;
}

/* ── NAVIGATION ──────────────────────────────────────── */
.main-nav { flex: 1; }
.nav-list { display: flex; align-items: center; gap: 0; justify-content: center; }
.nav-item { position: relative; }
.nav-item > .nav-link { display: flex; align-items: center; gap: 4px; padding: 8px 14px; font-size: 14px; font-weight: 600; color: var(--dark); border-radius: 6px; transition: var(--transition); }
.nav-item > .nav-link:hover, .nav-item:hover > .nav-link { color: var(--primary); background: var(--mint); }
.nav-item > .nav-link i { font-size: 11px; transition: var(--transition); }
.nav-item:hover > .nav-link i { transform: rotate(180deg); }
.dropdown-menu-custom { position: absolute; top: calc(100% + 8px); left: 0; min-width: 220px; background: #fff; border-radius: var(--radius); box-shadow: 0 8px 40px rgba(0,0,0,.15); border-top: 3px solid var(--primary); opacity: 0; visibility: hidden; transform: translateY(10px); transition: var(--transition); z-index: 1000; }
.nav-item:hover .dropdown-menu-custom { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu-custom li a { display: block; padding: 10px 20px; color: var(--text); font-size: 14px; border-bottom: 1px solid var(--border); transition: var(--transition); }
.dropdown-menu-custom li:last-child a { border-bottom: none; }
.dropdown-menu-custom li a:hover { color: var(--primary); background: #f8f9fa; padding-left: 25px; }

/* ── HEADER ACTIONS ──────────────────────────────────── */
.hdr-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

/* Acil hat */
.hdr-emergency {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: linear-gradient(135deg,#fff0f0,#ffe4e4);
  border: 1px solid #fecaca;
  border-radius: 12px;
  text-decoration: none;
  cursor: default;
}
.hdr-emergency-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #dc3545;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: hdr-pulse 2s infinite;
}
.hdr-emergency-icon i { color: #fff; font-size: .85rem; }
@keyframes hdr-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(220,53,69,.4); }
  50%      { box-shadow: 0 0 0 6px rgba(220,53,69,0); }
}
.hdr-emergency-text { line-height: 1.2; }
.hdr-emergency-label { display: block; font-size: 10px; font-weight: 600; color: #e53e3e; text-transform: uppercase; letter-spacing: .04em; }
.hdr-emergency-num   { display: block; font-size: 15px; font-weight: 800; color: #c62828; letter-spacing: .02em; }

/* Divider */
.hdr-divider {
  width: 1px;
  height: 32px;
  background: #e5e7eb;
  margin: 0 4px;
  flex-shrink: 0;
}

/* Randevu butonu */
.hdr-appt-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  background: var(--primary);
  color: #fff !important;
  border-radius: 12px;
  font-size: 13.5px;
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 14px rgba(13,148,136,.28);
}
.hdr-appt-btn i { font-size: 1rem; }
.hdr-appt-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(13,148,136,.35);
  color: #fff !important;
}

/* Giriş Yap butonu */
.hdr-login-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 15px;
  border: 1.5px solid #d1d5db;
  border-radius: 12px;
  color: #374151;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  background: #fff;
  transition: border-color .2s, color .2s, background .2s, box-shadow .2s;
  white-space: nowrap;
}
.hdr-login-btn i { font-size: 1rem; color: var(--primary); }
.hdr-login-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--mint);
  box-shadow: 0 2px 8px rgba(13,148,136,.12);
}

/* Üye dropdown */
.hdr-user-menu { position: relative; }
.hdr-user-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px 7px 7px;
  background: var(--mint);
  border: 1.5px solid var(--mint-soft);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  font-size: 13.5px;
  font-weight: 600;
  color: #1e293b;
}
.hdr-user-btn:hover { border-color: var(--primary); background: var(--mint-soft); }
.hdr-user-btn.open { border-color: var(--primary); background: var(--mint-soft); }
.hdr-user-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hdr-user-avatar i { color: #fff; font-size: .85rem; }
.hdr-user-name { max-width: 100px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.hdr-user-chevron { font-size: .72rem; color: #6b7280; transition: transform .2s; }
.hdr-user-btn.open .hdr-user-chevron { transform: rotate(180deg); }

.hdr-user-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 220px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,.14), 0 2px 8px rgba(0,0,0,.06);
  border: 1px solid #e5e7eb;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .18s, transform .18s, visibility .18s;
  z-index: 1100;
  overflow: hidden;
}
.hdr-user-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.hdr-user-dropdown-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px 12px;
  background: linear-gradient(135deg, var(--mint), var(--mint-soft));
  border-bottom: 1px solid #e5e7eb;
}
.hdr-user-avatar-lg {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hdr-user-avatar-lg i { color: #fff; font-size: 1.1rem; }
.hdr-user-dropdown-name { font-size: 13.5px; font-weight: 700; color: #1e293b; }
.hdr-user-dropdown-sub { font-size: 11px; color: #6b7280; margin-top: 1px; }
.hdr-user-dropdown-body { padding: 6px 0; }
.hdr-user-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  color: #374151;
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  transition: background .15s, color .15s;
}
.hdr-user-dropdown-item i { font-size: 1rem; color: #6b7280; width: 18px; text-align: center; }
.hdr-user-dropdown-item:hover { background: var(--mint); color: var(--primary); }
.hdr-user-dropdown-item:hover i { color: var(--primary); }
.hdr-user-dropdown-footer {
  padding: 6px 0;
  border-top: 1px solid #f1f5f9;
}
.hdr-user-dropdown-logout {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  color: #dc2626;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: background .15s;
}
.hdr-user-dropdown-logout i { font-size: 1rem; width: 18px; text-align: center; }
.hdr-user-dropdown-logout:hover { background: #fff5f5; }

/* ── MOBILE MENU ─────────────────────────────────────── */
.mobile-menu-btn { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; cursor: pointer; }
.mobile-menu-btn span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: var(--transition); }
.mobile-menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 999; }

@media (max-width: 1199px) {
  .mobile-menu-btn { display: flex; }
  .hdr-actions { display: none !important; }
  .main-nav { position: fixed; top: 0; left: -100%; width: 280px; height: 100vh; background: #fff; z-index: 1001; padding: 20px 0; overflow-y: auto; transition: left .3s ease; box-shadow: 4px 0 20px rgba(0,0,0,.2); }
  .main-nav.open { left: 0; }
  .nav-overlay.open { display: block; }
  .nav-list { flex-direction: column; align-items: stretch; padding: 10px 0; gap: 0; }
  .nav-item > .nav-link { padding: 12px 20px; border-radius: 0; border-bottom: 1px solid var(--border); }
  .dropdown-menu-custom { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; border-radius: 0; display: none; border-top: none; background: #f8f9fa; }
  .nav-item.open .dropdown-menu-custom { display: block; }
  .dropdown-menu-custom li a { padding-left: 35px; }
}

/* ── HERO SLIDER ─────────────────────────────────────── */
.hero-slider { position: relative; }
.hero-swiper, .default-hero { height: min(88vh, 720px); min-height: 520px; }
.swiper-slide, .default-hero { position: relative; overflow: hidden; }
.slide-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 8s ease; }
.swiper-slide.swiper-slide-active .slide-bg { transform: scale(1.06); }
.slide-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(120deg, rgba(19,78,74,.88) 0%, rgba(13,148,136,.55) 48%, rgba(45,212,191,.28) 100%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.18), transparent 40%);
}
.slide-content {
  position: relative; z-index: 2; color: #fff;
  padding: 0 0 100px; max-width: 740px; margin-top: 90px;
  animation: fadeUp .8s ease both;
}
.slide-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: -.03em;
  text-shadow: 0 10px 40px rgba(0,0,0,.25);
}
.slide-subtitle { font-size: 1.12rem; margin-bottom: 30px; opacity: .92; max-width: 34em; }
.slide-btns { display: flex; gap: 15px; flex-wrap: wrap; }
.swiper-button-next, .swiper-button-prev { color: #fff; background: rgba(255,255,255,.18); width: 50px; height: 50px; border-radius: 50%; backdrop-filter: blur(6px); }
.swiper-button-next::after, .swiper-button-prev::after { font-size: 16px; }
.swiper-pagination-bullet { background: #fff; opacity: .5; }
.swiper-pagination-bullet-active { opacity: 1; background: var(--accent); }

/* ── QUICK APPOINTMENT ───────────────────────────────── */
.quick-appt { position: relative; z-index: 10; margin-top: -60px; }
.quick-appt-box {
  background: rgba(255,255,255,.95);
  border-radius: calc(var(--radius) + 4px);
  padding: 30px;
  box-shadow: 0 20px 50px rgba(13,148,136,.18);
  border: 1px solid rgba(13,148,136,.1);
  backdrop-filter: blur(10px);
  animation: fadeUp .7s .15s ease both;
}
.quick-appt-title { color: var(--dark); font-weight: 700; margin-bottom: 15px; font-size: 1.1rem; }

/* ── BUTTONS ─────────────────────────────────────────── */
.btn-primary-custom {
  display: inline-flex; align-items: center;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff; padding: 13px 28px; border-radius: 999px;
  font-weight: 700; font-size: 15px; transition: var(--transition);
  box-shadow: 0 10px 24px rgba(13,148,136,.28);
}
.btn-primary-custom:hover { background: var(--primary-dark); color: #fff; transform: translateY(-3px); box-shadow: 0 14px 28px rgba(13,148,136,.35); }
.btn-outline-custom {
  display: inline-flex; align-items: center;
  border: 2px solid var(--primary); color: var(--primary);
  padding: 11px 24px; border-radius: 999px; font-weight: 700; font-size: 15px; transition: var(--transition);
}
.btn-outline-custom:hover { background: var(--primary); color: #fff; transform: translateY(-3px); }
.slide-btns .btn-outline-custom,
.why-us-content .btn-outline-custom {
  border-color: rgba(255,255,255,.8); color: #fff; backdrop-filter: blur(4px);
}
.slide-btns .btn-outline-custom:hover,
.why-us-content .btn-outline-custom:hover {
  background: #fff; color: var(--primary);
}
.btn-sm-primary { display: inline-block; background: var(--primary); color: #fff !important; padding: 6px 16px; border-radius: 999px; font-size: 13px; font-weight: 600; transition: var(--transition); }
.btn-sm-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-sm-outline { display: inline-block; border: 1px solid var(--primary); color: var(--primary); padding: 5px 14px; border-radius: 999px; font-size: 13px; font-weight: 600; transition: var(--transition); }
.btn-sm-outline:hover { background: var(--primary); color: #fff; }

/* ── SECTION HEADER ──────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 50px; }
.section-tag {
  display: inline-block;
  background: var(--mint-soft);
  color: var(--primary-dark);
  font-size: 12px; font-weight: 700;
  padding: 5px 16px; border-radius: 999px;
  margin-bottom: 12px; text-transform: uppercase; letter-spacing: .08em;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -.02em;
}

/* ── STATS ───────────────────────────────────────────── */
.stats-section {
  background: linear-gradient(135deg, #0d9488 0%, #0f766e 50%, #134e4a 100%);
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255,255,255,.12), transparent 45%);
  pointer-events: none;
}
.stat-item { text-align: center; padding: 30px 20px; border-right: 1px solid rgba(255,255,255,.2); }
.stat-item.last { border-right: none; }
.stat-num { font-size: clamp(2rem, 5vw, 3rem); font-weight: 900; color: #fff; line-height: 1; }
.stat-lbl { color: rgba(255,255,255,.8); font-size: 14px; margin-top: 5px; }
@media (max-width: 767px) { .stat-item { border-right: 1px solid rgba(255,255,255,.2); } .stat-item:nth-child(2n) { border-right: none; } }

/* ── DEPARTMENT CARDS ────────────────────────────────── */
.dept-card { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 30px 20px; background: #fff; border-radius: var(--radius); border: 1px solid var(--border); transition: var(--transition); color: var(--text); }
.dept-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); border-color: var(--primary); color: var(--primary); }
.dept-icon { width: 70px; height: 70px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin-bottom: 15px; transition: var(--transition); }
.dept-card:hover .dept-icon { transform: scale(1.1); }
.dept-card h5 { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.dept-card p { font-size: 13px; color: var(--text-light); margin-bottom: 10px; }
.dept-link { font-size: 13px; font-weight: 600; color: var(--primary); }
.dept-card-lg { min-height: 180px; }
.dept-card-sm { flex-direction: row; gap: 10px; text-align: left; padding: 15px; }
.dept-card-sm i { font-size: 1.4rem; }

/* ── SERVICE CARDS ───────────────────────────────────── */
.service-card { display: flex; gap: 20px; align-items: flex-start; padding: 25px; background: #fff; border-radius: var(--radius); border: 1px solid var(--border); transition: var(--transition); color: var(--text); position: relative; overflow: hidden; }
.service-card-photo { flex-direction: column; padding: 0; min-height: 280px; }
.service-card-media { width: 100%; height: 150px; background-size: cover; background-position: center; }
.service-card-photo .service-icon { margin: -24px 20px 0; position: relative; z-index: 1; }
.service-card-photo .service-content { padding: 8px 22px 22px; width: 100%; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); border-color: transparent; color: var(--text); }
.service-icon { flex-shrink: 0; width: 65px; height: 65px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: #fff; }
.service-content h5 { font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.service-content p { font-size: 14px; color: var(--text-light); margin-bottom: 10px; }
.service-link { font-size: 13px; font-weight: 600; color: var(--primary); }
.sidebar-service-link { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--border); color: var(--text); font-size: 14px; font-weight: 500; }
.sidebar-service-link:hover { color: var(--primary); padding-left: 5px; }
.sidebar-service-link i { font-size: 1.2rem; }

/* ── DOCTOR CARDS ────────────────────────────────────── */
.doctors-swiper { padding: 10px 5px 50px !important; }
.doctor-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); }
.doctor-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.doctor-img-wrap { position: relative; overflow: hidden; aspect-ratio: 3/4; }
.doctor-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.doctor-card:hover .doctor-img-wrap img { transform: scale(1.05); }
.doctor-img-placeholder, .doc-sm-placeholder, .doc-placeholder-lg { width: 100%; height: 100%; background: linear-gradient(135deg, var(--mint), var(--mint-soft)); display: flex; align-items: center; justify-content: center; font-size: 4rem; color: var(--primary); }
.doctor-overlay { position: absolute; inset: 0; background: rgba(13,148,136,.82); display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition); }
.doctor-card:hover .doctor-overlay { opacity: 1; }
.doctor-socials { display: flex; gap: 12px; }
.doctor-socials a { color: #fff; font-size: 1.2rem; }
.doctor-socials a:hover { color: #ffd; }
.doctor-info { padding: 18px; text-align: center; }
.doctor-info h5 { font-weight: 700; font-size: 15px; color: var(--dark); margin-bottom: 4px; }
.doctor-info p { font-size: 13px; color: var(--text-light); margin-bottom: 12px; }
.doctor-btns { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.doctor-card-sm { text-align: center; padding: 20px 15px; background: #f8f9fa; border-radius: var(--radius); }
.doc-sm-img { width: 80px; height: 80px; border-radius: 50%; overflow: hidden; margin: 0 auto 10px; border: 3px solid var(--primary); }
.doc-sm-img img { width: 100%; height: 100%; object-fit: cover; }
.doc-sm-placeholder { font-size: 2rem; }
.doctor-card-sm h6 { font-weight: 700; font-size: 14px; margin-bottom: 4px; }
.doctor-card-sm small { color: var(--text-light); font-size: 12px; }

/* ── DOCTOR PROFILE ──────────────────────────────────── */
.doctor-profile-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; position: sticky; top: 100px; }
.doctor-profile-img { aspect-ratio: 1; overflow: hidden; }
.doctor-profile-img img { width: 100%; height: 100%; object-fit: cover; }
.doc-placeholder-lg { aspect-ratio: 1; font-size: 6rem; }
.doctor-profile-info { padding: 24px; }
.doctor-profile-info h3 { font-size: 1.3rem; font-weight: 800; color: var(--dark); margin-bottom: 5px; }
.doc-specialty { color: var(--primary); font-weight: 600; margin-bottom: 5px; }
.doc-dept a { font-size: 14px; color: var(--text-light); }
.doc-meta { margin-top: 15px; }
.doc-meta li { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.doc-meta li:last-child { border-bottom: none; }
.doc-meta i { color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.doc-social { display: flex; gap: 8px; }
.doc-section { margin-bottom: 30px; border-bottom: 1px solid var(--border); padding-bottom: 30px; }
.doc-section:last-child { border-bottom: none; }
.doc-section-title { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 15px; display: flex; align-items: center; }
.doc-section-title i { color: var(--primary); }

/* ── WHY US ──────────────────────────────────────────── */
.why-us-section { padding: 80px 0; background: var(--dark); color: #fff; }
.why-us-img { position: relative; height: 450px; border-radius: var(--radius); overflow: hidden; }
.why-us-img-bg { position: absolute; inset: 0; background: linear-gradient(135deg, #0d9488, #134e4a); border-radius: var(--radius); }
.why-us-badge { position: absolute; bottom: 30px; right: 30px; background: var(--primary); color: #fff; border-radius: var(--radius); padding: 20px 25px; text-align: center; }
.badge-num { font-size: 2.5rem; font-weight: 900; line-height: 1; }
.badge-txt { font-size: 13px; opacity: .9; }
.why-us-content .section-tag { background: rgba(255,255,255,.15); color: #fff; }
.why-us-content h2 { color: #fff; margin-bottom: 15px; }
.why-us-content > p { color: rgba(255,255,255,.8); margin-bottom: 25px; }
.why-features { display: flex; flex-direction: column; gap: 15px; }
.why-feature { display: flex; align-items: flex-start; gap: 15px; }
.why-feature i { font-size: 1.5rem; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.why-feature strong { display: block; color: #fff; font-size: 15px; }
.why-feature span { color: rgba(255,255,255,.7); font-size: 14px; }
.why-us-content .btn-outline-custom { border-color: rgba(255,255,255,.5); color: #fff; }
.why-us-content .btn-outline-custom:hover { background: rgba(255,255,255,.1); }

/* ── TESTIMONIALS ────────────────────────────────────── */
.testimonials-swiper { padding: 10px 5px 50px !important; }
.testimonial-card { background: #fff; border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); }
.testimonial-rating { color: #ffc107; margin-bottom: 15px; }
.testimonial-card blockquote { font-size: 15px; color: var(--text-light); line-height: 1.8; margin-bottom: 20px; border-left: 3px solid var(--primary); padding-left: 15px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author img { width: 45px; height: 45px; border-radius: 50%; object-fit: cover; }
.author-avatar { width: 45px; height: 45px; border-radius: 50%; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.testimonial-author strong { display: block; font-size: 15px; color: var(--dark); }
.testimonial-author small { color: var(--text-light); font-size: 12px; }

/* ── NEWS CARDS ──────────────────────────────────────── */
.news-card { display: block; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); color: var(--text); }
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); color: var(--text); }
.news-img { aspect-ratio: 16/9; overflow: hidden; }
.news-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.news-card:hover .news-img img { transform: scale(1.08); }
.news-img-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg,var(--mint),var(--mint-soft)); display: flex; align-items: center; justify-content: center; font-size: 3rem; color: var(--primary); min-height: 180px; }
.news-content { padding: 20px; }
.news-date { font-size: 12px; color: var(--text-light); }
.news-content h5 { font-size: 16px; font-weight: 700; color: var(--dark); margin: 8px 0 10px; line-height: 1.4; }
.news-content p { font-size: 14px; color: var(--text-light); margin-bottom: 12px; }
.news-link { font-size: 13px; font-weight: 600; color: var(--primary); display: flex; align-items: center; gap: 5px; }
.news-card-featured .news-img { aspect-ratio: 4/3; }
.article-meta { display: flex; gap: 20px; color: var(--text-light); font-size: 14px; flex-wrap: wrap; }
.content-body { line-height: 1.9; }
.content-body h2, .content-body h3, .content-body h4 { color: var(--dark); margin: 25px 0 12px; }
.content-body p { margin-bottom: 15px; }
.content-body ul, .content-body ol { margin-bottom: 15px; padding-left: 20px; }
.content-body ul { list-style: disc; }
.content-body img { max-width: 100%; border-radius: 8px; margin: 15px 0; }

/* ── SIDEBAR ─────────────────────────────────────────── */
.sidebar-widget { background: #fff; border-radius: var(--radius); padding: 25px; margin-bottom: 25px; box-shadow: var(--shadow); }
.sidebar-widget h5 { font-weight: 700; color: var(--dark); margin-bottom: 18px; font-size: 16px; border-bottom: 2px solid var(--primary); padding-bottom: 10px; }
.appt-widget { background: var(--dark); color: #fff; }
.appt-widget h5 { color: #fff; border-color: var(--primary); }
.appt-widget p { color: rgba(255,255,255,.8); font-size: 14px; margin-bottom: 15px; }
.sidebar-hours li { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.sidebar-hours li:last-child { border-bottom: none; }
.sidebar-hours li.closed { color: #dc3545; opacity: .6; }
.sidebar-dept-links li a { display: flex; align-items: center; gap: 8px; padding: 8px 0; border-bottom: 1px solid var(--border); color: var(--text); font-size: 14px; }
.sidebar-dept-links li:last-child a { border-bottom: none; }
.sidebar-dept-links li a:hover { color: var(--primary); padding-left: 5px; }
.sidebar-dept-links i { font-size: 1.1rem; }
.sidebar-news-item { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); color: var(--text); }
.sidebar-news-item:last-child { border-bottom: none; }
.sidebar-news-item img, .sidebar-news-ph { width: 70px; height: 55px; object-fit: cover; border-radius: 6px; flex-shrink: 0; }
.sidebar-news-ph { background: var(--mint); display: flex; align-items: center; justify-content: center; color: var(--primary); }
.sidebar-news-item span { font-size: 11px; color: var(--text-light); }
.sidebar-news-item p { font-size: 13px; font-weight: 500; color: var(--dark); margin: 0; line-height: 1.4; }
.sidebar-news-item:hover p { color: var(--primary); }

/* ── PAGE BANNER ─────────────────────────────────────── */
.page-banner { color: #fff; padding: 60px 0; margin-top: 0; }
.page-banner h1 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; margin-bottom: 12px; }
.page-banner .breadcrumb { background: none; padding: 0; margin: 0; }
.page-banner .breadcrumb-item a { color: rgba(255,255,255,.7); }
.page-banner .breadcrumb-item.active { color: rgba(255,255,255,.9); }
.breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,.5); }

/* ── FILTER BAR ──────────────────────────────────────── */
.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-btn { padding: 8px 20px; border-radius: 25px; border: 1px solid var(--border); color: var(--text); font-size: 14px; font-weight: 500; transition: var(--transition); background: #fff; }
.filter-btn:hover, .filter-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ── APPOINTMENT FORM ────────────────────────────────── */
.appt-form-box { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.appt-form-header { background: var(--dark); color: #fff; padding: 30px; }
.appt-form-header h3 { font-weight: 800; margin-bottom: 8px; }
.appt-form-header p { opacity: .8; margin: 0; font-size: 14px; }
.appt-form { padding: 30px; }
.input-icon-wrap { position: relative; }
.input-icon-wrap i { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--primary); z-index: 2; }
.input-icon-wrap .form-control, .input-icon-wrap .form-select { padding-left: 38px; }
.appt-info-list li { display: flex; gap: 12px; align-items: flex-start; padding: 10px 0; border-bottom: 1px solid var(--border); }
.appt-info-list li:last-child { border-bottom: none; }
.appt-info-list i { font-size: 1.2rem; margin-top: 2px; flex-shrink: 0; }
.appt-info-list strong { display: block; font-size: 12px; color: var(--text-light); }
.appt-info-list a, .appt-info-list span { font-size: 15px; font-weight: 600; color: var(--dark); }

/* ── CONTACT ─────────────────────────────────────────── */
.contact-info-cards { display: flex; flex-direction: column; gap: 15px; }
.contact-info-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  gap: 15px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  align-items: flex-start;
}
.contact-card-body,
.contact-info-card > div:last-child {
  flex: 1 1 auto;
  min-width: 0;
}
.ci-icon {
  width: 45px;
  height: 45px;
  background: var(--mint);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
  flex-shrink: 0;
}
.contact-info-card h6 { font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.contact-info-card p { font-size: 14px; color: var(--text-light); margin: 0; }
.contact-info-card a { color: var(--text); font-size: 14px; }
.contact-info-card a:hover { color: var(--primary); }
.emergency-card .ci-icon { background: #ffe3e3; }
.contact-form-box { background: #fff; border-radius: var(--radius); padding: 35px; box-shadow: var(--shadow); border: 1px solid var(--border); }

.contact-hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}
.contact-hours-list li,
.wh-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.contact-hours-list li:last-child,
.wh-row:last-child { border-bottom: none; padding-bottom: 0; }
.contact-hours-list .wh-day { color: var(--text-light); font-weight: 500; }
.contact-hours-list .wh-time { color: var(--dark); font-weight: 600; white-space: nowrap; }
.contact-hours-list li.is-closed .wh-time { color: #dc2626; font-weight: 600; }

.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}
.contact-socials a,
.contact-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--mint);
  color: var(--primary) !important;
  font-size: 1.1rem;
  border: 1px solid transparent;
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.contact-socials a:hover,
.contact-social-btn:hover {
  background: var(--primary);
  color: #fff !important;
  transform: translateY(-2px);
}

/* ── GALLERY ─────────────────────────────────────────── */
.gallery-item { display: block; border-radius: 8px; overflow: hidden; position: relative; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(13,148,136,.8); display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; opacity: 0; transition: var(--transition); gap: 8px; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 2rem; }
.gallery-overlay span { font-size: 13px; font-weight: 600; }

/* ── FAQ ─────────────────────────────────────────────── */
.faq-group { margin-bottom: 40px; }
.faq-cat-title { font-size: 1.2rem; font-weight: 700; color: var(--dark); margin-bottom: 15px; padding-bottom: 10px; border-bottom: 2px solid var(--primary); }
.faq-item { border: 1px solid var(--border); border-radius: 8px; margin-bottom: 10px; overflow: hidden; }
.faq-item .accordion-button { font-weight: 600; color: var(--dark); background: #fff; }
.faq-item .accordion-button:not(.collapsed) { color: var(--primary); background: var(--mint); box-shadow: none; }
.faq-item .accordion-button::after { filter: none; }
.faq-cta { background: var(--mint); border-radius: var(--radius); padding: 30px; text-align: center; }

/* ── INSURANCE ───────────────────────────────────────── */
.section-group-title { font-size: 1.2rem; font-weight: 700; color: var(--dark); margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid var(--border); }
.insurance-card { background: #fff; border-radius: var(--radius); padding: 20px; text-align: center; box-shadow: var(--shadow); transition: var(--transition); height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; border: 1px solid var(--border); }
.insurance-card:hover { border-color: var(--primary); transform: translateY(-3px); }
.insurance-card img { max-height: 60px; object-fit: contain; }
.insurance-card i { font-size: 2rem; color: var(--primary); }
.insurance-card span { font-size: 13px; font-weight: 600; color: var(--dark); text-align: center; }
.insurance-note { background: var(--mint); border-radius: 8px; padding: 18px 20px; display: flex; gap: 12px; align-items: flex-start; }
.insurance-note i { color: var(--primary); font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.insurance-note p { font-size: 14px; color: var(--dark); margin: 0; }

/* ── SHARE BAR ───────────────────────────────────────── */
.share-bar { display: flex; align-items: center; gap: 10px; padding: 15px 0; border-top: 1px solid var(--border); }
.share-bar span { font-weight: 600; font-size: 14px; color: var(--text-light); }
.share-btn { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; color: #fff; font-size: 0.9rem; transition: var(--transition); }
.share-btn:hover { transform: translateY(-3px); color: #fff; }
.share-btn.facebook { background: #1877f2; }
.share-btn.twitter { background: #000; }
.share-btn.whatsapp { background: #25d366; }

/* ── SOCIAL ICONS ────────────────────────────────────── */
.social-icon { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; background: var(--mint); color: var(--primary); transition: var(--transition); }
.social-icon:hover { background: var(--primary); color: #fff; transform: translateY(-3px); }
.social-icon.facebook:hover { background: #1877f2; } .social-icon.twitter:hover { background: #000; }
.social-icon.linkedin:hover { background: #0a66c2; } .social-icon.instagram:hover { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }

/* ── NOT FOUND ───────────────────────────────────────── */
.not-found-section { min-height: 60vh; display: flex; align-items: center; }
.not-found-num { font-size: 8rem; font-weight: 900; color: var(--primary); opacity: .15; line-height: 1; }

/* ── FOOTER ──────────────────────────────────────────── */
.site-footer { background: var(--dark); color: #ccc; }
.footer-top { padding: 70px 0 40px; }
.footer-logo { max-height: 60px; margin-bottom: 15px; filter: brightness(0) invert(1); }
.footer-logo-text { font-size: 1.4rem; font-weight: 800; color: #fff; margin-bottom: 15px; display: flex; align-items: center; gap: 8px; }
.footer-logo-text i { color: var(--primary); }
.footer-desc { font-size: 14px; color: #aaa; line-height: 1.8; margin-bottom: 18px; }
.footer-contact-info div { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 8px; font-size: 14px; }
.footer-contact-info i { color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.footer-contact-info a { color: #ccc; } .footer-contact-info a:hover { color: #fff; }
.footer-social { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-social .social-icon { background: rgba(255,255,255,.1); color: #ccc; }
.footer-social .social-icon:hover { color: #fff; }
.footer-widget-title { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid var(--primary); }
.footer-links li a { display: flex; align-items: center; gap: 6px; color: #aaa; font-size: 14px; padding: 5px 0; transition: var(--transition); }
.footer-links li a:hover { color: #fff; padding-left: 5px; }
.footer-links i { font-size: 11px; color: var(--primary); }
.working-hours-list li { display: flex; justify-content: space-between; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 13px; }
.working-hours-list li:last-child { border-bottom: none; }
.working-hours-list li.closed { opacity: .5; }
.footer-newsletter { background: rgba(255,255,255,.05); border-top: 1px solid rgba(255,255,255,.08); padding: 30px 0; }
.footer-newsletter h5 { color: #fff; font-weight: 700; }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form .form-control { border-radius: 8px; border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.1); color: #fff; flex: 1; }
.newsletter-form .form-control::placeholder { color: rgba(255,255,255,.5); }
.newsletter-form .btn { border-radius: 8px; flex-shrink: 0; }
.footer-bottom { background: rgba(0,0,0,.3); padding: 18px 0; font-size: 13px; color: #777; }
.footer-bottom-links { display: flex; gap: 20px; justify-content: flex-end; flex-wrap: wrap; margin: 0; }
.footer-bottom-links a { color: #777; } .footer-bottom-links a:hover { color: #fff; }

/* ── FLOAT BUTTONS ───────────────────────────────────── */
.back-to-top { position: fixed; bottom: 90px; right: 25px; width: 44px; height: 44px; border-radius: 50%; background: var(--primary); color: #fff; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; opacity: 0; visibility: hidden; transition: var(--transition); z-index: 990; box-shadow: var(--shadow); }
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-3px); }
.whatsapp-float { position: fixed; bottom: 145px; right: 25px; width: 50px; height: 50px; border-radius: 50%; background: #25d366; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; z-index: 990; box-shadow: 0 4px 15px rgba(37,211,102,.4); transition: var(--transition); }
.whatsapp-float:hover { transform: translateY(-3px) scale(1.1); color: #fff; }
.appt-float { position: fixed; bottom: 25px; right: 25px; width: 55px; height: 55px; border-radius: 50%; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; z-index: 990; box-shadow: 0 4px 15px rgba(13,148,136,.4); transition: var(--transition); animation: pulse 2s infinite; }
.appt-float:hover { transform: translateY(-3px) scale(1.1); color: #fff; animation: none; }
@keyframes pulse { 0%,100% { box-shadow: 0 4px 15px rgba(13,148,136,.4); } 50% { box-shadow: 0 4px 30px rgba(13,148,136,.6); } }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 767px) {
  .section-pad { padding: 50px 0; }
  .hero-swiper, .default-hero { height: 400px; }
  .slide-content { margin-top: 40px; }
  .news-card-featured .news-img { aspect-ratio: 16/9; }
  .service-card { flex-direction: column; }
  .newsletter-form { flex-direction: column; }
  .footer-bottom-links { justify-content: flex-start; }
  .quick-appt-box { margin: 0 15px; }
}

/* ── Before / After Slider ── */
.ba-card { background:#fff; border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow); }
.ba-card-title { padding:12px 16px 8px; font-size:14px; font-weight:700; color:var(--dark); margin:0; }
.ba-slider-wrap { position:relative; width:100%; aspect-ratio:4/3; overflow:hidden; cursor:ew-resize; user-select:none; -webkit-user-select:none; background:#eee; }
.ba-after  { position:absolute; inset:0; background-size:cover; background-position:center; }
.ba-before { position:absolute; inset:0; background-size:cover; background-position:center; clip-path:inset(0 50% 0 0); z-index:1; }
.ba-divider { position:absolute; top:0; bottom:0; left:50%; width:2px; background:#fff; z-index:2; transform:translateX(-50%); pointer-events:none; }
.ba-handle { position:absolute; top:50%; left:50%; width:40px; height:40px; background:#fff; border-radius:50%; display:flex; align-items:center; justify-content:center; box-shadow:0 2px 10px rgba(0,0,0,.35); z-index:3; pointer-events:none; color:var(--primary); font-size:16px; transform:translate(-50%,-50%); }
.ba-label { position:absolute; bottom:10px; padding:3px 10px; background:rgba(0,0,0,.55); color:#fff; font-size:11px; font-weight:700; border-radius:20px; z-index:4; pointer-events:none; }
.ba-label-before { left:10px; }
.ba-label-after  { right:10px; }

/* Cookie banner */
.cookie-banner{
  position:fixed;left:0;right:0;bottom:0;z-index:90;
  background:rgba(12,31,46,.96);color:#fff;
  padding:16px 0;box-shadow:0 -8px 28px rgba(12,31,46,.25);
  transform:translateY(110%);opacity:0;transition:transform .35s ease,opacity .35s ease;
}
.cookie-banner.is-visible{transform:translateY(0);opacity:1}
.cookie-banner-inner{
  max-width:1400px;margin:0 auto;padding:0 20px;
  display:flex;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap;
}
.cookie-banner-text{margin:0;font-size:.92rem;line-height:1.5;flex:1;min-width:220px}
.cookie-banner-text a{color:#9fe7f0;text-decoration:underline;text-underline-offset:2px}
.cookie-banner-btn{
  flex-shrink:0;border:0;border-radius:999px;padding:10px 22px;font-weight:700;
  background:#fff;color:#222;cursor:pointer;transition:transform .15s;
}
.cookie-banner-btn:hover{transform:scale(1.03)}
body.has-cookie-banner .whatsapp-float{bottom:150px}
body.has-cookie-banner .appt-float{bottom:210px}
body.has-cookie-banner .back-to-top{bottom:150px}
@media (max-width:576px){
  .cookie-banner-inner{flex-direction:column;align-items:stretch}
  .cookie-banner-btn{width:100%}
}
