/* bundled app.css — generated by scripts/build-assets.mjs */

/* tokens.css */
@font-face {
  font-family: "Roboto";
  src: url("/fonts/roboto.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}
:root {
  --blue: #1f2e54;
  --blue-soft: #2a3f6b;
  --teal: #24b6b6;
  --teal-dark: #1c9a9a;
  --teal-soft: rgba(36, 182, 182, 0.12);
  --bg-light: #f0fafb;
  --gray: #6a9296;
  --text: #283042;
  --text-muted: #6b7280;
  --white: #ffffff;
  --black: #111111;
  --border: #e5e7eb;
  --font: "Roboto", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --container: 1200px;
  --radius: 10px;
  --radius-lg: 18px;
  --shadow: 0 10px 30px rgba(34, 62, 118, 0.08);
  --shadow-card: 0 6px 24px rgba(0, 0, 0, 0.06);
  --transition: 0.3s ease-in-out;
}

/* base.css */
*,
*::before,
*::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img, picture, video { max-width: 100%; display: block; }
a { color: var(--teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue); }
h1, h2, h3, h4 { line-height: 1.2; color: var(--blue); font-weight: 700; }
ul { list-style: none; padding: 0; }
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 1000;
  background: var(--blue); color: #fff; padding: 10px 18px; border-radius: 0 0 10px 10px;
  font-weight: 600; transition: top 0.2s ease;
}
.skip-link:focus { top: 0; color: #fff; outline: 2px solid var(--teal); }
:focus-visible { outline: 2px solid var(--teal); outline-offset: 2px; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-align: center;
}
.btn-primary { background: var(--teal); color: var(--white); }
.btn-primary:hover { background: var(--blue); color: var(--white); }
.btn-secondary { background: var(--blue); color: var(--white); }
.btn-secondary:hover { background: var(--teal); color: var(--white); }
.btn-outline { background: transparent; border-color: var(--teal); color: var(--teal); }
.btn-outline:hover { background: var(--teal); color: var(--white); }
.section { padding: 80px 0; }
.section-light { background: var(--bg-light); }
.section-title { font-size: 34px; margin-bottom: 16px; }
.section-eyebrow {
  color: var(--teal);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 8px;
}
.text-center { text-align: center; }
.lead { color: var(--text-muted); font-size: 17px; }
.flash {
  padding: 14px 18px;
  border-radius: var(--radius);
  margin: 16px 0;
  font-weight: 500;
}
.flash-success { background: #e6f7ee; color: #176b43; border: 1px solid #b7e4cd; }
.flash-error { background: #fde8e8; color: #9b2c2c; border: 1px solid #f5c2c2; }
.pagination { display: flex; gap: 8px; justify-content: center; margin: 40px 0 0; flex-wrap: wrap; }
.pagination a, .pagination span {
  padding: 9px 15px; border-radius: 8px; border: 1px solid var(--border);
  color: var(--blue); font-weight: 600; font-size: 14px;
}
.pagination .current { background: var(--teal); color: var(--white); border-color: var(--teal); }
.pagination a:hover { background: var(--bg-light); }
@media (max-width: 991px) {
  .section { padding: 56px 0; }
  .section-title { font-size: 28px; }
}
@media (max-width: 767px) {
  .section { padding: 44px 0; }
  .section-title { font-size: 24px; }
}

/* public.css */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo img { height: 48px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav ul { display: flex; gap: 26px; align-items: center; }
.main-nav a { color: var(--blue); font-weight: 600; font-size: 15px; }
.main-nav a:hover, .main-nav a.active { color: var(--teal); }
.header-phone { display: inline-flex; align-items: center; gap: 12px; color: var(--blue); font-weight: 700; font-size: 18px; }
.header-phone .phone-icon {
  width: 46px; height: 46px; border-radius: 50%; background: var(--teal-soft);
  color: var(--teal); display: flex; align-items: center; justify-content: center; font-size: 17px;
  transition: all var(--transition);
}
.header-phone:hover { color: var(--teal); }
.header-phone:hover .phone-icon { background: var(--teal); color: #fff; }
.nav-toggle { display: none; background: none; border: 0; font-size: 24px; color: var(--blue); cursor: pointer; }
.site-footer { background: var(--blue); color: rgba(255, 255, 255, 0.85); margin-top: 60px; }
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 32px;
  padding: 56px 20px 40px;
}
.footer-col h4 { color: var(--white); font-size: 18px; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { color: rgba(255, 255, 255, 0.8); }
.footer-col a:hover { color: var(--teal); }
.footer-brand img { height: 52px; margin-bottom: 14px; }
.footer-brand p { margin-bottom: 18px; max-width: 320px; }
.footer-contact h4 { margin-bottom: 10px; }
.footer-email, .footer-phone { display: block; margin-bottom: 6px; color: var(--white); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px; border-top: 1px solid rgba(255, 255, 255, 0.12); flex-wrap: wrap; gap: 14px;
}
.footer-bottom p { font-size: 14px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%; background: rgba(255, 255, 255, 0.12);
  display: flex; align-items: center; justify-content: center; color: var(--white);
}
.footer-social a:hover { background: var(--teal); }
.hero { background: var(--white); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; padding: 50px 20px 60px; }
.hero-badge-row { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.hero-badge-new {
  background: var(--teal); color: #fff; font-weight: 700; font-size: 13px;
  letter-spacing: .5px; padding: 6px 16px; border-radius: 40px;
}
.hero-badge-text { color: var(--gray); font-weight: 500; font-size: 16px; }
.hero-left h1 {
  font-size: 56px; line-height: 1.08; font-weight: 800; color: var(--blue);
  letter-spacing: -0.5px; margin-bottom: 22px;
}
.hero-left p { color: var(--text-muted); font-size: 17px; line-height: 1.7; margin-bottom: 34px; max-width: 600px; }
.hero-right { position: relative; }
.hero-photo { position: relative; max-width: 480px; margin: 0 auto; will-change: transform; transition: transform 0.25s ease-out; }
.hero-photo .hero-img { width: 100%; height: auto; display: block; position: relative; z-index: 2; }
.hero-disc {
  position: absolute; width: 96%; height: 0; padding-bottom: 96%; left: 2%; top: 4%;
  border-radius: 50%; z-index: 0;
  background: radial-gradient(circle, #d6f2f2 0%, #e9fafa 55%, rgba(233,250,250,0) 71%);
}
.hero-ring { position: absolute; border-radius: 50%; z-index: 0; pointer-events: none; }
.hero-ring-1 { width: 92%; height: 92%; left: 4%; top: 3%; border: 2px solid rgba(36, 182, 182, 0.18); }
.hero-ring-2 { width: 76%; height: 76%; left: 12%; top: 11%; border: 2px dashed rgba(36, 182, 182, 0.16); }
.hero-dot { position: absolute; border-radius: 50%; background: var(--teal); z-index: 0; opacity: 0.5; }
.hero-dot-1 { width: 12px; height: 12px; top: 8%; left: 14%; animation: floatY 4s ease-in-out infinite; }
.hero-dot-2 { width: 9px; height: 9px; top: 24%; right: 6%; background: #ffd36b; opacity: 0.8; animation: floatY 5.5s ease-in-out infinite 0.6s; }
.hero-dot-3 { width: 7px; height: 7px; bottom: 26%; left: 6%; animation: floatY 4.8s ease-in-out infinite 1s; }
.hero-orb { position: absolute; border-radius: 50%; z-index: 1; pointer-events: none; will-change: transform; }
.hero-orb-1 { width: 120px; height: 120px; top: 2%; right: -2%; background: radial-gradient(circle at 30% 30%, #2bd4d4, rgba(43,212,212,0) 70%); animation: floatY 5.5s ease-in-out infinite; }
.hero-orb-2 { width: 80px; height: 80px; bottom: 18%; left: -4%; background: radial-gradient(circle at 30% 30%, #ffd36b, rgba(255,211,107,0) 70%); animation: floatY 7s ease-in-out infinite 1s; }
.hero-chip {
  position: absolute; z-index: 3; width: 54px; height: 54px; border-radius: 16px; color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 22px; pointer-events: none; will-change: transform;
}
.hero-chip-leaf { top: 6%; left: -4%; background: var(--teal); box-shadow: 0 14px 30px rgba(36,182,182,0.4); animation: floatY 4.6s ease-in-out infinite 0.4s; }
.hero-chip-shield { bottom: 24%; right: -3%; background: var(--blue); box-shadow: 0 14px 30px rgba(31,46,84,0.4); animation: floatY 5.2s ease-in-out infinite 0.9s; }
.stat-card {
  position: absolute; left: -10%; top: 36%; z-index: 4; background: #fff; border-radius: 18px;
  padding: 15px 18px 16px; width: 198px; box-shadow: 0 20px 44px rgba(31, 46, 84, 0.16);
  animation: floatY 6s ease-in-out infinite 0.6s;
}
.stat-card-num { font-size: 30px; font-weight: 800; color: var(--blue); line-height: 1; }
.stat-avatars { display: flex; align-items: center; margin: 10px 0 8px; }
.sa {
  width: 32px; height: 32px; border-radius: 50%; border: 2px solid var(--teal); margin-left: -10px;
  object-fit: cover; background: var(--bg-light); box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}
.sa:first-child { margin-left: 0; }
.sa-plus { background: #ffc83d; border-color: #ffc83d; color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 15px; }
.stat-card p { font-size: 13px; color: var(--text-muted); line-height: 1.35; }
.stat-pill {
  position: absolute; left: 8%; bottom: 4%; z-index: 4; background: #fff; border-radius: 44px;
  padding: 7px 24px 7px 7px; display: inline-flex; align-items: center; gap: 13px;
  box-shadow: 0 18px 40px rgba(31, 46, 84, 0.18); animation: floatY 5.4s ease-in-out infinite;
}
.stat-pill-num { background: var(--teal); color: #fff; font-weight: 800; font-size: 17px; border-radius: 30px; padding: 11px 16px; line-height: 1; }
.stat-pill-text { font-weight: 700; color: var(--blue); font-size: 16px; white-space: nowrap; }
.hero-finder {
  background: var(--white); border-radius: 16px; padding: 24px 26px;
  box-shadow: 0 18px 50px rgba(34, 62, 118, 0.12); border: 1px solid #eef1f5; max-width: 660px;
}
.hero-finder-label { font-weight: 700; color: var(--text); font-size: 18px; margin-bottom: 14px; }
.hero-finder-label span { color: var(--teal); }
.hero-finder-fields { display: grid; grid-template-columns: 1fr 1fr 1.2fr auto; gap: 12px; }
.hero-select { position: relative; }
.hero-select::after {
  content: "\f107"; font-family: FontAwesome; position: absolute; right: 16px; top: 50%;
  transform: translateY(-50%); color: var(--gray); pointer-events: none;
}
.hero-finder select, .hero-finder input {
  width: 100%; padding: 13px 16px; border: 1px solid #e3e8ee; border-radius: 10px;
  font-family: inherit; font-size: 15px; color: var(--text); background: var(--white);
  appearance: none; -webkit-appearance: none;
}
.hero-finder select:focus, .hero-finder input:focus { outline: none; border-color: var(--teal); }
.hero-search-btn {
  background: var(--teal); color: #fff; border: 0; border-radius: 10px; width: 52px;
  cursor: pointer; font-size: 17px; transition: background var(--transition);
}
.hero-search-btn:hover { background: var(--blue); }
.hero-finder-search { max-width: 560px; }
.hero-search-row {
  position: relative; display: flex; align-items: center; gap: 8px;
  border: 1px solid #e3e8ee; border-radius: 999px; padding: 5px 5px 5px 46px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.hero-search-row:focus-within { border-color: var(--teal); box-shadow: 0 0 0 4px var(--teal-soft); }
.hero-search-ic { position: absolute; left: 18px; color: var(--teal-dark); font-size: 16px; }
.hero-finder-search input {
  flex: 1; border: 0; outline: 0; background: transparent; padding: 12px 4px;
  font-family: inherit; font-size: 15px; color: var(--text); width: auto;
}
.hero-finder-search .hero-search-btn {
  width: auto; padding: 12px 26px; border-radius: 999px; font-size: 15px; font-weight: 700;
  flex-shrink: 0;
}
.steps-section .lead { max-width: 760px; margin: 0 auto 44px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.step-card {
  position: relative; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 30px 26px; transition: all var(--transition); box-shadow: var(--shadow-card);
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.step-icon {
  width: 70px; height: 70px; border-radius: 18px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
  box-shadow: 0 10px 22px rgba(36, 182, 182, 0.28);
}
.step-icon i { font-size: 30px; color: #fff; line-height: 1; }
.step-num {
  position: absolute; top: 24px; right: 26px; font-size: 40px; font-weight: 800;
  color: var(--bg-light); line-height: 1; z-index: 0; letter-spacing: -1px;
}
.step-card h3, .step-card p { position: relative; z-index: 1; }
.step-card h3 { font-size: 19px; margin-bottom: 10px; }
.step-card p { color: var(--text-muted); font-size: 15px; }
.why-box { display: grid; grid-template-columns: 1.1fr 1fr; gap: 50px; align-items: center; margin-bottom: 60px; }
.why-box:last-child { margin-bottom: 0; }
.why-box.reverse .why-text { order: 2; }
.why-box p { color: var(--text-muted); margin: 14px 0 20px; }
.why-text h4 { color: var(--teal); margin-bottom: 14px; font-size: 18px; }
.why-image img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.check-list li { position: relative; padding-left: 32px; margin-bottom: 12px; color: var(--text); }
.check-list li::before {
  content: "\f00c"; font-family: FontAwesome; position: absolute; left: 0; top: 2px;
  color: var(--teal); background: rgba(40,172,187,0.12); width: 22px; height: 22px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px;
}
.meet-top { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 36px; align-items: center; margin-bottom: 56px; }
.meet-top p { color: var(--text-muted); margin: 14px 0 22px; }
.meet-img img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.meet-col h4 { color: var(--teal); margin-bottom: 16px; }
.meet-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.feature-card {
  display: grid; grid-template-columns: 224px 1fr; background: var(--white);
  border: 1px solid #e6edf2; border-radius: 20px; overflow: hidden;
  box-shadow: 0 10px 30px rgba(31, 46, 84, 0.06);
}
.feature-card-media { position: relative; overflow: hidden; min-height: 100%; }
.feature-card-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.feature-card-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(31,46,84,0) 45%, rgba(31,46,84,0.45));
}
.feature-badge {
  position: absolute; left: 16px; bottom: 16px; z-index: 2; width: 48px; height: 48px;
  border-radius: 50%; background: var(--teal); color: #fff; display: flex; align-items: center;
  justify-content: center; font-size: 19px; box-shadow: 0 8px 18px rgba(0,0,0,0.22);
}
.feature-card-body { padding: 30px 32px; }
.feature-card-body h3 { font-size: 22px; line-height: 1.25; margin-bottom: 12px; }
.feature-card-body > p { color: var(--text-muted); margin-bottom: 20px; font-size: 15px; }
.feature-list { display: flex; flex-direction: column; gap: 13px; margin-bottom: 24px; }
.feature-list li { position: relative; padding-left: 34px; color: var(--text); font-size: 15px; line-height: 1.45; }
.feature-list li::before {
  content: "\f00c"; font-family: FontAwesome; position: absolute; left: 0; top: 1px;
  width: 23px; height: 23px; border-radius: 50%; background: var(--teal); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 11px;
}
.feature-card-body .btn i { transition: transform 0.3s ease; }
.feature-card-body .btn:hover i { transform: translateX(4px); }
.blog-teaser .lead { max-width: 800px; margin: 0 auto 44px; }
.blog-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.blog-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); transition: all var(--transition); display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.blog-card-img { display: block; height: 180px; overflow: hidden; background: var(--bg-light); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-placeholder { display: flex; align-items: center; justify-content: center; height: 100%; font-size: 44px; color: var(--teal); opacity: 0.4; }
.blog-card-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.blog-card-date { color: var(--gray); font-size: 13px; margin-bottom: 10px; }
.blog-card h3 { font-size: 17px; line-height: 1.35; margin-bottom: 10px; }
.blog-card h3 a { color: var(--blue); }
.blog-card h3 a:hover { color: var(--teal); }
.blog-card p { color: var(--text-muted); font-size: 14px; flex: 1; }
.learn-more { font-weight: 600; font-size: 14px; margin-top: 12px; display: inline-flex; gap: 6px; align-items: center; }
.faq-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: center; }
.faq-image img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.faq-content .lead { margin-bottom: 24px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--white); }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  padding: 18px 20px; font-size: 16px; font-weight: 600; color: var(--blue);
  display: flex; justify-content: space-between; align-items: center; gap: 12px; font-family: inherit;
}
.faq-q .fa { transition: transform var(--transition); color: var(--teal); }
.faq-item.open .faq-q { background: var(--bg-light); }
.faq-item.open .faq-q .fa { transform: rotate(180deg); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.32s ease; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-wrap { overflow: hidden; min-height: 0; }
.faq-a p { color: var(--text-muted); padding: 2px 20px 18px; margin: 0; }
.cta-section { padding: 30px 0 70px; }
.cta-card {
  border-radius: 24px; overflow: hidden; position: relative; min-height: 560px;
  background: var(--teal) url("/images/get-approved-image.webp") right center / contain no-repeat;
  display: flex; align-items: center;
}
.cta-content { padding: 50px 56px; max-width: 560px; position: relative; z-index: 2; }
.cta-section h2 { color: var(--white); font-size: 36px; line-height: 1.15; margin-bottom: 16px; font-weight: 800; }
.cta-section p { color: rgba(255,255,255,0.95); font-size: 16px; line-height: 1.7; margin-bottom: 28px; }
.cta-btn {
  display: inline-flex; align-items: center; gap: 12px; background: #fff; color: var(--blue);
  font-weight: 700; padding: 14px 16px 14px 28px; border-radius: 40px; font-size: 15px;
  transition: all var(--transition);
}
.cta-btn i { background: var(--teal); color: #fff; width: 34px; height: 34px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; transition: all var(--transition); }
.cta-btn:hover { color: var(--teal); }
.cta-btn:hover i { background: var(--blue); transform: translateX(3px); }
@media (max-width: 991px) {
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-right { order: -1; }
  .hero-right img { margin: 0 auto; }
  .hero-left h1 { font-size: 40px; }
  .hero-finder-fields { grid-template-columns: 1fr 1fr; }
  .cta-card { background-position: 72% center; }
  .cta-content { padding: 40px 32px; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .why-box, .why-box.reverse .why-text { grid-template-columns: 1fr; order: 0; }
  .why-image { order: -1; }
  .meet-top, .meet-two-col { grid-template-columns: 1fr; }
  .feature-card { grid-template-columns: 1fr; }
  .feature-card-media { height: 190px; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .faq-inner { grid-template-columns: 1fr; }
  .faq-image { display: none; }
}
@media (max-width: 767px) {
  .hero-finder-fields { grid-template-columns: 1fr 1fr; }
  .hero-search-btn { grid-column: span 2; width: 100%; padding: 12px; }
  .hero-left h1 { font-size: 30px; }
  .steps-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .cta-card { background: var(--teal); min-height: auto; }
  .cta-content { max-width: 100%; }
  .cta-section h2 { font-size: 26px; }
}
.error-page { text-align: center; padding: 100px 20px; }
.error-page h1 { font-size: 90px; color: var(--teal); }
.error-page p { color: var(--text-muted); font-size: 18px; margin: 10px 0 26px; }
@media (max-width: 991px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute; top: 100%; left: 0; right: 0; background: var(--white);
    flex-direction: column; align-items: flex-start; gap: 0; padding: 10px 20px 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08); display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav ul { flex-direction: column; gap: 0; width: 100%; }
  .main-nav ul li { width: 100%; padding: 10px 0; border-bottom: 1px solid var(--border); }
  .header-phone { margin-top: 12px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* pages.css */
.page-hero {
  background: linear-gradient(120deg, var(--blue), var(--teal));
  color: var(--white);
  padding: 56px 0;
  text-align: center;
}
.page-hero h1 { color: var(--white); font-size: 38px; margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,0.9); font-size: 17px; max-width: 720px; margin: 0 auto; }
.btn-sm { padding: 9px 18px; font-size: 14px; }
.muted { color: var(--text-muted); }
.back-link { display: inline-flex; gap: 8px; align-items: center; margin-top: 30px; font-weight: 600; }
.filter-bar {
  display: grid; grid-template-columns: 1fr 1fr 1.4fr auto; gap: 12px;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 18px; box-shadow: var(--shadow-card); margin-bottom: 24px;
}
.filter-bar select, .filter-bar input {
  padding: 12px 16px; border: 1px solid var(--border); border-radius: 40px; font-family: inherit; font-size: 15px;
}
.filter-bar select:focus, .filter-bar input:focus { outline: none; border-color: var(--teal); }
.result-count { color: var(--text-muted); margin-bottom: 20px; font-weight: 500; }
.doctor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.doctor-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 22px; box-shadow: var(--shadow-card); transition: all var(--transition);
  display: flex; flex-direction: column;
}
.doctor-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.doctor-card-head { display: flex; gap: 14px; align-items: center; margin-bottom: 16px; }
.doctor-avatar, .profile-avatar {
  flex-shrink: 0; border-radius: 50%; overflow: hidden; background: var(--bg-light);
  border: 3px solid #fff; box-shadow: 0 0 0 2px var(--teal), 0 6px 16px rgba(31, 46, 84, 0.12);
}
.doctor-avatar { width: 70px; height: 70px; }
.doctor-avatar img, .profile-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.avatar-fallback { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: var(--teal); font-size: 26px; }
.doctor-card-head h3 { font-size: 18px; }
.doctor-card-head h3 a { color: var(--blue); }
.doctor-prof { color: var(--text-muted); font-size: 13px; margin-top: 2px; max-height: 38px; overflow: hidden; }
.badge-verified { color: #176b43; background: #e6f7ee; padding: 3px 10px; border-radius: 20px; font-size: 12px; font-weight: 600; display: inline-block; margin-top: 6px; }
.doctor-meta { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }
.doctor-meta li { color: var(--text-muted); font-size: 14px; }
.doctor-meta .fa { color: var(--teal); width: 18px; }
.doctor-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 16px; }
.tag { background: var(--bg-light); color: var(--blue); padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 500; }
.doctor-card-foot { display: flex; align-items: center; gap: 8px; margin-top: auto; flex-wrap: wrap; }
.doctor-card-foot .btn { margin-left: auto; }
.pill { background: var(--bg-light); color: var(--gray); padding: 4px 11px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.pill-online { background: rgba(40,172,187,0.14); color: var(--teal); }
.pill-inperson { background: rgba(34,62,118,0.1); color: var(--blue); }
.empty-state { text-align: center; padding: 60px 20px; color: var(--text-muted); }
.empty-state .fa { font-size: 50px; color: var(--border); margin-bottom: 16px; }
.empty-state p { margin-bottom: 18px; }
.profile-hero { background: var(--bg-light); padding: 50px 0; }
.profile-hero-inner { display: flex; gap: 28px; align-items: center; flex-wrap: wrap; }
.profile-avatar { width: 120px; height: 120px; box-shadow: var(--shadow-card); }
.profile-head h1 { font-size: 32px; }
.profile-prof { color: var(--text-muted); margin: 6px 0 12px; max-width: 640px; }
.profile-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.profile-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.profile-grid { display: grid; grid-template-columns: 1fr 340px; gap: 30px; }
.profile-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 22px; box-shadow: var(--shadow-card); }
.profile-card h2 { font-size: 21px; margin-bottom: 14px; }
.profile-card h3 { font-size: 17px; margin-bottom: 10px; }
.qual-list li { padding: 8px 0; border-bottom: 1px solid var(--border); }
.qual-list li:last-child { border-bottom: 0; }
.profile-extras { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 18px; }
.profile-extras p { color: var(--text-muted); font-size: 14px; }
.media-gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.media-gallery img { width: 100%; height: 120px; object-fit: cover; border-radius: var(--radius); }
.glance-list li { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.glance-list li:last-child { border-bottom: 0; }
.glance-list span { color: var(--text-muted); }
.loc-block { padding: 10px 0; border-bottom: 1px solid var(--border); }
.loc-block:last-child { border-bottom: 0; }
.loc-block p { color: var(--text-muted); font-size: 14px; margin: 4px 0; }
.map-link { font-size: 13px; font-weight: 600; }
.blog-grid-wrap { display: grid; grid-template-columns: 1fr 300px; gap: 36px; }
.blog-grid-3 { grid-template-columns: repeat(3, 1fr); }
.blog-sidebar .sidebar-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 22px; box-shadow: var(--shadow-card); position: sticky; top: 90px;
}
.sidebar-card h3 { font-size: 18px; margin-bottom: 14px; }
.cat-list li { margin-bottom: 4px; }
.cat-list a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 12px; border-radius: 8px; color: var(--blue); font-weight: 500; font-size: 15px;
}
.cat-list a:hover, .cat-list a.active { background: var(--bg-light); color: var(--teal); }
.cat-count { background: var(--bg-light); color: var(--gray); border-radius: 12px; padding: 1px 9px; font-size: 12px; font-weight: 600; }
.cat-list a.active .cat-count { background: var(--teal); color: var(--white); }
.post-header { background: var(--bg-light); padding: 46px 0 34px; }
.post-cats { display: flex; gap: 8px; margin-bottom: 14px; flex-wrap: wrap; }
.post-cat { background: var(--teal); color: var(--white); padding: 4px 13px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.post-cat:hover { background: var(--blue); color: var(--white); }
.post-header h1 { font-size: 38px; line-height: 1.15; max-width: 860px; }
.post-meta { display: flex; gap: 20px; margin-top: 16px; color: var(--text-muted); font-size: 14px; }
.post-meta .fa { color: var(--teal); margin-right: 5px; }
.post-feature { width: 100%; max-height: 460px; object-fit: cover; border-radius: var(--radius-lg); margin: 34px auto 0; box-shadow: var(--shadow); }
.post-body { max-width: 820px; margin: 40px auto; font-size: 17px; line-height: 1.8; color: #333; }
.post-body h2 { font-size: 28px; margin: 36px 0 14px; }
.post-body h3 { font-size: 22px; margin: 28px 0 12px; }
.post-body h4 { font-size: 18px; margin: 22px 0 10px; }
.post-body p { margin-bottom: 18px; }
.post-body ul, .post-body ol { margin: 0 0 18px 24px; }
.post-body ul { list-style: disc; }
.post-body ol { list-style: decimal; }
.post-body li { margin-bottom: 8px; }
.post-body a { color: var(--teal); text-decoration: underline; }
.post-body img { border-radius: var(--radius); margin: 22px auto; }
.post-body blockquote { border-left: 4px solid var(--teal); padding: 6px 20px; margin: 22px 0; background: var(--bg-light); border-radius: 0 8px 8px 0; color: #444; }
.post-body table { width: 100%; border-collapse: collapse; margin: 22px 0; }
.post-body th, .post-body td { border: 1px solid var(--border); padding: 10px 12px; text-align: left; }
.post-body th { background: var(--bg-light); }
.faq-page { max-width: 820px; margin: 0 auto; }
.faq-page .faq-list { margin-bottom: 40px; }
.faq-cta { background: var(--bg-light); border-radius: var(--radius-lg); padding: 36px; }
.faq-cta h3 { font-size: 22px; margin-bottom: 8px; }
.faq-cta p { color: var(--text-muted); margin-bottom: 18px; }
.contact-layout { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 40px; align-items: start; }
.contact-info h2 { font-size: 26px; margin-bottom: 10px; }
.contact-points { margin: 24px 0; }
.contact-points li { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; font-size: 16px; }
.contact-points .fa { width: 40px; height: 40px; border-radius: 50%; background: var(--bg-light); color: var(--teal); display: flex; align-items: center; justify-content: center; }
.contact-social { display: flex; gap: 10px; margin-top: 20px; }
.contact-social a { width: 40px; height: 40px; border-radius: 50%; background: var(--blue); color: var(--white); display: flex; align-items: center; justify-content: center; }
.contact-social a:hover { background: var(--teal); }
.contact-form-wrap { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-card); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; color: var(--blue); margin-bottom: 6px; font-size: 14px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: 10px;
  font-family: inherit; font-size: 15px; color: var(--text);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--teal); }
.field-error { color: #9b2c2c; font-size: 13px; margin-top: 4px; display: block; }
.content-page { max-width: 820px; margin: 0 auto; }
.content-page h2 { font-size: 24px; margin: 32px 0 12px; }
.content-page p { color: #444; margin-bottom: 16px; }
.content-list { margin: 0 0 16px 22px; list-style: disc; }
.content-list li { margin-bottom: 10px; color: #444; }
.content-cta { display: flex; gap: 12px; margin-top: 30px; flex-wrap: wrap; }
.content-meta { color: var(--text-muted); font-size: 14px; font-style: italic; margin-top: 30px; }
.dr-detail { display: grid; grid-template-columns: 1fr 380px; gap: 28px; align-items: start; }
.dr-main { min-width: 0; }
.dr-head { display: flex; gap: 22px; align-items: flex-start; margin-bottom: 24px; }
.dr-avatar { width: 150px; height: 170px; border-radius: 14px; overflow: hidden; background: var(--bg-light); flex-shrink: 0; border: 1px solid var(--border); }
.dr-avatar img { width: 100%; height: 100%; object-fit: cover; }
.dr-avatar .avatar-fallback { font-size: 48px; }
.dr-head-info h1, .dr-head-info h2 { font-size: 30px; color: var(--blue); }
.dr-prof { color: var(--text-muted); margin: 8px 0 12px; line-height: 1.5; }
.dr-verified { color: var(--teal); font-weight: 600; display: flex; align-items: center; gap: 8px; }
.dr-verified strong { color: var(--blue); }
.dr-banner { border-radius: 16px; overflow: hidden; margin-bottom: 28px; box-shadow: var(--shadow-card); }
.dr-banner img { width: 100%; display: block; }
.dr-section { border-top: 1px solid var(--border); padding-top: 22px; margin-bottom: 22px; }
.dr-section-title { font-size: 26px; color: var(--blue); margin-bottom: 18px; }
.dr-subblock { display: flex; gap: 16px; margin-bottom: 18px; }
.dr-sub-icon { width: 44px; height: 44px; border-radius: 50%; background: var(--bg-light); color: var(--teal); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.dr-subblock h4 { font-size: 18px; color: var(--blue); margin-bottom: 10px; }
.dr-qual-list li { padding: 6px 0; }
.dr-extras { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.dr-extras h4 { color: var(--blue); margin-bottom: 6px; }
.dr-side { display: flex; flex-direction: column; gap: 18px; position: sticky; top: 20px; }
.dr-card { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 22px; box-shadow: var(--shadow-card); }
.dr-card h3 { font-size: 19px; color: var(--blue); margin-bottom: 14px; }
.dr-phone { display: flex; align-items: center; gap: 12px; font-size: 20px; font-weight: 700; color: var(--blue); margin-bottom: 12px; }
.dr-phone-ic { width: 42px; height: 42px; border-radius: 50%; background: var(--teal-soft); color: var(--teal); display: flex; align-items: center; justify-content: center; font-size: 16px; }
.dr-managed { color: var(--text-muted); font-size: 14px; line-height: 1.5; }
.dr-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; }
.dr-pill { display: inline-flex; align-items: center; gap: 10px; padding: 9px 9px 9px 18px; border-radius: 40px; font-weight: 600; font-size: 14px; }
.dr-pill i { width: 26px; height: 26px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 12px; }
.dr-pill-solid { background: var(--teal); color: #fff; } .dr-pill-solid i { background: #fff; color: var(--teal); }
.dr-pill-outline { background: #fff; color: var(--teal); border: 1.5px solid var(--teal); } .dr-pill-outline i { background: var(--teal); color: #fff; }
.dr-pill-soft { background: var(--teal-soft); color: var(--teal); padding: 8px 18px; }
.dr-glance { border-top: 1px solid var(--border); padding-top: 14px; display: flex; flex-direction: column; gap: 12px; }
.dr-glance li { display: flex; gap: 10px; align-items: flex-start; color: var(--text); font-size: 15px; }
.dr-glance .fa { color: var(--teal); width: 18px; margin-top: 3px; }
.dr-map { border-radius: 12px; overflow: hidden; margin-bottom: 14px; height: 180px; }
.dr-map iframe { width: 100%; height: 100%; border: 0; }
.dr-primary-loc strong { display: block; margin-bottom: 8px; color: var(--blue); }
.dr-loc-row { display: flex; gap: 10px; color: var(--text-muted); font-size: 14px; margin-bottom: 12px; }
.dr-loc-ic { width: 30px; height: 30px; border-radius: 50%; background: var(--teal-soft); color: var(--teal); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.dr-modal { position: fixed; inset: 0; z-index: 1000; display: none; }
.dr-modal.open { display: block; }
.dr-modal-overlay { position: absolute; inset: 0; background: rgba(20, 30, 55, 0.55); backdrop-filter: blur(2px); }
.dr-modal-dialog {
  position: relative; max-width: 1180px; width: calc(100% - 40px); max-height: 92vh; margin: 4vh auto 0;
  background: #fff; border-radius: 18px; box-shadow: 0 30px 80px rgba(0,0,0,0.3); overflow: hidden;
}
.dr-modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 3; width: 40px; height: 40px; border-radius: 50%;
  background: #fff; border: 1px solid var(--border); color: var(--blue); cursor: pointer; font-size: 18px;
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-card);
}
.dr-modal-close:hover { background: var(--blue); color: #fff; }
.dr-modal-body { overflow-y: auto; max-height: 92vh; padding: 34px; }
.dr-modal-loading, .dr-modal-error { text-align: center; padding: 80px 0; font-size: 30px; color: var(--teal); }
.dr-modal-error { font-size: 16px; color: var(--text-muted); }
@media (max-width: 991px) {
  .dr-detail { grid-template-columns: 1fr; }
  .dr-side { position: static; }
  .dr-modal-body { padding: 24px 18px; }
  .filter-bar { grid-template-columns: 1fr 1fr; }
  .doctor-grid { grid-template-columns: 1fr 1fr; }
  .profile-grid { grid-template-columns: 1fr; }
  .profile-extras { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .blog-grid-wrap { grid-template-columns: 1fr; }
  .blog-grid-3 { grid-template-columns: 1fr 1fr; }
  .blog-sidebar .sidebar-card { position: static; }
  .post-header h1 { font-size: 30px; }
}
@media (max-width: 767px) {
  .filter-bar { grid-template-columns: 1fr; }
  .doctor-grid { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 28px; }
  .blog-grid-3 { grid-template-columns: 1fr; }
  .post-body { font-size: 16px; }
  .form-row { grid-template-columns: 1fr; }
}

/* inner.css */
.page-hero {
  position: relative; overflow: hidden; text-align: center;
  padding: 66px 0 60px;
  background: linear-gradient(125deg, var(--blue) 0%, #1c4a73 45%, var(--teal) 110%);
  color: #fff;
}
.ph-blob { position: absolute; border-radius: 50%; pointer-events: none; }
.ph-blob-1 { width: 360px; height: 360px; top: -150px; right: -90px; background: radial-gradient(circle at 30% 30%, rgba(43,212,212,0.5), transparent 70%); }
.ph-blob-2 { width: 300px; height: 300px; bottom: -160px; left: -100px; background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.16), transparent 70%); }
.ph-grid {
  position: absolute; inset: 0; opacity: 0.5; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,0.14) 1.5px, transparent 1.5px);
  background-size: 26px 26px; -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.5), transparent 70%);
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.5), transparent 70%);
}
.ph-inner { position: relative; z-index: 2; }
.ph-icon {
  display: inline-flex; align-items: center; justify-content: center; width: 70px; height: 70px;
  border-radius: 20px; background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.2);
  font-size: 30px; color: #fff; margin-bottom: 18px; backdrop-filter: blur(4px);
}
.ph-eyebrow {
  display: inline-block; text-transform: uppercase; letter-spacing: 2px; font-size: 13px;
  font-weight: 700; color: #bdeeee; margin-bottom: 12px;
}
.page-hero h1 { color: #fff; font-size: 42px; font-weight: 800; margin-bottom: 12px; letter-spacing: -0.5px; }
.page-hero p { color: rgba(255,255,255,0.92); font-size: 17px; max-width: 720px; margin: 0 auto; line-height: 1.6; }
.breadcrumb { display: inline-flex; align-items: center; gap: 9px; margin-top: 18px; font-size: 14px; font-weight: 500; }
.breadcrumb a { color: rgba(255,255,255,0.8); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: #fff; font-weight: 700; }
.breadcrumb .fa { color: rgba(255,255,255,0.5); font-size: 12px; }
.trust-strip { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-card); display: grid; grid-template-columns: repeat(4, 1fr); margin-top: -34px; position: relative; z-index: 5; overflow: hidden; }
.trust-item { display: flex; align-items: center; gap: 14px; padding: 20px 22px; border-right: 1px solid var(--border); }
.trust-item:last-child { border-right: 0; }
.trust-ic { flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px; background: var(--teal-soft); color: var(--teal); display: flex; align-items: center; justify-content: center; font-size: 19px; }
.trust-item strong { display: block; color: var(--blue); font-size: 15px; }
.trust-item span { color: var(--text-muted); font-size: 13px; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-block { text-align: center; padding: 28px 18px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-card); }
.stat-block .sb-ic { width: 54px; height: 54px; margin: 0 auto 14px; border-radius: 50%; background: linear-gradient(135deg, var(--teal), var(--teal-dark)); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 22px; box-shadow: 0 10px 22px rgba(36,182,182,0.3); }
.stat-block b { display: block; font-size: 38px; font-weight: 800; color: var(--blue); line-height: 1; }
.stat-block span { color: var(--text-muted); font-size: 14px; margin-top: 6px; display: block; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px 26px; box-shadow: var(--shadow-card); }
.value-card .vc-ic { width: 60px; height: 60px; border-radius: 16px; background: var(--teal-soft); color: var(--teal); display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 18px; transition: transform 0.35s ease; }
.value-card:hover .vc-ic { transform: rotate(-6deg) scale(1.06); }
.value-card h3 { font-size: 19px; margin-bottom: 10px; }
.value-card p { color: var(--text-muted); font-size: 15px; }
.inner-cta-section { padding: 20px 0 70px; }
.inner-cta { position: relative; overflow: hidden; border-radius: 24px; padding: 54px 56px; text-align: center;
  background: linear-gradient(125deg, var(--teal) 0%, #18909a 55%, var(--blue) 130%); color: #fff; }
.ic-blob { position: absolute; border-radius: 50%; pointer-events: none; }
.ic-blob-1 { width: 280px; height: 280px; top: -120px; left: -60px; background: radial-gradient(circle, rgba(255,255,255,0.16), transparent 70%); }
.ic-blob-2 { width: 240px; height: 240px; bottom: -130px; right: -50px; background: radial-gradient(circle, rgba(31,46,84,0.4), transparent 70%); }
.ic-content { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
.ic-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.16); padding: 7px 16px; border-radius: 30px; font-size: 13px; font-weight: 600; margin-bottom: 16px; }
.inner-cta h2 { color: #fff; font-size: 34px; font-weight: 800; margin-bottom: 12px; }
.inner-cta p { color: rgba(255,255,255,0.94); font-size: 17px; margin-bottom: 26px; }
.ic-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.ic-btn-ghost { display: inline-flex; align-items: center; padding: 14px 28px; border-radius: 40px; border: 2px solid rgba(255,255,255,0.6); color: #fff; font-weight: 700; font-size: 15px; transition: all 0.3s ease; }
.ic-btn-ghost:hover { background: #fff; color: var(--blue); border-color: #fff; }
.empty-state h3 { font-size: 22px; margin-bottom: 8px; color: var(--blue); }
.result-count .fa { color: var(--teal); }
.result-count strong { color: var(--blue); }
.blog-grid-2 { grid-template-columns: 1fr 1fr; }
.featured-post {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 0; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-card); margin-bottom: 28px; transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.featured-post:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.featured-media { position: relative; min-height: 280px; overflow: hidden; }
.featured-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.featured-post:hover .featured-media img { transform: scale(1.05); }
.featured-tag { position: absolute; top: 16px; left: 16px; background: #fff; color: var(--teal); padding: 6px 14px; border-radius: 30px; font-size: 12px; font-weight: 700; box-shadow: var(--shadow-card); }
.featured-tag .fa { color: #ffc83d; }
.featured-body { padding: 32px 34px; display: flex; flex-direction: column; justify-content: center; }
.featured-date { color: var(--gray); font-size: 13px; margin-bottom: 12px; }
.featured-date .fa { color: var(--teal); }
.featured-body h2 { font-size: 27px; line-height: 1.22; margin-bottom: 12px; color: var(--blue); }
.featured-body p { color: var(--text-muted); margin-bottom: 16px; }
.sidebar-card h3 { display: flex; align-items: center; gap: 9px; }
.sidebar-card h3 .fa { color: var(--teal); }
.topic-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.topic-pill { background: var(--bg-light); color: var(--blue); padding: 7px 14px; border-radius: 20px; font-size: 13px; font-weight: 500; transition: all 0.25s ease; }
.topic-pill:hover { background: var(--teal); color: #fff; transform: translateY(-2px); }
.sidebar-cta {
  position: sticky; top: 90px; text-align: center; border-radius: var(--radius-lg); padding: 30px 24px; color: #fff; margin-top: 22px;
  background: linear-gradient(135deg, var(--teal), var(--blue));
}
.sidebar-cta .sc-ic { width: 56px; height: 56px; margin: 0 auto 14px; border-radius: 50%; background: rgba(255,255,255,0.18); display: flex; align-items: center; justify-content: center; font-size: 24px; }
.sidebar-cta h3 { color: #fff; justify-content: center; font-size: 19px; margin-bottom: 8px; }
.sidebar-cta p { color: rgba(255,255,255,0.9); font-size: 14px; margin-bottom: 18px; }
.sidebar-cta .btn-primary { background: #fff; color: var(--blue); }
.sidebar-cta .btn-primary:hover { background: var(--blue); color: #fff; }
.reading-bar { position: fixed; top: 0; left: 0; right: 0; height: 4px; background: transparent; z-index: 200; }
.reading-bar span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--teal), var(--blue)); transition: width 0.1s linear; }
.post-hero { position: relative; overflow: hidden; background-size: cover; background-position: center; color: #fff; padding: 70px 0 56px; }
.post-hero-inner { position: relative; z-index: 2; max-width: 880px; }
.post-hero .breadcrumb { margin: 0 0 18px; }
.post-hero .post-cats { display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.post-hero .post-cat { background: rgba(255,255,255,0.18); color: #fff; padding: 5px 14px; border-radius: 20px; font-size: 12px; font-weight: 700; }
.post-hero .post-cat:hover { background: #fff; color: var(--blue); }
.post-hero h1 { color: #fff; font-size: 42px; line-height: 1.15; font-weight: 800; letter-spacing: -0.5px; }
.post-hero .post-meta { display: flex; gap: 22px; margin-top: 20px; color: rgba(255,255,255,0.92); font-size: 14px; flex-wrap: wrap; align-items: center; }
.post-hero .post-meta .fa { color: #bdeeee; margin-right: 5px; }
.pm-avatar { width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,0.2); display: inline-flex; align-items: center; justify-content: center; margin-right: 6px; }
.post-wrap { display: flex; justify-content: center; padding-top: 46px; }
.post-main { max-width: 800px; width: 100%; }
.post-body { font-size: 17.5px; line-height: 1.85; color: #333; }
.post-body > p:first-of-type::first-letter { font-size: 58px; font-weight: 800; color: var(--teal); float: left; line-height: 0.9; padding: 6px 12px 0 0; }
.post-body h2 { font-size: 28px; margin: 40px 0 14px; color: var(--blue); }
.post-body h3 { font-size: 22px; margin: 30px 0 12px; color: var(--blue); }
.post-body h2::before { content: ""; display: block; width: 46px; height: 4px; background: var(--teal); border-radius: 3px; margin-bottom: 14px; }
.post-body p { margin-bottom: 18px; }
.post-body ul, .post-body ol { margin: 0 0 18px 8px; padding-left: 22px; }
.post-body ul { list-style: none; padding-left: 4px; }
.post-body ul li { position: relative; padding-left: 30px; margin-bottom: 10px; }
.post-body ul li::before { content: "\f00c"; font-family: FontAwesome; position: absolute; left: 0; top: 2px; color: var(--teal); background: var(--teal-soft); width: 21px; height: 21px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; }
.post-body ol { list-style: decimal; }
.post-body ol li { margin-bottom: 10px; }
.post-body a { color: var(--teal); text-decoration: underline; font-weight: 500; }
.post-body img { border-radius: var(--radius); margin: 24px auto; box-shadow: var(--shadow-card); }
.post-body blockquote { border-left: 4px solid var(--teal); background: var(--bg-light); padding: 16px 22px; margin: 24px 0; border-radius: 0 10px 10px 0; color: #444; font-style: italic; }
.post-body table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 15px; }
.post-body th, .post-body td { border: 1px solid var(--border); padding: 11px 14px; text-align: left; }
.post-body th { background: var(--bg-light); color: var(--blue); }
.post-share { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin: 36px 0; padding: 20px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); flex-wrap: wrap; }
.ps-label { font-weight: 700; color: var(--blue); } .ps-label .fa { color: var(--teal); margin-right: 6px; }
.ps-links { display: flex; gap: 10px; }
.ps-btn { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 16px; transition: transform 0.25s ease, opacity 0.25s ease; }
.ps-btn:hover { transform: translateY(-3px); color: #fff; opacity: 0.9; }
.ps-fb { background: #3b5998; } .ps-tw { background: #1da1f2; } .ps-li { background: #0a66c2; } .ps-cp { background: var(--blue); }
.author-box { display: flex; gap: 18px; align-items: flex-start; background: var(--bg-light); border-radius: var(--radius-lg); padding: 26px; margin: 30px 0; }
.ab-avatar { flex-shrink: 0; width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, var(--teal), var(--blue)); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 26px; }
.ab-eyebrow { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--teal); font-weight: 700; }
.author-box strong { display: block; font-size: 19px; color: var(--blue); margin: 2px 0 8px; }
.author-box p { color: var(--text-muted); font-size: 14.5px; }
.author-box .ab-cred { color: var(--teal); font-weight: 600; font-size: 13.5px; margin: 0 0 8px; }
.ab-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 10px; font-weight: 700; color: var(--teal); font-size: 14px; }
.ab-link i { transition: transform 0.3s ease; } .ab-link:hover i { transform: translateX(4px); }
.pm-reviewed { background: rgba(255,255,255,0.18); padding: 3px 12px; border-radius: 20px; }
.pm-reviewed .fa { color: #7fe3e3; }
.post-inline-cta { display: flex; align-items: center; justify-content: space-between; gap: 20px; background: linear-gradient(135deg, var(--blue), #1c4a73); color: #fff; border-radius: var(--radius-lg); padding: 30px 34px; margin: 30px 0; flex-wrap: wrap; }
.post-inline-cta h3 { color: #fff; font-size: 22px; margin-bottom: 6px; }
.post-inline-cta p { color: rgba(255,255,255,0.9); font-size: 15px; }
.help-topics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.help-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px 26px; box-shadow: var(--shadow-card); transition: transform 0.35s ease, box-shadow 0.35s ease; display: block; }
.help-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.help-card .hc-ic { width: 58px; height: 58px; border-radius: 16px; background: linear-gradient(135deg, var(--teal), var(--teal-dark)); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 16px; box-shadow: 0 10px 22px rgba(36,182,182,0.28); }
.help-card h3 { font-size: 19px; margin-bottom: 8px; color: var(--blue); }
.help-card p { color: var(--text-muted); font-size: 14.5px; margin-bottom: 14px; }
.hc-link { font-weight: 700; color: var(--teal); font-size: 14px; display: inline-flex; gap: 7px; align-items: center; }
.help-card:hover .hc-link i { transform: translateX(4px); }
.hc-link i { transition: transform 0.3s ease; }
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: -34px; position: relative; z-index: 5; }
.contact-info-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-card); text-align: center; transition: transform 0.3s ease, box-shadow 0.3s ease; display: block; }
.contact-info-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.cic-ic { width: 56px; height: 56px; margin: 0 auto 14px; border-radius: 50%; background: var(--teal-soft); color: var(--teal); display: flex; align-items: center; justify-content: center; font-size: 22px; }
.contact-info-card strong { display: block; color: var(--blue); font-size: 17px; margin-bottom: 4px; }
.contact-info-card span { color: var(--text-muted); }
.contact-info h2 { font-size: 28px; margin: 6px 0 12px; }
.cp-ic { width: 34px; height: 34px; border-radius: 50%; background: var(--teal-soft); color: var(--teal); display: inline-flex; align-items: center; justify-content: center; font-size: 14px; margin-right: 4px; }
.stats-band { position: relative; padding: 60px 0; background: var(--white); color: var(--text); }
.stats-band-head { text-align: center; margin-bottom: 40px; }
.stats-band-head h2 { color: var(--blue); font-size: 30px; font-weight: 800; }
.stats-band-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.sb-stat { text-align: center; padding: 0 16px; position: relative; }
.sb-stat:not(:last-child)::after { content: ""; position: absolute; right: 0; top: 18%; height: 64%; width: 1px; background: var(--border); }
.sb-stat-ic { width: 64px; height: 64px; margin: 0 auto 16px; border-radius: 18px; background: linear-gradient(135deg, var(--teal), var(--teal-dark)); display: flex; align-items: center; justify-content: center; font-size: 26px; color: #fff; box-shadow: 0 12px 26px rgba(36, 182, 182, 0.28); }
.sb-stat b { display: block; font-size: 52px; font-weight: 800; line-height: 1; letter-spacing: -1px; color: var(--blue); }
.sb-stat b i { font-style: normal; color: var(--teal); }
.sb-stat-label { display: block; margin-top: 10px; color: var(--text-muted); font-size: 15px; font-weight: 500; }
.mission-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: center; }
.mission-media { position: relative; }
.mission-media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.mission-badge { position: absolute; top: 18px; left: 18px; background: #fff; color: var(--blue); font-weight: 700; padding: 10px 18px; border-radius: 30px; box-shadow: var(--shadow-card); font-size: 14px; }
.mission-badge .fa { color: var(--teal); }
.mission-float { position: absolute; bottom: -18px; right: -10px; background: var(--white); border-radius: 14px; padding: 16px 22px; box-shadow: var(--shadow); font-size: 14px; color: var(--text-muted); font-weight: 600; }
.mission-float b { display: block; font-size: 30px; color: var(--teal); font-weight: 800; line-height: 1; }
.mission-text > p { color: var(--text-muted); margin-bottom: 18px; }
.mission-text .check-list { margin-bottom: 24px; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px; position: relative; }
.process-grid::before { content: ""; position: absolute; top: 54px; left: 12%; right: 12%; height: 2px; background: repeating-linear-gradient(90deg, var(--teal) 0 8px, transparent 8px 16px); opacity: 0.4; z-index: 0; }
.process-step { position: relative; z-index: 1; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px 24px 26px; text-align: center; box-shadow: var(--shadow-card); transition: transform 0.35s ease, box-shadow 0.35s ease; }
.process-step:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.ps-num { position: absolute; top: -16px; left: 50%; transform: translateX(-50%); width: 34px; height: 34px; border-radius: 50%; background: var(--blue); color: #fff; font-weight: 800; font-size: 15px; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 16px rgba(31,46,84,0.3); }
.process-step .ps-ic { width: 66px; height: 66px; margin: 14px auto 16px; border-radius: 50%; background: linear-gradient(135deg, var(--teal), var(--teal-dark)); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 27px; box-shadow: 0 12px 26px rgba(36,182,182,0.3); }
.process-step h3 { font-size: 18px; margin-bottom: 8px; }
.process-step p { color: var(--text-muted); font-size: 14.5px; }
.testimonial { max-width: 820px; margin: 0 auto; text-align: center; background: var(--white); border: 1px solid var(--border); border-radius: 24px; padding: 46px 48px; box-shadow: var(--shadow-card); position: relative; }
.t-quote { width: 60px; height: 60px; margin: 0 auto 20px; border-radius: 50%; background: var(--teal-soft); color: var(--teal); display: flex; align-items: center; justify-content: center; font-size: 26px; }
.testimonial blockquote { font-size: 22px; line-height: 1.55; color: var(--blue); font-weight: 600; margin-bottom: 26px; }
.t-author { display: flex; align-items: center; justify-content: center; gap: 14px; }
.t-avatar { width: 50px; height: 50px; border-radius: 50%; background: linear-gradient(135deg, var(--teal), var(--blue)); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.t-author strong { display: block; color: var(--blue); }
.t-author > div { text-align: left; } .t-author span { color: var(--text-muted); font-size: 13px; }
.t-stars { color: #ffc83d; margin-left: 8px; font-size: 14px; }
.t-stars .fa { margin: 0 1px; }
@media (max-width: 991px) {
  .stats-band-grid { grid-template-columns: 1fr 1fr; gap: 32px 12px; }
  .sb-stat:nth-child(2)::after { display: none; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid::before { display: none; }
  .testimonial blockquote { font-size: 19px; }
  .mission-float { right: 10px; }
}
@media (max-width: 600px) {
  .stats-band-grid { grid-template-columns: 1fr 1fr; }
  .sb-stat::after { display: none !important; }
  .process-grid { grid-template-columns: 1fr; }
}
.legal-layout { display: grid; grid-template-columns: 260px 1fr; gap: 40px; align-items: start; }
.legal-toc .sidebar-card { position: sticky; top: 90px; }
.toc-list li { margin-bottom: 2px; }
.toc-list a { display: block; padding: 8px 12px; border-radius: 8px; color: var(--text-muted); font-size: 14px; font-weight: 500; border-left: 2px solid transparent; }
.toc-list a:hover { background: var(--bg-light); color: var(--teal); border-left-color: var(--teal); }
.legal-content { max-width: none; margin: 0; }
.legal-content h2 { scroll-margin-top: 90px; }
.updated-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--teal-soft); color: var(--teal); padding: 7px 16px; border-radius: 30px; font-size: 13px; font-weight: 600; margin-bottom: 18px; }
.error-page { text-align: center; padding: 90px 20px; }
.error-visual { font-size: 120px; font-weight: 800; color: var(--blue); line-height: 1; position: relative; display: inline-block; letter-spacing: -4px; }
.eg-leaf { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); width: 60px; height: 60px; border-radius: 18px; background: linear-gradient(135deg, var(--teal), var(--teal-dark)); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 28px; box-shadow: 0 14px 30px rgba(36,182,182,0.35); animation: floatY 4s ease-in-out infinite; }
.error-page h2 { font-size: 28px; margin: 20px 0 8px; }
.error-page p { color: var(--text-muted); font-size: 17px; margin-bottom: 26px; }
.error-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 991px) {
  .trust-strip { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: 0; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .value-grid { grid-template-columns: 1fr 1fr; }
  .page-hero h1 { font-size: 34px; }
  .inner-cta { padding: 44px 30px; }
  .featured-post { grid-template-columns: 1fr; }
  .featured-media { min-height: 220px; }
  .blog-grid-2 { grid-template-columns: 1fr 1fr; }
  .post-hero h1 { font-size: 32px; }
  .help-topics { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr; }
  .mission-media { order: -1; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { display: none; }
}
@media (max-width: 600px) {
  .blog-grid-2 { grid-template-columns: 1fr; }
  .post-body { font-size: 16.5px; }
  .post-inline-cta { flex-direction: column; text-align: center; align-items: stretch; }
}
@media (max-width: 600px) {
  .trust-strip { grid-template-columns: 1fr; } .trust-item { border-right: 0; border-bottom: 1px solid var(--border); }
  .stats-row, .value-grid { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 28px; }
}

/* directory.css */
.dir-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue) 0%, #24407a 55%, var(--teal-dark) 130%);
  color: #fff;
  padding: 64px 0 72px;
}
.dir-hero-inner { position: relative; z-index: 2; text-align: center; max-width: 820px; margin: 0 auto; }
.dir-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); margin: 0 0 14px; line-height: 1.1; }
.dir-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 255, 255, 0.14); border: 1px solid rgba(255, 255, 255, 0.22);
  color: #d8f3f3; font-weight: 600; font-size: 0.82rem; letter-spacing: 0.04em;
  padding: 7px 16px; border-radius: 999px; margin-bottom: 20px; text-transform: uppercase;
}
.dir-hero-lead { font-size: 1.1rem; color: #e6eefb; margin: 0 auto 26px; max-width: 660px; }
.dir-hero-lead strong { color: #fff; }
.dir-hero-blob { position: absolute; border-radius: 50%; filter: blur(8px); opacity: 0.4; z-index: 1; }
.dir-hero-blob-1 { width: 380px; height: 380px; background: radial-gradient(circle, rgba(36,182,182,0.5), transparent 70%); top: -120px; right: -80px; }
.dir-hero-blob-2 { width: 320px; height: 320px; background: radial-gradient(circle, rgba(70,120,210,0.5), transparent 70%); bottom: -140px; left: -60px; }
.dir-hero-grid {
  position: absolute; inset: 0; z-index: 1; opacity: 0.18;
  background-image: linear-gradient(rgba(255,255,255,0.4) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.4) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(circle at 50% 40%, #000 0%, transparent 70%);
  mask-image: radial-gradient(circle at 50% 40%, #000 0%, transparent 70%);
}
.dir-search {
  position: relative; display: flex; align-items: center;
  background: #fff; border-radius: 999px; padding: 6px 6px 6px 52px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22); max-width: 620px; margin: 0 auto 10px;
}
.dir-search-icon { position: absolute; left: 20px; color: var(--teal-dark); font-size: 1.05rem; }
.dir-search input {
  flex: 1; border: 0; outline: 0; font-size: 1rem; color: var(--text);
  background: transparent; padding: 14px 8px; font-family: inherit;
}
.dir-search-btn {
  border: 0; background: var(--teal); color: #fff; font-weight: 700; font-family: inherit;
  padding: 13px 28px; border-radius: 999px; cursor: pointer; font-size: 0.95rem;
  transition: background var(--transition), transform 0.15s ease;
}
.dir-search-btn:hover { background: var(--teal-dark); transform: translateY(-1px); }
.dir-search-hint { color: #c5d6f0; font-size: 0.85rem; margin: 0 0 30px; }
.dir-stats { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.dir-stat {
  background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px; padding: 16px 26px; min-width: 130px; backdrop-filter: blur(4px);
}
.dir-stat-num { display: block; font-size: 1.9rem; font-weight: 800; color: #fff; line-height: 1; }
.dir-stat-label { display: block; font-size: 0.78rem; letter-spacing: 0.05em; text-transform: uppercase; color: #cfe0f5; margin-top: 6px; }
.dir-body { background: var(--bg-light); padding: 44px 0 10px; }
.dir-layout { display: grid; grid-template-columns: 290px 1fr; gap: 28px; align-items: start; }
.dir-main { min-width: 0; }
.dir-sidebar {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card); overflow: hidden; position: sticky; top: 90px;
  max-height: calc(100vh - 110px); display: flex; flex-direction: column;
}
.dir-sidebar-head { padding: 18px 18px 14px; border-bottom: 1px solid var(--border); background: linear-gradient(135deg, var(--teal-soft), #fff); }
.dir-sidebar-head h2 { font-size: 1.05rem; margin: 0; color: var(--blue); display: flex; align-items: center; gap: 8px; }
.dir-sidebar-head h2 .fa { color: var(--teal-dark); }
.dir-sidebar-sub { font-size: 0.74rem; color: var(--text-muted); }
.dir-state-list { list-style: none; margin: 0; padding: 6px; overflow-y: auto; }
.dir-state-toggle {
  width: 100%; display: flex; align-items: center; gap: 10px; background: transparent; border: 0;
  padding: 10px 10px; border-radius: 8px; cursor: pointer; font-family: inherit; font-size: 0.92rem;
  color: var(--text); text-align: left; transition: background 0.18s ease;
}
.dir-state-toggle:hover { background: var(--teal-soft); }
.dir-state.is-active > .dir-state-toggle { background: var(--teal-soft); color: var(--blue); font-weight: 600; }
.dir-state-name { flex: 1; }
.dir-state-count {
  background: var(--blue); color: #fff; font-size: 0.72rem; font-weight: 700;
  min-width: 24px; height: 20px; padding: 0 6px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
}
.dir-chevron { color: var(--text-muted); transition: transform 0.25s ease; font-size: 0.85rem; }
.dir-state-toggle[aria-expanded="true"] .dir-chevron { transform: rotate(180deg); color: var(--teal-dark); }
.dir-city-panel { padding: 2px 8px 8px 14px; }
.dir-state-all { display: inline-flex; align-items: center; gap: 6px; font-size: 0.8rem; font-weight: 600; color: var(--teal-dark); padding: 6px 4px; }
.dir-state-all:hover { text-decoration: underline; }
.dir-city-list { list-style: none; margin: 0; padding: 0; }
.dir-city-list li a {
  display: flex; justify-content: space-between; align-items: center; gap: 8px;
  padding: 6px 8px; border-radius: 6px; font-size: 0.85rem; color: var(--text);
}
.dir-city-list li a:hover { background: var(--teal-soft); color: var(--blue); }
.dir-city-list .dc-count { font-size: 0.72rem; color: var(--text-muted); }
.dir-city-loading { font-size: 0.82rem; color: var(--text-muted); padding: 6px 8px; }
.dir-intro-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 32px; }
.dir-info-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px; box-shadow: var(--shadow-card); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.dir-info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.dir-info-card h3 { font-size: 1.02rem; margin: 12px 0 6px; color: var(--blue); }
.dir-info-card p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }
.dir-info-ico { width: 48px; height: 48px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; font-size: 1.25rem; color: #fff; }
.dir-ico-a { background: linear-gradient(135deg, #24b6b6, #1c9a9a); }
.dir-ico-b { background: linear-gradient(135deg, #3f6fd1, #27408b); }
.dir-ico-c { background: linear-gradient(135deg, #f0a13a, #e0791f); }
.dir-results-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin: 8px 0 16px; flex-wrap: wrap; }
.dir-results-head h2 { font-size: 1.35rem; margin: 0; color: var(--blue); }
.dir-res-note, .dir-res-sub { color: var(--text-muted); font-size: 0.88rem; }
.dir-res-sub { display: block; font-weight: 700; color: var(--blue); margin: 18px 0 10px; font-size: 1rem; }
.dir-clear { color: var(--teal-dark); font-weight: 600; font-size: 0.85rem; }
.dir-place-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; margin-bottom: 30px; }
.dir-place-card {
  display: flex; flex-direction: column; gap: 4px; position: relative;
  background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 16px 18px;
  box-shadow: var(--shadow-card); transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.dir-place-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--teal); }
.dir-place-ico { width: 36px; height: 36px; border-radius: 9px; background: var(--teal-soft); color: var(--teal-dark); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 6px; }
.dir-place-name { font-weight: 700; color: var(--blue); font-size: 1rem; }
.dir-place-meta { font-size: 0.82rem; color: var(--text-muted); }
.dir-city-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.dir-city-card { flex-direction: row; align-items: center; gap: 12px; }
.dir-city-card .dir-place-ico { margin-bottom: 0; flex-shrink: 0; }
.dir-place-body { display: flex; flex-direction: column; gap: 3px; flex: 1; min-width: 0; }
.dir-place-arrow { color: var(--text-muted); transition: transform 0.18s ease, color 0.18s ease; }
.dir-city-card:hover .dir-place-arrow { transform: translateX(3px); color: var(--teal-dark); }
.dir-place-pill { align-self: flex-start; font-size: 0.68rem; font-weight: 700; padding: 2px 8px; border-radius: 999px; margin-top: 3px; }
.pill-rec { background: #e7f6ec; color: #1f8a4c; }
.pill-med { background: #eaf1fb; color: #2a5298; }
.dir-city-hero { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--blue), #24407a); color: #fff; padding: 40px 0 36px; }
.dir-city-hero h1 { color: #fff; font-size: clamp(1.7rem, 3.2vw, 2.4rem); margin: 6px 0 10px; }
.dir-city-crumbs { margin-bottom: 14px; }
.dir-city-crumbs a, .dir-city-crumbs span { color: #cfe0f5; font-size: 0.84rem; }
.dir-city-crumbs a:hover { color: #fff; }
.dir-city-crumbs .fa { color: rgba(255,255,255,0.4); margin: 0 7px; font-size: 0.72rem; }
.dir-city-hero .dir-hero-eyebrow { margin-bottom: 4px; }
.dir-city-hero .dir-hero-lead { color: #e6eefb; max-width: 720px; margin: 0 0 20px; }
.dir-city-facts { display: flex; flex-wrap: wrap; gap: 12px; }
.dir-fact { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18); border-radius: 10px; padding: 9px 16px; font-size: 0.88rem; }
.dir-fact .fa { color: var(--teal); }
.dir-fact a { color: #d8f3f3; text-decoration: underline; }
.dir-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.dir-toolbar-info { color: var(--text-muted); font-size: 0.9rem; }
.dir-toolbar-info strong { color: var(--blue); }
.dir-sort { display: flex; align-items: center; gap: 8px; }
.dir-sort label { font-size: 0.85rem; color: var(--text-muted); }
.dir-sort select { font-family: inherit; font-size: 0.88rem; padding: 8px 30px 8px 12px; border: 1px solid var(--border); border-radius: 8px; background: #fff; color: var(--text); cursor: pointer; }
.dir-sort select:focus { outline: 2px solid var(--teal); outline-offset: 1px; }
.dir-doc-list { display: flex; flex-direction: column; gap: 18px; }
.dir-doc-card { position: relative; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px 24px; box-shadow: var(--shadow-card); transition: box-shadow 0.2s ease, border-color 0.2s ease; }
.dir-doc-card:hover { box-shadow: var(--shadow); }
.dir-doc-card.is-featured { border-color: var(--teal); box-shadow: 0 10px 30px rgba(36,182,182,0.16); }
.dir-doc-flag { position: absolute; top: -11px; left: 22px; background: var(--teal); color: #fff; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; display: inline-flex; align-items: center; gap: 5px; }
.dir-doc-top { display: flex; gap: 16px; align-items: flex-start; }
.dir-doc-avatar { width: 60px; height: 60px; border-radius: 14px; background: linear-gradient(135deg, var(--blue), var(--teal-dark)); color: #fff; font-weight: 800; font-size: 1.15rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.dir-doc-head { flex: 1; min-width: 0; }
.dir-doc-name { font-size: 1.2rem; margin: 0 0 3px; color: var(--blue); display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.dir-doc-verified { font-size: 0.72rem; font-weight: 700; color: var(--teal-dark); background: var(--teal-soft); padding: 3px 9px; border-radius: 999px; }
.dir-doc-verified .fa { margin-right: 3px; }
.dir-doc-sub { font-size: 0.88rem; color: var(--teal-dark); font-weight: 600; margin: 0 0 6px; }
.dir-doc-rating { display: flex; align-items: center; gap: 7px; font-size: 0.86rem; }
.dir-stars { color: #f5a623; letter-spacing: 1px; }
.dir-doc-rating strong { color: var(--text); }
.dir-doc-reviews { color: var(--text-muted); }
.dir-doc-actions { display: flex; flex-wrap: wrap; gap: 10px; margin: 16px 0 4px; }
.dir-act { display: inline-flex; align-items: center; gap: 7px; font-size: 0.86rem; font-weight: 600; padding: 9px 16px; border-radius: 9px; border: 1px solid var(--border); color: var(--text); background: #fff; transition: all 0.18s ease; }
.dir-act:hover { border-color: var(--teal); color: var(--teal-dark); background: var(--teal-soft); }
.dir-act-primary { background: var(--teal); border-color: var(--teal); color: #fff; }
.dir-act-primary:hover { background: var(--teal-dark); border-color: var(--teal-dark); color: #fff; }
.dir-doc-blurb { font-size: 0.92rem; color: var(--text); line-height: 1.6; margin: 14px 0 0; }
.dir-doc-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.dir-tag { font-size: 0.78rem; font-weight: 600; color: var(--blue); background: #f1f5f9; padding: 5px 12px; border-radius: 999px; }
.dir-tag .fa { color: var(--teal-dark); margin-right: 3px; }
.dir-tag-soft { background: var(--teal-soft); color: var(--teal-dark); }
.dir-city-about { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; margin-top: 24px; box-shadow: var(--shadow-card); }
.dir-city-about h2 { font-size: 1.2rem; color: var(--blue); margin: 0 0 10px; }
.dir-city-about p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.7; margin: 0 0 10px; }
.dir-empty { text-align: center; background: #fff; border: 1px dashed var(--border); border-radius: var(--radius-lg); padding: 48px 24px; }
.dir-empty .fa { font-size: 2.4rem; color: var(--teal); opacity: 0.5; margin-bottom: 14px; }
.dir-empty h3 { color: var(--blue); margin: 0 0 8px; }
.dir-empty p { color: var(--text-muted); max-width: 460px; margin: 0 auto; }
@media (max-width: 991px) {
  .dir-layout { grid-template-columns: 1fr; }
  .dir-sidebar { position: static; max-height: none; order: 2; margin-top: 24px; }
  .dir-state-list { max-height: 420px; }
  .dir-intro-cards { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .dir-search { padding-left: 44px; flex-wrap: nowrap; }
  .dir-search-icon { left: 16px; }
  .dir-search-btn { padding: 12px 18px; }
  .dir-stat { min-width: 110px; padding: 12px 18px; }
  .dir-stat-num { font-size: 1.5rem; }
  .dir-doc-actions { gap: 8px; }
  .dir-act { flex: 1; justify-content: center; }
}

/* animations.css */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.in-view { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@keyframes pulseDot { 0%,100% { box-shadow: 0 0 0 0 rgba(36,182,182,0.45); } 70% { box-shadow: 0 0 0 12px rgba(36,182,182,0); } }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
@keyframes spin { to { transform: rotate(360deg); } }
.hero-left > * { animation: fadeUp 0.7s both; }
.hero-left .hero-badge-row { animation-delay: 0.05s; }
.hero-left h1 { animation-delay: 0.15s; }
.hero-left p { animation-delay: 0.28s; }
.hero-left .hero-finder { animation-delay: 0.4s; }
.hero-right { animation: fadeUp 0.8s both 0.25s; }
.site-header { transition: box-shadow 0.3s ease, padding 0.3s ease; }
.site-header.scrolled { box-shadow: 0 6px 24px rgba(31, 46, 84, 0.12); }
.site-header.scrolled .header-inner { padding-top: 9px; padding-bottom: 9px; }
.main-nav ul a { position: relative; }
.main-nav ul a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 100%;
  background: var(--teal); transform: scaleX(0); transform-origin: left; transition: transform 0.28s ease;
}
.main-nav ul a:hover::after, .main-nav ul a.active::after { transform: scaleX(1); }
.btn, .hero-search-btn, .cta-btn, .dr-pill { position: relative; overflow: hidden; }
.btn::before, .cta-btn::before {
  content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg); transition: left 0.6s ease;
}
.btn:hover::before, .cta-btn:hover::before { left: 140%; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(31,46,84,0.18); }
.btn:active { transform: translateY(0); }
.step-card, .blog-card, .doctor-card, .profile-card, .stat-card, .feature-card, .dr-card, .sidebar-card {
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s ease, border-color 0.35s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 20px 44px rgba(31,46,84,0.13); }
.feature-card-media img { transition: transform 0.6s cubic-bezier(0.22,1,0.36,1); }
.feature-card:hover .feature-card-media img { transform: scale(1.07); }
.step-card:hover .step-icon { transform: scale(1.08) rotate(-4deg); }
.step-icon { transition: transform 0.35s ease; }
.blog-card-img { position: relative; }
.blog-card-img img { transition: transform 0.5s cubic-bezier(0.22,1,0.36,1); }
.blog-card:hover .blog-card-img img { transform: scale(1.07); }
.why-image img, .faq-image img { transition: transform 0.5s ease; }
.tag, .pill { transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease; }
.tag:hover { background: var(--teal); color: #fff; transform: translateY(-1px); }
.doctor-card:hover .doctor-avatar { animation: pulseDot 1.2s ease-out; }
.learn-more i { transition: transform 0.3s ease; }
.learn-more:hover i { transform: translateX(5px); }
.footer-social a, .contact-social a { transition: transform 0.3s ease, background 0.3s ease; }
.footer-social a:hover, .contact-social a:hover { transform: translateY(-3px) rotate(6deg); }
.cta-card { transition: transform 0.5s ease, box-shadow 0.5s ease; }
.cta-card:hover { box-shadow: 0 24px 60px rgba(31,46,84,0.22); }
.dr-modal.open .dr-modal-dialog { animation: fadeUp 0.4s cubic-bezier(0.22,1,0.36,1) both; }
.dr-modal.open .dr-modal-overlay { animation: overlayIn 0.3s ease both; }
@keyframes overlayIn { from { opacity: 0; } to { opacity: 1; } }
.fa-spin { animation: spin 0.9s linear infinite; }
