/* ============================================
   Gdzie Zrobić Zęby w Turcji - Static Website
   Main Stylesheet
   ============================================ */

/* ============ CSS Variables ============ */
:root {
  /* Medical/Dental Turquoise Theme */
  --background: hsl(180, 20%, 99%);
  --foreground: hsl(200, 25%, 15%);

  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(200, 25%, 15%);

  --popover: hsl(0, 0%, 100%);
  --popover-foreground: hsl(200, 25%, 15%);

  /* Primary - Medical Turquoise */
  --primary: hsl(174, 72%, 40%);
  --primary-foreground: hsl(0, 0%, 100%);
  --primary-light: hsl(174, 72%, 40%, 0.1);
  --primary-hover: hsl(174, 72%, 35%);

  /* Secondary - Light Turquoise */
  --secondary: hsl(174, 45%, 94%);
  --secondary-foreground: hsl(174, 72%, 30%);

  --muted: hsl(180, 15%, 96%);
  --muted-foreground: hsl(200, 15%, 45%);
  --muted-bg: hsl(180, 15%, 96%, 0.3);

  /* Accent - Warm Gold for CTAs */
  --accent: hsl(38, 92%, 50%);
  --accent-foreground: hsl(0, 0%, 100%);

  --destructive: hsl(0, 84%, 60%);
  --destructive-foreground: hsl(0, 0%, 100%);

  --success: hsl(145, 65%, 42%);
  --success-foreground: hsl(0, 0%, 100%);
  --success-light: hsl(145, 65%, 42%, 0.1);

  --border: hsl(180, 20%, 90%);
  --input: hsl(180, 20%, 90%);
  --ring: hsl(174, 72%, 40%);

  --radius: 0.75rem;
  --radius-sm: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.25rem;

  /* Shadows */
  --card-shadow: 0 4px 20px -4px hsl(174, 72%, 40%, 0.15);
  --card-shadow-hover: 0 8px 30px -4px hsl(174, 72%, 40%, 0.25);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --container-max: 1200px;
  --container-padding: 1.5rem;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

/* ============ Container ============ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ============ Typography ============ */
.font-heading { font-family: var(--font-heading); }
.font-body { font-family: var(--font-body); }

.text-foreground { color: var(--foreground); }
.text-muted { color: var(--muted-foreground); }
.text-primary { color: var(--primary); }
.text-success { color: var(--success); }
.text-destructive { color: var(--destructive); }

.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.text-center { text-align: center; }
.leading-relaxed { line-height: 1.7; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
}

.btn-outline {
  background-color: transparent;
  color: var(--foreground);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  background-color: var(--muted);
}

.btn-ghost {
  background-color: transparent;
  color: var(--primary);
}

.btn-ghost:hover {
  background-color: var(--primary-light);
}

.btn-lg {
  padding: 0.875rem 2rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}

.btn-icon {
  padding: 0.5rem;
  width: 2.5rem;
  height: 2.5rem;
}

/* ============ Cards ============ */
.card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--card-shadow);
}

.card:hover {
  box-shadow: var(--card-shadow-hover);
}

/* ============ Badges ============ */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 9999px;
}

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

.badge-secondary {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
}

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

.badge-outline {
  background-color: transparent;
  border: 1px solid var(--border);
  color: var(--foreground);
}

/* ============ Forms ============ */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-family: inherit;
  color: var(--foreground);
  background-color: var(--background);
  border: 1px solid var(--input);
  border-radius: var(--radius);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--muted-foreground);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-checkbox input[type="checkbox"] {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.125rem;
  accent-color: var(--primary);
}

