/* ============================================================
   Arbour Behavioural Health Services - Main Stylesheet
   ============================================================ */

:root {
  --primary: #1a6b5e;
  --primary-dark: #134f45;
  --primary-light: #e8f5f2;
  --secondary: #f4a535;
  --secondary-dark: #d9891a;
  --accent: #5ba4a0;
  --text-dark: #1a2332;
  --text-muted: #6b7684;
  --bg-light: #f8fbfa;
  --bg-section: #f0f7f5;
  --white: #ffffff;
  --border: #d8e8e4;
  --shadow: 0 4px 24px rgba(26,107,94,0.10);
  --shadow-md: 0 8px 40px rgba(26,107,94,0.14);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Georgia', serif;
  line-height: 1.25;
  color: var(--text-dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; font-family: 'Inter', sans-serif; }

p { margin-bottom: 1rem; color: var(--text-muted); }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
}
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26,107,94,0.3); }
.btn-secondary { background: var(--secondary); color: var(--white); }
.btn-secondary:hover { background: var(--secondary-dark); color: var(--white); transform: translateY(-2px); }
.btn-outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-outline-white { background: transparent; border: 2px solid rgba(255,255,255,0.8); color: var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--primary); }
.btn-sm { padding: 0.5rem 1.1rem; font-size: 0.85rem; }
.btn-lg { padding: 0.95rem 2.2rem; font-size: 1.05rem; }

