/* ============================================================
   DentaGuide Banja Luka — Stomatološki registar
   Design: Clinical-luxe with teal/cyan + warm gold accents
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --color-primary: #0891b2;
  --color-primary-dark: #0e7490;
  --color-primary-deeper: #164e63;
  --color-primary-light: #cffafe;
  --color-primary-50: #ecfeff;
  --color-accent: #d97706;
  --color-accent-light: #fef3c7;
  --color-bg: #f0fdfa;
  --color-bg-alt: #f8fafc;
  --color-surface: #ffffff;
  --color-text: #0f172a;
  --color-text-muted: #475569;
  --color-text-light: #94a3b8;
  --color-border: #e2e8f0;
  --color-border-light: #f1f5f9;
  --color-success: #059669;
  --color-tourism: #7c3aed;
  --color-tourism-light: #ede9fe;
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Source Sans 3', 'Segoe UI', system-ui, sans-serif;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1280px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-accent); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

/* ---------- Utilities ---------- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ---------- Noise Texture Overlay ---------- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* ============================================================
   HEADER / HERO
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border-light);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo svg { flex-shrink: 0; }
.logo-text {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-primary-deeper);
  line-height: 1.15;
}

.footer-brand .logo-text { color: #fff; }

.logo-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--color-text-light);
  letter-spacing: 0.03em;
  text-transform: none;
  margin-top: 1px;
}

.logo-sub a {
  color: var(--color-text-light);
  transition: color var(--transition);
}
.logo-sub a:hover { color: var(--color-accent); }

.footer-brand .logo-sub { color: rgba(255,255,255,0.4); }
.footer-brand .logo-sub a { color: rgba(255,255,255,0.5); }
.footer-brand .logo-sub a:hover { color: var(--color-accent-light); }

.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--color-primary-dark); }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--color-text);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
  background: linear-gradient(135deg, var(--color-primary-deeper) 0%, var(--color-primary-dark) 40%, var(--color-primary) 100%);
  color: #fff;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(217,119,6,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--color-bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease-out;
}

.hero h1 {
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.15);
  animation: fadeInDown 0.8s ease-out 0.1s both;
}
.hero h1 .accent { color: var(--color-accent-light); }

.hero-desc {
  font-size: 1.15rem;
  line-height: 1.8;
  opacity: 0.9;
  max-width: 640px;
  margin: 0 auto 36px;
  animation: fadeInDown 0.8s ease-out 0.2s both;
}

/* ---------- Search Bar ---------- */
.search-wrapper {
  max-width: 600px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.search-box {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.95);
  border-radius: 60px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.search-box:focus-within {
  box-shadow: 0 8px 32px rgba(0,0,0,0.25), 0 0 0 3px rgba(8,145,178,0.3);
}

.search-box .search-icon {
  position: absolute;
  left: 20px;
  color: var(--color-text-light);
  pointer-events: none;
  z-index: 2;
}

.search-box input {
  flex: 1;
  border: none;
  outline: none;
  padding: 18px 20px 18px 52px;
  font-size: 1.05rem;
  font-family: var(--font-body);
  color: var(--color-text);
  background: transparent;
}
.search-box input::placeholder { color: var(--color-text-light); }

.search-box .search-clear {
  background: none;
  border: none;
  padding: 8px 16px;
  cursor: pointer;
  color: var(--color-text-light);
  font-size: 1.2rem;
  display: none;
  transition: color var(--transition);
}
.search-box .search-clear.visible { display: block; }
.search-box .search-clear:hover { color: var(--color-text); }

.search-results-count {
  text-align: center;
  margin-top: 16px;
  font-size: 0.9rem;
  opacity: 0.85;
  min-height: 24px;
}

/* ---------- Stats Bar ---------- */
.stats-bar {
  padding: 32px 0;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* ============================================================
   INTRO SECTION
   ============================================================ */
.intro-section {
  padding: 80px 0 60px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.intro-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.intro-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.intro-image:hover img { transform: scale(1.03); }

.intro-text h2 { color: var(--color-primary-deeper); margin-bottom: 20px; }
.intro-text p {
  color: var(--color-text-muted);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.intro-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--color-primary-50);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-primary-deeper);
}

.highlight-item svg { flex-shrink: 0; color: var(--color-primary); }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.section-header h2 { color: var(--color-primary-deeper); margin-bottom: 12px; }

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

/* ============================================================
   DENTAL TOURISM SECTION
   ============================================================ */
.tourism-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-surface) 100%);
}