.form-error {
  color: var(--destructive);
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

/* ============ Header ============ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: hsl(0, 0%, 100%, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid hsl(180, 20%, 90%, 0.5);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-radius: var(--radius);
  font-size: 1.25rem;
  transition: transform 0.2s ease;
}

.logo:hover .logo-icon {
  transform: scale(1.05);
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
}

.nav-desktop {
  display: none;
  gap: 0.25rem;
}

.nav-link {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  border-radius: var(--radius);
  transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-link:hover {
  color: var(--foreground);
  background-color: var(--muted);
}

.nav-link.active {
  color: var(--primary);
  background-color: var(--primary-light);
}

/* Nav Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  border-radius: var(--radius);
  transition: color 0.2s ease, background-color 0.2s ease;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}

.nav-dropdown-toggle:hover {
  color: var(--foreground);
  background-color: var(--muted);
}

.nav-dropdown-toggle.active {
  color: var(--primary);
  background-color: var(--primary-light);
}

.nav-dropdown-toggle svg {
  width: 0.75rem;
  height: 0.75rem;
  transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle svg,
.nav-dropdown.open .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  max-height: 400px;
  overflow-y: auto;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.15);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--foreground);
  border-radius: var(--radius-sm);
  transition: background-color 0.15s ease;
}

.nav-dropdown-item:hover {
  background-color: var(--primary-light);
  color: var(--primary);
}

.nav-dropdown-item .clinic-city {
  font-size: 0.6875rem;
  font-weight: 400;
  color: var(--muted-foreground);
  margin-left: auto;
}

.nav-dropdown-divider {
  height: 1px;
  background-color: var(--border);
  margin: 0.5rem 0;
}

.nav-dropdown-all {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
  border-radius: var(--radius-sm);
  transition: background-color 0.15s ease;
}

.nav-dropdown-all:hover {
  background-color: var(--primary-light);
}

.nav-dropdown-all svg {
  width: 0.75rem;
  height: 0.75rem;
}

/* Mobile dropdown */
.mobile-nav-dropdown {
  margin-bottom: 0.5rem;
}

.mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  border-radius: var(--radius);
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  text-align: left;
}

.mobile-dropdown-toggle:hover,
.mobile-dropdown-toggle.active {
  color: var(--primary);
  background-color: var(--primary-light);
}

.mobile-dropdown-toggle svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s ease;
}

.mobile-nav-dropdown.open .mobile-dropdown-toggle svg {
  transform: rotate(180deg);
}

.mobile-dropdown-menu {
  display: none;
  padding: 0.5rem 0 0.5rem 1rem;
  max-height: 300px;
  overflow-y: auto;
}

.mobile-nav-dropdown.open .mobile-dropdown-menu {
  display: block;
}

.mobile-dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--foreground);
  border-radius: var(--radius-sm);
}

.mobile-dropdown-item:hover {
  background-color: var(--primary-light);
  color: var(--primary);
}

.mobile-dropdown-item .clinic-city {
  font-size: 0.6875rem;
  color: var(--muted-foreground);
}

.mobile-dropdown-all {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
  border-radius: var(--radius-sm);
  margin-top: 0.25rem;
}

.mobile-dropdown-all:hover {
  background-color: var(--primary-light);
}

.header-cta {
  display: none;
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: none;
  color: var(--foreground);
  cursor: pointer;
}

.mobile-menu-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--border);
  background-color: var(--background);
  padding: 1rem;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  border-radius: var(--radius);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--primary);
  background-color: var(--primary-light);
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }

  .header-cta {
    display: block;
  }

  .mobile-menu-btn {
    display: none;
  }

  .logo-text {
    display: inline-block;
  }
}

@media (max-width: 640px) {
  .logo-text {
    display: none;
  }
}

/* ============ Footer ============ */
.footer {
  border-top: 1px solid var(--border);
  background-color: var(--muted-bg);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 3rem 0;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 1rem;
  line-height: 1.6;
}

.footer-section h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.footer-section ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-section a,
.footer-section span {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.footer-section a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.footer-bottom .disclaimer {
  font-size: 0.75rem;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* ============ Hero Section ============ */
.hero {
  position: relative;
  padding: 4rem 0;
  background: linear-gradient(135deg, hsl(174, 72%, 40%, 0.08) 0%, hsl(180, 20%, 99%) 50%, hsl(38, 92%, 50%, 0.05) 100%);
  overflow: hidden;
}

.hero-decoration-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 24rem;
  height: 24rem;
  background-color: var(--primary-light);
  border-radius: 50%;
  transform: translate(50%, -50%);
  filter: blur(60px);
}

.hero-decoration-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 16rem;
  height: 16rem;
  background-color: hsl(38, 92%, 50%, 0.05);
  border-radius: 50%;
  transform: translate(-50%, 50%);
  filter: blur(60px);
}

.hero-content {
  position: relative;
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: var(--primary-light);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}