/* ---- Section Titles ---- */
.section-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}
.section-title { margin-bottom: 0.5rem; }
.section-lead { font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* ---- Alerts ---- */
.alert {
  padding: 1rem 1.4rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.alert-success { background: #e6f9f0; color: #1a7a4a; border-left: 4px solid #27ae60; }
.alert-error   { background: #fdf2f2; color: #c0392b; border-left: 4px solid #e74c3c; }
.alert-info    { background: #eaf4ff; color: #1a5c9a; border-left: 4px solid #2980b9; }

/* ---- Navbar ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  background: transparent;
  transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.navbar-brand { display: flex; align-items: center; gap: 0.75rem; }
.brand-icon {
  width: 44px; height: 44px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.brand-text { line-height: 1.1; }
.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition);
}
.navbar.scrolled .brand-name { color: var(--primary); }
.brand-sub { font-size: 0.7rem; color: rgba(255,255,255,0.75); letter-spacing: 0.08em; transition: color var(--transition); }
.navbar.scrolled .brand-sub { color: var(--text-muted); }

.nav-links { display: flex; align-items: center; gap: 0.25rem; list-style: none; }
.nav-links a {
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  transition: all var(--transition);
  font-family: 'Inter', sans-serif;
}
.navbar.scrolled .nav-links a { color: var(--text-dark); }
.nav-links a:hover,
.nav-links a.active { background: rgba(255,255,255,0.15); color: var(--white); }
.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active { background: var(--primary-light); color: var(--primary); }
.nav-links .btn-nav-cta {
  background: var(--secondary);
  color: white !important;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-weight: 600;
}
.nav-links .btn-nav-cta:hover { background: var(--secondary-dark) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--transition); }
.navbar.scrolled .hamburger span { background: var(--text-dark); }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0d4a3f 0%, #1a6b5e 45%, #2a8a7a 100%);
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.03) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(91,164,160,0.15) 0%, transparent 50%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 6rem 1.5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  color: rgba(255,255,255,0.9);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 span { color: var(--secondary); }
.hero-lead { font-size: 1.1rem; color: rgba(255,255,255,0.8); margin-bottom: 2rem; max-width: 520px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 2rem; margin-top: 3rem; }
.hero-stat { text-align: center; }
.hero-stat-num { font-size: 2rem; font-weight: 700; color: var(--white); font-family: 'Playfair Display', serif; }
.hero-stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.08em; }
.hero-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hero-card h3 { color: var(--white); font-size: 1.1rem; }
.hero-quick-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  color: rgba(255,255,255,0.9);
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
}
.hero-quick-link:hover { background: rgba(255,255,255,0.18); color: white; transform: translateX(4px); }
.hero-quick-link i { color: var(--secondary); width: 20px; text-align: center; }
.hero-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
}

/* ---- Trust Bar ---- */
.trust-bar {
  background: var(--white);
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
}
.trust-item i { color: var(--primary); font-size: 1.1rem; }

/* ---- Sections ---- */
.section { padding: 5rem 0; }
.section-alt { background: var(--bg-section); }
.section-dark { background: var(--primary); }
.text-center { text-align: center; }

/* ---- Service Cards ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  transition: all var(--transition);
}
.service-card:hover .service-icon { background: var(--primary); color: var(--white); }
.service-card h3 { margin-bottom: 0.6rem; font-size: 1.15rem; }
.service-card p { font-size: 0.92rem; margin: 0; }
.service-link { display: inline-flex; align-items: center; gap: 0.35rem; margin-top: 1rem; font-size: 0.88rem; font-weight: 600; color: var(--primary); }
.service-link i { transition: transform var(--transition); }
.service-card:hover .service-link i { transform: translateX(4px); }

/* ---- About Section ---- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-image-wrap { position: relative; }
.about-image-wrap img { border-radius: 20px; object-fit: cover; height: 480px; width: 100%; }
.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--white);
  border-radius: 16px;
  padding: 1.25rem 1.75rem;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.about-badge-num { font-size: 2.2rem; font-weight: 700; color: var(--primary); font-family: 'Playfair Display', serif; display: block; }
.about-badge-label { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }

.values-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.value-item { display: flex; align-items: flex-start; gap: 0.85rem; }
.value-icon { width: 32px; height: 32px; background: var(--primary-light); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 0.85rem; flex-shrink: 0; margin-top: 0.1rem; }
.value-item h4 { font-size: 0.95rem; font-family: 'Inter', sans-serif; font-weight: 600; margin-bottom: 0.15rem; }
.value-item p { font-size: 0.88rem; margin: 0; }

/* ---- Testimonials ---- */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.testimonial-stars { color: var(--secondary); margin-bottom: 1rem; font-size: 0.9rem; }
.testimonial-text { font-style: italic; font-size: 0.95rem; color: var(--text-muted); margin-bottom: 1.25rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 42px; height: 42px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
}
.testimonial-name { font-weight: 600; font-size: 0.9rem; color: var(--text-dark); }

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 4rem 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-banner p { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 2rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---- Team Cards ---- */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.75rem; margin-top: 2.5rem; }
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all var(--transition);
  text-align: center;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-photo {
  height: 220px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-photo .placeholder-icon { font-size: 4rem; color: var(--primary); opacity: 0.4; }
.team-info { padding: 1.5rem; }
.team-name { font-size: 1.05rem; margin-bottom: 0.2rem; }
.team-title { font-size: 0.82rem; color: var(--primary); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.75rem; }
.team-bio { font-size: 0.88rem; }

/* ---- Blog/News Cards ---- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.75rem; margin-top: 2.5rem; }
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-thumb {
  height: 200px;
  background: var(--primary-light);
  overflow: hidden;
  position: relative;
}
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition); }
.blog-card:hover .blog-thumb img { transform: scale(1.05); }
.blog-cat {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--primary);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
}
.blog-body { padding: 1.5rem; }
.blog-meta { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.6rem; }
.blog-card h3 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.blog-card h3 a { color: var(--text-dark); }
.blog-card h3 a:hover { color: var(--primary); }
.blog-excerpt { font-size: 0.9rem; margin: 0; }
.blog-read-more { display: inline-flex; align-items: center; gap: 0.35rem; margin-top: 1rem; font-size: 0.88rem; font-weight: 600; color: var(--primary); }

/* ---- Contact ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; margin-top: 2.5rem; }
.contact-info-card { background: var(--primary); border-radius: var(--radius); padding: 2.5rem; color: white; }
.contact-info-card h3 { color: white; margin-bottom: 1.5rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-detail-icon { width: 40px; height: 40px; background: rgba(255,255,255,0.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-detail-label { font-size: 0.75rem; opacity: 0.7; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.2rem; }
.contact-detail-value { font-weight: 500; }
.contact-form-card { background: var(--white); border-radius: var(--radius); padding: 2.5rem; box-shadow: var(--shadow); border: 1px solid var(--border); }

/* ---- Forms ---- */
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.4rem; font-family: 'Inter', sans-serif; }
label .req { color: #e74c3c; }
input[type=text], input[type=email], input[type=tel], input[type=date], input[type=time],
input[type=password], input[type=number], textarea, select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,107,94,0.12);
}
textarea { resize: vertical; min-height: 120px; }
select { cursor: pointer; }

/* ---- Page Header ---- */
.page-header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 8rem 0 4rem;
  text-align: center;
}
.page-header h1 { color: var(--white); margin-bottom: 0.5rem; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 0.5rem; font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-top: 0.75rem; }
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { color: rgba(255,255,255,0.4); }

/* ---- Footer ---- */
.footer { background: #0d2a24; color: rgba(255,255,255,0.7); padding-top: 4rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand { }
.footer-logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.footer-logo .brand-icon { background: var(--primary); }
.footer-logo .brand-name { color: var(--white); font-size: 1rem; }
.footer-logo .brand-sub { color: rgba(255,255,255,0.5); }
.footer p { font-size: 0.9rem; margin-bottom: 1rem; }
.footer-social { display: flex; gap: 0.5rem; }
.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}
.social-btn:hover { background: var(--primary); color: white; }
.footer h4 { color: var(--white); font-family: 'Inter', sans-serif; font-size: 0.9rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 1.25rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-contact-item { display: flex; gap: 0.75rem; margin-bottom: 0.85rem; font-size: 0.88rem; }
.footer-contact-item i { color: var(--secondary); margin-top: 0.2rem; flex-shrink: 0; }
.footer-bottom { padding: 1.25rem 0; display: flex; align-items: center; justify-content: space-between; font-size: 0.82rem; gap: 1rem; flex-wrap: wrap; }
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--white); }

/* ---- WhatsApp Floating Button ---- */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); color: white; box-shadow: 0 6px 28px rgba(37,211,102,0.5); }