.tourism-banner {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 48px;
  height: 280px;
}

.tourism-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tourism-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(22,78,99,0.85) 0%, rgba(8,145,178,0.6) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 32px;
}

.tourism-banner-overlay h2 { margin-bottom: 12px; }
.tourism-banner-overlay p { font-size: 1.1rem; opacity: 0.9; max-width: 600px; }

/* ---------- Clinic Cards ---------- */
.clinics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 24px;
}

.clinic-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}

.clinic-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.clinic-card.tourism-card { border-color: var(--color-primary-light); }
.clinic-card.tourism-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}

.card-header {
  padding: 24px 24px 16px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.card-number {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-50);
  color: var(--color-primary-dark);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 50%;
}

.tourism-card .card-number {
  background: var(--color-primary);
  color: #fff;
}

.card-title-block { flex: 1; }

.card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary-deeper);
  margin-bottom: 4px;
  line-height: 1.3;
}

.card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.badge-tourism {
  background: var(--color-tourism-light);
  color: var(--color-tourism);
}

.badge-languages {
  background: var(--color-accent-light);
  color: var(--color-accent);
}

.card-body { padding: 0 24px 20px; }

.card-info-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border-light);
}
.card-info-row:last-child { border-bottom: none; }

.card-info-row svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--color-primary);
}

.card-info-row a {
  color: var(--color-primary-dark);
  word-break: break-all;
}

.card-specialties {
  padding: 16px 24px;
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border-light);
}

.card-specialties-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-light);
  margin-bottom: 8px;
}

.specialty-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.specialty-tag {
  padding: 3px 10px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 100px;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.card-tourism-services {
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--color-primary-50), var(--color-tourism-light));
  border-top: 1px solid var(--color-border-light);
}

.tourism-services-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-tourism);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.tourism-service-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  padding: 3px 0;
}

.tourism-service-item svg { flex-shrink: 0; color: var(--color-success); }

/* ============================================================
   OTHER CLINICS (compact table-like)
   ============================================================ */
.other-clinics-section {
  padding: 80px 0;
  background: var(--color-surface);
}

.other-clinics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 20px;
}

/* ============================================================
   PRICE COMPARISON TABLE
   ============================================================ */
.price-section {
  padding: 80px 0;
  background: var(--color-bg);
}

.price-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  -webkit-overflow-scrolling: touch;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-surface);
  min-width: 700px;
}

.price-table thead th {
  background: var(--color-primary-deeper);
  color: #fff;
  padding: 16px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  position: sticky;
  top: 0;
}

.price-table thead th:first-child {
  text-align: left;
  border-radius: var(--radius-lg) 0 0 0;
}
.price-table thead th:last-child {
  border-radius: 0 var(--radius-lg) 0 0;
}

.price-table tbody td {
  padding: 14px;
  text-align: center;
  border-bottom: 1px solid var(--color-border-light);
  font-size: 0.9rem;
}

.price-table tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--color-text);
}

.price-table tbody tr:hover { background: var(--color-primary-50); }
.price-table tbody tr:last-child td { border-bottom: none; }

.price-highlight {
  font-weight: 700;
  color: var(--color-success);
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  padding: 80px 0;
  background: var(--color-surface);
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item:hover { border-color: var(--color-primary-light); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
  transition: background var(--transition);
}

.faq-question:hover { background: var(--color-bg-alt); }

.faq-question .faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-50);
  border-radius: 50%;
  color: var(--color-primary);
  transition: transform var(--transition), background var(--transition);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--color-primary);
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--color-text-muted);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--color-primary-deeper) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 30% 70%, rgba(217,119,6,0.12) 0%, transparent 70%);
}

