/* Clinic Styles */
:root {
  --primary-color: #0ea5e9;
  --secondary-color: #0284c7;
  --text-main: #334155;
  --text-muted: #64748b;
  --bg-main: #f0f9ff;
  --font-family: 'Prompt', sans-serif;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
}

.navbar {
  padding: 1.5rem 0;
  background: white;
  box-shadow: var(--shadow-sm);
  position: sticky;
  width: 100%;
  top: 0;
  z-index: 100;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.logo span {
  color: var(--text-main);
}

.nav-links a {
  margin-left: 1.5rem;
  color: var(--text-main);
  font-weight: 500;
}

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

.hero {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #e0f2fe;
  color: var(--primary-color);
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-text h1 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: #0f172a;
  line-height: 1.3;
}

.hero-text p {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 8px solid white;
}

.hero-image::after {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background-image: radial-gradient(#0ea5e9 2px, transparent 2px);
  background-size: 20px 20px;
  z-index: -1;
}

.services {
  background-color: white;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: white;
  border: 1px solid #e2e8f0;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: #bae6fd;
}

.service-card .icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1.5rem;
  background: #f0f9ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--primary-color);
}

.service-card h3 {
  color: #0f172a;
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
