/* Pure Clean Modern Airey Healthcare Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

:root {
  --text-main: #0f172a;
  --text-muted: #475569;
  --bg-page: #ffffff;
  --bg-surface: #f8fafc;
  --border-light: #e2e8f0;
  --border-dark: #0f172a;
}

body {
  font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #ffffff;
  color: #0f172a;
  line-height: 1.6;
}

/* Typography Enhancements */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #0f172a;
  letter-spacing: -0.02em;
}

p, li, span, input, textarea, select {
  font-family: 'Inter', sans-serif;
}

/* Clean Header */
.clean-nav {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #e2e8f0;
}

/* Photo Gallery Item Hover */
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px -6px rgba(15, 23, 42, 0.1);
}

.gallery-card img {
  transition: transform 0.35s ease;
}

.gallery-card:hover img {
  transform: scale(1.04);
}

/* Clean Button Hover Effects */
.btn-primary {
  background-color: #0f172a;
  color: #ffffff;
  transition: background-color 0.2s ease, transform 0.15s ease;
}
.btn-primary:hover {
  background-color: #1e293b;
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: #ffffff;
  color: #0f172a;
  border: 1px solid #cbd5e1;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.btn-secondary:hover {
  background-color: #f8fafc;
  border-color: #0f172a;
}

/* Accordion Transition */
.faq-content {
  transition: all 0.25s ease-in-out;
}

/* Lightbox Modal */
#gallery-modal {
  transition: opacity 0.25s ease;
}

/* Mobile Drawer */
#mobile-drawer {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Minimal Custom Scrollbar */
::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}
::-webkit-scrollbar-track {
  background: #f8fafc;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}