.cta-content { position: relative; z-index: 2; }
.cta-content h2 { margin-bottom: 16px; }
.cta-content p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; }

.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 60px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}
.btn-primary:hover {
  background: #b45309;
  border-color: #b45309;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217,119,6,0.3);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  color: #fff;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-text);
  color: rgba(255,255,255,0.6);
  padding: 48px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo { margin-bottom: 12px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; }

.footer-col h4 {
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 16px;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.footer-col a:hover { color: var(--color-accent-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

.footer-bottom a { color: var(--color-accent-light); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all var(--transition);
  z-index: 90;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--color-primary-dark);
  transform: translateY(-3px);
}

/* ---------- No Results ---------- */
.no-results {
  text-align: center;
  padding: 60px 20px;
  display: none;
}

.no-results.visible { display: block; }

.no-results svg { color: var(--color-text-light); margin-bottom: 16px; }
.no-results h3 { color: var(--color-text); margin-bottom: 8px; font-size: 1.3rem; }
.no-results p { color: var(--color-text-muted); }

/* ============================================================
   MAP SECTION
   ============================================================ */
.map-section {
  padding: 60px 0 80px;
  background: var(--color-surface);
}

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border);
}

#clinics-map {
  width: 100%;
  height: 520px;
  z-index: 1;
}

.map-legend {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 20px;
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border-light);
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.legend-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.legend-dot-tourism { background: var(--color-primary); }
.legend-dot-regular { background: var(--color-accent); }

.map-counter {
  margin-left: auto;
  font-size: 0.82rem;
  color: var(--color-text-light);
}

.map-counter strong { color: var(--color-primary-dark); }

/* Highlight card when scrolled from map */
.clinic-card.map-highlight {
  box-shadow: 0 0 0 3px var(--color-primary), var(--shadow-xl);
  transition: box-shadow 0.3s ease;
}

@media (max-width: 768px) {
  #clinics-map { height: 380px; }
  .map-legend { gap: 12px; }
  .map-counter { margin-left: 0; width: 100%; }
}

@media (max-width: 480px) {
  #clinics-map { height: 300px; }
}

/* ---------- Custom Map Markers ---------- */
.custom-marker { background: none !important; border: none !important; }

.marker-pin {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.marker-pin svg { transform: rotate(45deg); }

.tourism-pin {
  width: 32px;
  height: 32px;
  background: var(--color-primary);
  border: 2.5px solid #fff;
}

.regular-pin {
  width: 26px;
  height: 26px;
  background: var(--color-accent);
  border: 2px solid #fff;
}

/* ---------- Map Popups ---------- */
.dentaguide-popup .leaflet-popup-content-wrapper {
  border-radius: var(--radius-md) !important;
  box-shadow: var(--shadow-lg) !important;
  padding: 0 !important;
  overflow: hidden;
}

.dentaguide-popup .leaflet-popup-content { margin: 0 !important; width: auto !important; }
.dentaguide-popup .leaflet-popup-tip { background: #fff; }

.map-popup {
  padding: 16px 18px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.5;
  min-width: 200px;
}

.map-popup strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-primary-deeper);
  margin-bottom: 4px;
}

.popup-badge {
  display: inline-block;
  background: var(--color-tourism-light);
  color: var(--color-tourism);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  margin-bottom: 8px;
}

.popup-addr {
  color: var(--color-text-muted);
  font-size: 0.82rem;
  margin-bottom: 4px;
}

.popup-phone a {
  color: var(--color-primary-dark);
  font-weight: 600;
  font-size: 0.85rem;
}

.popup-link {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 14px;
  background: var(--color-primary);
  color: #fff !important;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--transition);
}

