/* Template 04 - Dentistry / Green Nature */
:root {
  --primary: #166534;
  --primary-light: #4d7c0f;
  --dark: #14532d;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: #334155;
  padding-top: 76px;
}

.navbar {
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%) !important;
  box-shadow: 0 4px 20px rgba(22, 101, 52, 0.3);
}

.navbar-brand, .nav-link {
  color: #fff !important;
}

.nav-link:hover {
  color: #86efac !important;
}

.hero-section {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  min-height: 85vh;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.min-vh-75 { min-height: 75vh; }

.icon-box {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
}

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(22, 101, 52, 0.2) !important;
}

@media (max-width: 991px) {
  body { padding-top: 56px; }
  .navbar-collapse {
    background: rgba(20, 83, 45, 0.98);
    padding: 1rem;
    border-radius: 12px;
    margin-top: 0.5rem;
  }
}