/* ---- Appointment section ---- */
.appt-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 3rem; margin-top: 2.5rem; }
.appt-info { }
.appt-info-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.appt-info-icon { width: 44px; height: 44px; background: var(--primary-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.1rem; flex-shrink: 0; }
.appt-info-item h4 { font-size: 0.95rem; margin-bottom: 0.2rem; font-family: 'Inter', sans-serif; font-weight: 600; }
.appt-info-item p { font-size: 0.88rem; margin: 0; }
.appt-form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 2.5rem; box-shadow: var(--shadow); }

/* ---- Map ---- */
.map-wrap { border-radius: var(--radius); overflow: hidden; height: 350px; background: var(--bg-section); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }
.map-placeholder { height: 350px; background: var(--primary-light); display: flex; flex-direction: column; align-items: center; justify-content: center; border-radius: var(--radius); color: var(--primary); gap: 0.5rem; }
.map-placeholder i { font-size: 3rem; opacity: 0.5; }

/* ---- Content pages ---- */
.content-wrap { max-width: 820px; margin: 0 auto; }
.content-wrap h2 { margin: 2rem 0 0.75rem; }
.content-wrap h3 { margin: 1.5rem 0 0.5rem; }
.content-wrap ul, .content-wrap ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.content-wrap ul li, .content-wrap ol li { margin-bottom: 0.4rem; font-size: 0.97rem; color: var(--text-muted); }

/* ---- Empty state ---- */
.empty-state { text-align: center; padding: 4rem 2rem; color: var(--text-muted); }
.empty-state i { font-size: 3rem; opacity: 0.3; margin-bottom: 1rem; display: block; }

/* ---- Responsive ---- */
@media (max-width: 992px) {
  .hero-content { grid-template-columns: 1fr; gap: 2rem; }
  .hero-card { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image-wrap img { height: 320px; }
  .about-badge { right: 1rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .appt-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--primary-dark); flex-direction: column; justify-content: center; align-items: center; gap: 0.5rem; }
  .nav-links.open { display: flex; }
  .nav-links a { color: white !important; font-size: 1.1rem; padding: 0.75rem 2rem; width: 100%; text-align: center; }
  .hamburger { display: flex; z-index: 1100; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trust-bar-inner { gap: 1.5rem; }
}
@media (max-width: 480px) {
  .section { padding: 3rem 0; }
  .hero-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
}

/* ---- Animations ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeInUp 0.6s ease forwards; }

/* ---- Utility ---- */
.mb-0 { margin-bottom: 0 !important; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.fw-700 { font-weight: 700; }
.gap-1 { gap: 1rem; }
.d-flex { display: flex; }
.align-center { align-items: center; }