.popup-link:hover { background: var(--color-primary-dark); color: #fff !important; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .intro-image { order: -1; }
  .intro-image img { height: 300px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-surface);
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
  }
  .mobile-toggle { display: block; }

  .hero { padding: 60px 0 80px; }
  .hero h1 { font-size: 1.8rem; }
  .hero-desc { font-size: 1rem; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-number { font-size: 1.5rem; }

  .clinics-grid,
  .other-clinics-grid { grid-template-columns: 1fr; }

  .intro-highlights { grid-template-columns: 1fr; }

  .price-table-wrapper { margin: 0 -24px; border-radius: 0; }

  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .cta-buttons { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .header-inner { padding: 12px 16px; }
  .logo { font-size: 1.15rem; }
  .search-box input { padding: 14px 16px 14px 48px; font-size: 0.95rem; }
  .card-header { padding: 20px 18px 14px; }
  .card-body { padding: 0 18px 16px; }
  .card-specialties, .card-tourism-services { padding: 14px 18px; }
  .tourism-banner { height: 200px; }
}

/* ---------- Logo Emoji ---------- */
.logo-emoji {
  font-size: 1.8rem;
  line-height: 1;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.1));
}

/* ============================================================
   DENTAL TRAVEL CALCULATOR
   ============================================================ */
.calc-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--color-surface) 0%, var(--color-bg) 50%, var(--color-surface) 100%);
  position: relative;
}

.calc-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent), var(--color-primary));
}

.calc-card {
  max-width: 780px;
  margin: 0 auto;
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

/* Steps Bar */
.calc-steps-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 28px 32px 24px;
  background: linear-gradient(135deg, var(--color-primary-deeper), var(--color-primary-dark));
}

.calc-step-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.45;
  transition: opacity var(--transition);
}
.calc-step-indicator.active { opacity: 1; }
.calc-step-indicator.done { opacity: 0.75; }

.calc-step-num {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: var(--font-display);
  transition: background var(--transition);
}
.calc-step-indicator.active .calc-step-num {
  background: var(--color-accent);
}
.calc-step-indicator.done .calc-step-num {
  background: var(--color-success);
}

.calc-step-label {
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.calc-step-line {
  width: 40px;
  height: 2px;
  background: rgba(255,255,255,0.2);
  margin: 0 12px;
}

/* Panels */
.calc-panel {
  display: none;
  padding: 32px;
}
.calc-panel.active { display: block; }

.calc-panel-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--color-primary-deeper);
  margin-bottom: 8px;
}

.calc-panel-desc {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.calc-info-icon-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-primary-50);
  color: var(--color-primary);
  font-size: 0.65rem;
  font-weight: 700;
  vertical-align: middle;
}

.calc-optional-tag {
  display: inline-block;
  padding: 2px 10px;
  background: var(--color-accent-light);
  color: var(--color-accent);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  font-family: var(--font-body);
  vertical-align: middle;
  margin-left: 8px;
}

/* Category */
.calc-category {
  margin-bottom: 24px;
}

.calc-cat-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary-dark);
  border-bottom: 2px solid var(--color-primary-light);
  margin-bottom: 8px;
}

.calc-cat-icon { font-size: 1rem; }

/* Service Item */
.calc-service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  gap: 12px;
}

.calc-service-item:hover { background: var(--color-primary-50); }
.calc-service-item.has-qty { background: var(--color-primary-50); }

.calc-service-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.calc-service-name {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

/* Tooltips */
.calc-tooltip-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-border);
  color: var(--color-text-muted);
  font-size: 0.6rem;
  font-weight: 700;
  cursor: help;
  position: relative;
  flex-shrink: 0;
  border: none;
  outline: none;
}

.calc-tooltip {
  display: none;
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-text);
  color: #fff;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.5;
  width: 240px;
  z-index: 20;
  box-shadow: var(--shadow-lg);
  pointer-events: none;
}

.calc-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--color-text);
}

.calc-tooltip-trigger:hover .calc-tooltip,
.calc-tooltip-trigger:focus .calc-tooltip {
  display: block;
}

/* Quantity Controls */
.calc-qty-controls {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--color-surface);
}