.hero-badge .pulse {
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero h1 {
  font-size: 2.25rem;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.hero h1 .highlight {
  color: var(--primary);
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.hero-stat {
  text-align: center;
}

.hero-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
}

.hero-stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .hero {
    padding: 6rem 0;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .hero-stat-value {
    font-size: 1.875rem;
  }
}

@media (min-width: 1024px) {
  .hero {
    padding: 8rem 0;
  }

  .hero h1 {
    font-size: 3.75rem;
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* ============ Sections ============ */
.section {
  padding: 4rem 0;
}

.section-muted {
  background-color: var(--muted-bg);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 1.875rem;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .section {
    padding: 6rem 0;
  }

  .section-header h2 {
    font-size: 2.25rem;
  }
}

/* ============ Clinics Table ============ */
.clinics-table-wrapper {
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background-color: var(--card);
  box-shadow: var(--card-shadow);
}

.clinics-table {
  width: 100%;
  border-collapse: collapse;
}

.clinics-table th {
  text-align: left;
  padding: 1rem 1.5rem;
  font-weight: 600;
  color: var(--foreground);
  background-color: hsl(180, 15%, 96%, 0.5);
  border-bottom: 1px solid var(--border);
}

.clinics-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid hsl(180, 20%, 90%, 0.5);
  vertical-align: middle;
}

.clinics-table tbody tr:last-child td {
  border-bottom: none;
}

.clinics-table tbody tr:hover {
  background-color: hsl(180, 15%, 96%, 0.3);
}

.clinic-name {
  font-weight: 600;
  color: var(--foreground);
}

.clinic-name:hover {
  color: var(--primary);
}

.clinic-region {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.clinic-city {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.clinic-city svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
}

.clinic-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.clinic-rating svg {
  width: 1rem;
  height: 1rem;
  color: var(--accent);
  fill: var(--accent);
}

.clinic-rating span {
  font-weight: 600;
}

.clinic-rating .count {
  font-weight: 400;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.clinic-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

.clinic-prices {
  font-size: 0.875rem;
}

.clinic-prices .price {
  font-weight: 500;
  color: var(--foreground);
}

.clinic-prices .label {
  color: var(--muted-foreground);
}

/* Desktop table hidden on mobile */
.clinics-table-desktop {
  display: none;
}

/* Mobile cards */
.clinics-cards {
  display: grid;
  gap: 1rem;
}

.clinic-card {
  display: block;
  padding: 1.25rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background-color: var(--card);
  box-shadow: var(--card-shadow);
  transition: box-shadow 0.2s ease;
}

.clinic-card:hover {
  box-shadow: var(--card-shadow-hover);
}

.clinic-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.clinic-card-title {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.clinic-card-location {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.clinic-card-location svg {
  width: 0.875rem;
  height: 0.875rem;
}

.clinic-card-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  background-color: hsl(38, 92%, 50%, 0.1);
  border-radius: var(--radius);
}

.clinic-card-rating svg {
  width: 1rem;
  height: 1rem;
  color: var(--accent);
  fill: var(--accent);
}

.clinic-card-rating span {
  font-weight: 600;
  color: var(--foreground);
}

.clinic-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
}

.clinic-card-footer .more {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--primary);
  font-weight: 500;
}

.clinic-card-footer .more svg {
  width: 0.875rem;
  height: 0.875rem;
}

@media (min-width: 1024px) {
  .clinics-table-desktop {
    display: block;
  }

  .clinics-cards {
    display: none;
  }
}

/* ============ Filters ============ */
.filters {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
}

@media (min-width: 768px) {
  .filters {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.5rem;
  }
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  width: 100%;
}

@media (min-width: 768px) {
  .filter-group {
    width: auto;
    min-width: 150px;
  }
}

.filter-group label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.filter-group select,
.filter-group input {
  padding: 0.625rem 0.75rem;
  font-size: 1rem;
  border: 1px solid var(--input);
  border-radius: var(--radius);
  background-color: var(--background);
  color: var(--foreground);
}

@media (min-width: 768px) {
  .filter-group select,
  .filter-group input {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
  }
}

.filter-group select:focus,
.filter-group input:focus {
  outline: none;
  border-color: var(--primary);
}

.search-box,
.search-input {
  flex: 1;
  width: 100%;
  position: relative;
}

.search-input svg {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted-foreground);
  pointer-events: none;
  margin-top: 0.75rem;
}

.search-input input {
  padding-left: 2.5rem;
}

@media (min-width: 768px) {
  .search-box,
  .search-input {
    min-width: 200px;
    width: auto;
  }
}

.search-box input {
  width: 100%;
  padding: 0.625rem 0.75rem 0.625rem 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.3-4.3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 0.75rem center;
}

@media (min-width: 768px) {
  .search-box input {
    padding: 0.5rem 0.75rem 0.5rem 2.5rem;
  }
}

.filter-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
}

@media (min-width: 768px) {
  .filter-checkbox {
    padding-top: 1.25rem;
  }
}

.filter-checkbox input {
  width: 1.25rem;
  height: 1.25rem;
  accent-color: var(--primary);
}

@media (min-width: 768px) {
  .filter-checkbox input {
    width: 1rem;
    height: 1rem;
  }
}

.filter-checkbox label {
  font-size: 0.875rem;
  color: var(--foreground);
  text-transform: none;
  letter-spacing: normal;
}

.clinics-count {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  padding: 0.5rem 0;
}

/* Clinics section */
.clinics-section {
  padding: 2rem 0 4rem;
}

/* Table container for kliniki page */
.table-container {
  display: none;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background-color: var(--card);
  box-shadow: var(--card-shadow);
}

@media (min-width: 1024px) {
  .table-container {
    display: block;
  }
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table th {
  text-align: left;
  padding: 1rem 1rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--foreground);
  background-color: hsl(180, 15%, 96%, 0.5);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

.table td {
  padding: 1rem 1rem;
  border-bottom: 1px solid hsl(180, 20%, 90%, 0.5);
  vertical-align: middle;
}

.table tbody tr:last-child td {
  border-bottom: none;
}

.table tbody tr:hover {
  background-color: hsl(180, 15%, 96%, 0.3);
}

/* Clinic cards for kliniki page (mobile) */
.clinic-cards {
  display: grid;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .clinic-cards {
    display: none;
  }
}

/* ============ Price Comparison Table ============ */
.price-table-wrapper {
  max-width: 56rem;
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background-color: var(--card);
  box-shadow: var(--card-shadow);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table th {
  text-align: left;
  padding: 1rem 1.5rem;
  font-weight: 600;
  color: var(--foreground);
  background-color: hsl(174, 72%, 40%, 0.05);
  border-bottom: 1px solid var(--border);
}

.price-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid hsl(180, 20%, 90%, 0.5);
}

.price-table tbody tr:last-child td {
  border-bottom: none;
}

.price-table tbody tr:hover {
  background-color: hsl(180, 15%, 96%, 0.3);
}

.price-turkey {
  color: var(--primary);
  font-weight: 600;
}

.price-poland {
  color: var(--muted-foreground);
}

.savings-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.625rem;
  background-color: var(--success-light);
  color: var(--success);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 9999px;
}

.price-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 1.5rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

/* ============ Testimonials ============ */
.testimonials-grid {
  display: grid;
  gap: 1.5rem;
}

.testimonial-card {
  position: relative;
  padding: 1.5rem;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--card-shadow);
  transition: box-shadow 0.2s ease;
}

.testimonial-card:hover {
  box-shadow: var(--card-shadow-hover);
}

.testimonial-quote-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 2rem;
  height: 2rem;
  color: var(--primary-light);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-stars svg {
  width: 1rem;
  height: 1rem;
  fill: var(--accent);
  color: var(--accent);
}

.testimonial-text {
  color: var(--foreground);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.testimonial-name {
  font-weight: 600;
  color: var(--foreground);
}

.testimonial-details {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.testimonial-verified {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--success);
  font-size: 0.875rem;
}

.testimonial-verified svg {
  width: 1rem;
  height: 1rem;
}

.testimonials-summary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background-color: var(--muted);
  border-radius: 9999px;
  margin-top: 3rem;
}

.testimonials-summary .stars {
  display: flex;
  gap: 0.125rem;
}

.testimonials-summary .stars svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: var(--accent);
  color: var(--accent);
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============ Trust Section ============ */
.trust-grid {
  display: grid;
  gap: 1.5rem;
}

.trust-item {
  padding: 1.5rem;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  transition: border-color 0.2s ease;
}

.trust-item:hover {
  border-color: hsl(174, 72%, 40%, 0.3);
}

.trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: var(--primary-light);
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.trust-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.trust-item h3 {
  font-size: 1.125rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.trust-item p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

@media (min-width: 640px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============ How To Choose Section ============ */
.how-to-content {
  max-width: 48rem;
  margin: 0 auto;
}

.how-to-intro {
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.how-to-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.how-to-step {
  display: flex;
  gap: 1rem;
}

.step-number {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background-color: var(--primary-light);
  color: var(--primary);
  font-weight: 600;
  border-radius: 50%;
}

.step-content h3 {
  font-size: 1.125rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.step-content p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* ============ FAQ Section ============ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 48rem;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item.open {
  border-color: hsl(174, 72%, 40%, 0.3);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question svg {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--muted-foreground);
  transition: transform 0.2s ease;
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ============ Clinic Detail Page ============ */
.breadcrumb {
  background-color: var(--muted-bg);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}

.breadcrumb a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb svg {
  width: 1rem;
  height: 1rem;
}

.clinic-hero {
  padding: 2rem 0 3rem;
  background-color: var(--muted-bg);
}

.clinic-hero-content {
  display: grid;
  gap: 2rem;
}

.clinic-info h1 {
  font-size: 1.875rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.clinic-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.clinic-meta-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.clinic-meta-item svg {
  width: 1rem;
  height: 1rem;
}

.clinic-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.clinic-rating-box {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
}

.clinic-rating-stars {
  display: flex;
  gap: 0.125rem;
}

.clinic-rating-stars svg {
  width: 1.25rem;
  height: 1.25rem;
}

.clinic-rating-stars svg.filled {
  fill: var(--accent);
  color: var(--accent);
}

.clinic-rating-stars svg.empty {
  color: var(--muted);
}

.clinic-rating-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
}

.clinic-rating-max {
  color: var(--muted-foreground);
}

.clinic-rating-count {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.clinic-cta-card {
  padding: 1.5rem;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--card-shadow);
}

.clinic-cta-card h3 {
  font-size: 1.125rem;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.clinic-prices-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.clinic-price-row {
  display: flex;
  justify-content: space-between;
}

.clinic-price-row .label {
  color: var(--muted-foreground);
}

.clinic-price-row .value {
  font-weight: 600;
  color: var(--foreground);
}

.clinic-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .clinic-info h1 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .clinic-hero-content {
    grid-template-columns: 1fr 20rem;
  }

  .clinic-cta-card {
    position: sticky;
    top: 6rem;
  }
}

.clinic-details {
  padding: 3rem 0 4rem;
}

.clinic-details-grid {
  display: grid;
  gap: 2rem;
}

.clinic-main-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.clinic-section h2 {
  font-size: 1.5rem;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.clinic-section p {
  color: var(--muted-foreground);
  line-height: 1.7;
}

.services-list {
  display: grid;
  gap: 0.75rem;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.service-item svg {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  margin-top: 0.125rem;
}

.advantages-grid {
  display: grid;
  gap: 1rem;
}

.advantage-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background-color: hsl(180, 15%, 96%, 0.5);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.advantage-item svg {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  margin-top: 0.125rem;
}

.clinic-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-card {
  padding: 1.5rem;
  background-color: var(--muted-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
}

.sidebar-card h3 {
  font-size: 1rem;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.sidebar-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.sidebar-card-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.feature-item svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
}

.sidebar-cta {
  background-color: hsl(174, 72%, 40%, 0.05);
  border-color: hsl(174, 72%, 40%, 0.2);
}

.sidebar-cta p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .services-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .clinic-details-grid {
    grid-template-columns: 1fr 20rem;
  }
}

/* ============ Contact Page ============ */
.contact-grid {
  display: grid;
  gap: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  padding: 1.5rem;
  background-color: var(--muted-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
}

.contact-card h3 {
  font-size: 1.125rem;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact-item svg {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  margin-top: 0.125rem;
}

.contact-item .label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.contact-item .value {
  color: var(--foreground);
}

.contact-item a:hover {
  color: var(--primary);
}

.contact-highlight {
  background-color: hsl(174, 72%, 40%, 0.05);
  border-color: hsl(174, 72%, 40%, 0.2);
}

.contact-gdpr {
  padding: 1rem;
  background-color: hsl(180, 15%, 96%, 0.5);
  border-radius: var(--radius);
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 2fr 1fr;
  }
}

/* ============ Metodologia & O Nas Pages ============ */
.page-hero {
  padding: 3rem 0 4rem;
  background-color: var(--muted-bg);
}

.page-hero h1 {
  font-size: 1.875rem;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 48rem;
}

@media (min-width: 768px) {
  .page-hero h1 {
    font-size: 2.25rem;
  }

  .page-hero {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .page-hero h1 {
    font-size: 3rem;
  }
}

.criteria-grid {
  display: grid;
  gap: 1.5rem;
}

.criteria-card {
  padding: 1.5rem;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  transition: border-color 0.2s ease;
}

.criteria-card:hover {
  border-color: hsl(174, 72%, 40%, 0.3);
}

.criteria-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: var(--primary-light);
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.criteria-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.criteria-card h3 {
  font-size: 1.125rem;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.criteria-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .criteria-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.content-section {
  max-width: 48rem;
  margin: 0 auto;
}

.content-section h2 {
  font-size: 1.5rem;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.content-section p {
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.content-section p:last-child {
  margin-bottom: 0;
}

.highlight-box {
  padding: 2rem;
  background-color: hsl(174, 72%, 40%, 0.05);
  border: 1px solid hsl(174, 72%, 40%, 0.2);
  border-radius: var(--radius-xl);
}

.highlight-box h2 {
  font-size: 1.5rem;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.highlight-box p {
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 0;
}

.section-with-icon {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: var(--primary-light);
  border-radius: var(--radius);
}

.section-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.section-with-icon h2 {
  margin-bottom: 0;
}

.cta-box {
  margin-top: 2.5rem;
  padding: 1.5rem;
  background-color: hsl(174, 72%, 40%, 0.05);
  border: 1px solid hsl(174, 72%, 40%, 0.2);
  border-radius: var(--radius-xl);
}

.cta-box h3 {
  font-size: 1.125rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.cta-box p {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

/* ============ Dialog/Modal ============ */
.dialog-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 100;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.dialog-overlay.open {
  display: flex;
}

.dialog {
  width: 100%;
  max-width: 425px;
  background-color: var(--card);
  border-radius: var(--radius-xl);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  animation: dialogIn 0.2s ease-out;
}

@keyframes dialogIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.dialog-header {
  padding: 1.5rem 1.5rem 0;
}

.dialog-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.dialog-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.dialog-content {
  padding: 1.5rem;
}

.dialog-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--muted-foreground);
  cursor: pointer;
  border-radius: var(--radius);
}

.dialog-close:hover {
  background-color: var(--muted);
}

/* ============ Toast Notifications ============ */
.toast-container {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.toast {
  padding: 1rem 1.5rem;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  animation: toastIn 0.3s ease-out;
  max-width: 350px;
}

.toast-success {
  border-left: 4px solid var(--success);
}

.toast-error {
  border-left: 4px solid var(--destructive);
}

.toast-title {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.toast-message {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ============ Utilities ============ */
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }

.w-full { width: 100%; }

.hidden { display: none; }

/* ============ Content Sections ============ */
.content-section {
  max-width: 900px;
  margin: 0 auto;
}

.content-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.content-section h3 {
  font-size: 1.5rem;
  color: var(--foreground);
  margin: 2.5rem 0 1.5rem;
  text-align: center;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: var(--card-shadow);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--primary);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.benefit-card h4 {
  font-size: 1.1rem;
  color: var(--foreground);
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
}

.benefit-card p {
  font-size: 0.95rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Criteria List */
.criteria-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.criteria-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: var(--card-shadow);
}

.criteria-item:hover {
  border-color: var(--primary);
  box-shadow: var(--card-shadow-hover);
}

.criteria-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  color: var(--primary-foreground);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  font-family: var(--font-heading);
}

.criteria-content h4 {
  font-size: 1.15rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.criteria-content p {
  font-size: 0.95rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 0;
}

.criteria-content strong {
  color: var(--primary);
}

/* ============ Guide Content Section ============ */
.guide-content {
  max-width: 900px;
  margin: 0 auto;
}

.guide-content h3 {
  font-size: 1.5rem;
  color: var(--foreground);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-light);
}

.guide-content h4 {
  font-size: 1.15rem;
  color: var(--foreground);
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}

.guide-content p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.recommended-clinics {
  display: grid;
  gap: 1.25rem;
  margin: 1.5rem 0;
}

@media (min-width: 768px) {
  .recommended-clinics {
    grid-template-columns: repeat(2, 1fr);
  }
}

.recommended-clinic {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

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

.recommended-clinic h4 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  color: var(--primary);
}

.recommended-clinic p {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: var(--muted-foreground);
}

.tips-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0;
}

.tip-item {
  background: var(--secondary);
  border-left: 4px solid var(--primary);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.tip-item strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--foreground);
}

.guide-summary {
  background: linear-gradient(135deg, var(--primary-light), var(--secondary));
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-top: 2.5rem;
  text-align: center;
}

.guide-summary p {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

/* ============ Responsive Utilities ============ */
@media (min-width: 640px) {
  .sm\:inline { display: inline; }
}

@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
}

@media (min-width: 1024px) {
  .lg\:block { display: block; }
  .lg\:hidden { display: none; }
}

/* ============ Print Styles ============ */
@media print {
  .header,
  .footer,
  .btn,
  .filters {
    display: none !important;
  }

  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }
}