.calc-qty-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text-muted);
  transition: all var(--transition);
}

.calc-qty-btn:hover {
  background: var(--color-primary);
  color: #fff;
}

.calc-qty-value {
  width: 36px;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  line-height: 36px;
}

/* Subtotal */
.calc-subtotal {
  margin-top: 20px;
  padding: 16px 20px;
  background: linear-gradient(135deg, var(--color-primary-50), var(--color-accent-light));
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--color-text);
  text-align: center;
}

.calc-subtotal strong { color: var(--color-primary-dark); }

/* Step 2: Location */
.calc-location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.calc-location-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px 16px;
  background: var(--color-bg-alt);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-text);
  transition: all var(--transition);
}

.calc-location-btn:hover {
  border-color: var(--color-primary);
  background: var(--color-primary-50);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.calc-location-btn.selected {
  border-color: var(--color-primary);
  background: var(--color-primary-50);
  box-shadow: 0 0 0 3px rgba(8,145,178,0.15);
}

.calc-flag { font-size: 2rem; line-height: 1; }

/* Step 3: Travel Costs */
.calc-travel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.calc-travel-field label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
}

.calc-travel-field label svg { color: var(--color-primary); flex-shrink: 0; }

.calc-input-wrap {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
}

.calc-input-wrap:focus-within {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(8,145,178,0.1);
}

.calc-input-wrap input {
  flex: 1;
  border: none;
  outline: none;
  padding: 12px 14px;
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--color-text);
  background: transparent;
  min-width: 0;
}

.calc-input-unit {
  padding: 12px 14px;
  background: var(--color-bg-alt);
  color: var(--color-text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  border-left: 1px solid var(--color-border);
}

.calc-travel-total {
  text-align: center;
  padding: 14px 20px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--color-text);
}

.calc-travel-total strong { color: var(--color-primary-dark); }

/* Step 4: Results */
.calc-results-hero {
  text-align: center;
  padding: 40px 20px 32px;
  background: linear-gradient(135deg, rgba(5,150,105,0.06), rgba(8,145,178,0.06));
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
}

.calc-savings-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(5,150,105,0.1);
  border: 1px solid rgba(5,150,105,0.2);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-success);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.calc-savings-amount {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  font-weight: 800;
  color: var(--color-success);
  line-height: 1.1;
  margin-bottom: 8px;
  animation: calcPulse 0.6s ease-out;
}

@keyframes calcPulse {
  0% { transform: scale(0.8); opacity: 0; }
  60% { transform: scale(1.05); }
  100% { transform: scale(1); opacity: 1; }
}

.calc-savings-subtitle {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

/* Comparison Bars */
.calc-comparison {
  margin-bottom: 24px;
}

.calc-bar-group {
  margin-bottom: 16px;
}

.calc-bar-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}

.calc-bar-track {
  background: var(--color-border-light);
  border-radius: 100px;
  height: 42px;
  overflow: hidden;
}

.calc-bar {
  height: 100%;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 16px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  min-width: 80px;
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.calc-bar-home {
  background: linear-gradient(90deg, #ef4444, #dc2626);
}

.calc-bar-bl {
  background: linear-gradient(90deg, var(--color-primary), var(--color-success));
}

/* Breakdown */
.calc-breakdown {
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  padding: 20px;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.8;
}

.calc-breakdown-row {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
}

.calc-breakdown-row.total-row {
  border-top: 2px solid var(--color-border);
  margin-top: 8px;
  padding-top: 12px;
  font-weight: 700;
  color: var(--color-text);
}

.calc-breakdown-row.savings-row {
  color: var(--color-success);
  font-weight: 700;
  font-size: 1rem;
}

/* Column Headers */
.calc-col-headers {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 16px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-light);
  border-bottom: 1px solid var(--color-border-light);
  margin-bottom: 8px;
}

/* Share Box */
.calc-share-box {
  margin-top: 24px;
  padding: 20px;
  background: linear-gradient(135deg, var(--color-accent-light), rgba(254,243,199,0.5));
  border-radius: var(--radius-md);
  border: 1px solid rgba(217,119,6,0.15);
}

.calc-share-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 14px;
}

.calc-share-title svg { color: var(--color-accent); flex-shrink: 0; }

.calc-share-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.calc-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 60px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text);
  transition: all var(--transition);
}

.calc-share-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.calc-share-whatsapp { border-color: #25D366; color: #128C7E; }
.calc-share-whatsapp:hover { background: #25D366; color: #fff; }
.calc-share-whatsapp svg { color: #25D366; }
.calc-share-whatsapp:hover svg { color: #fff; }

.calc-share-viber { border-color: #7360F2; color: #59267c; }
.calc-share-viber:hover { background: #7360F2; color: #fff; }
.calc-share-viber svg { color: #7360F2; }
.calc-share-viber:hover svg { color: #fff; }

.calc-share-email { border-color: var(--color-primary); color: var(--color-primary-dark); }
.calc-share-email:hover { background: var(--color-primary); color: #fff; }
.calc-share-email svg { color: var(--color-primary); }
.calc-share-email:hover svg { color: #fff; }

.calc-share-copy { border-color: var(--color-text-light); }
.calc-share-copy:hover { background: var(--color-text); color: #fff; }
.calc-share-copy:hover svg { color: #fff; }

.calc-share-btn.copied {
  background: var(--color-success);
  border-color: var(--color-success);
  color: #fff;
}
.calc-share-btn.copied svg { color: #fff; }

/* Price Note in Results */
.calc-price-note {
  padding: 14px 16px;
  background: var(--color-primary-50);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--color-primary);
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.calc-price-note strong { color: var(--color-primary-dark); }

/* Breakdown Section Heading */
.calc-breakdown-heading {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-light);
  padding: 10px 0 6px;
  border-bottom: 1px solid var(--color-border-light);
  margin-bottom: 4px;
}

.calc-breakdown-heading:first-child { padding-top: 0; }

@media (max-width: 480px) {
  .calc-share-buttons { gap: 6px; }
  .calc-share-btn { padding: 8px 12px; font-size: 0.78rem; }
}

/* Navigation Buttons */
.calc-nav {
  display: flex;
  justify-content: space-between;
  padding: 20px 32px 28px;
  border-top: 1px solid var(--color-border-light);
}

.calc-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 60px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
}

.calc-prev {
  background: none;
  border-color: var(--color-border);
  color: var(--color-text-muted);
}
.calc-prev:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.calc-next {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.calc-next:hover:not(:disabled) {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(8,145,178,0.3);
}
.calc-next:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Responsive Calculator */
@media (max-width: 768px) {
  .calc-panel { padding: 24px 20px; }
  .calc-nav { padding: 16px 20px 24px; }
  .calc-steps-bar { padding: 20px 16px; gap: 0; flex-wrap: nowrap; }
  .calc-step-label { display: none; }
  .calc-step-line { width: 24px; margin: 0 6px; }
  .calc-location-grid { grid-template-columns: repeat(2, 1fr); }
  .calc-travel-grid { grid-template-columns: 1fr; }
  .calc-service-item { flex-wrap: wrap; }
  .calc-service-info { flex: 1; min-width: 0; }
  .calc-tooltip {
    left: auto;
    right: -10px;
    transform: none;
    width: 200px;
  }
  .calc-tooltip::after {
    left: auto;
    right: 16px;
    transform: none;
  }
}

@media (max-width: 480px) {
  .calc-steps-bar { padding: 16px 12px; }
  .calc-location-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .calc-location-btn { padding: 16px 12px; font-size: 0.85rem; }
  .calc-flag { font-size: 1.6rem; }
  .calc-service-item { padding: 10px 8px; }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .hero::after, .back-to-top, .search-wrapper, .cta-section { display: none; }
  .clinic-card { break-inside: avoid; box-shadow: none; border: 1px solid #ccc; }
  body { background: #fff; }
}
