/* ============================================================
   vetclinic.info — directory.css
   Shared styles for all /us/... directory pages.
   Extends styles.css — do not import styles.css here,
   both are loaded via <link> tags in each page.
   ============================================================ */

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-200);
  background: var(--white);
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  list-style: none;
  font-size: 13px;
  color: var(--gray-400);
}

.breadcrumb__list li + li::before {
  content: '›';
  margin-right: 4px;
  color: var(--gray-300, #CBD5E1);
}

.breadcrumb__list a {
  color: var(--gray-400);
  transition: color 0.1s;
}
.breadcrumb__list a:hover { color: var(--teal); }

.breadcrumb__list [aria-current="page"] {
  color: var(--gray-700);
  font-weight: 500;
}

/* ---------- Page header ---------- */
.dir-header {
  background: var(--white);
  padding: 48px 0 40px;
  border-bottom: 1px solid var(--gray-200);
}

.dir-header__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
  display: block;
}

.dir-header h1 {
  margin-bottom: 16px;
}

.dir-header__intro {
  font-size: 18px;
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 640px;
}

/* PROMOTED badge in dir-header */
.promoted-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--teal);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
}

/* ---------- Status bar ---------- */
.status-bar {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--gray-700);
  font-weight: 500;
  margin-bottom: 32px;
}

.status-bar__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.status-bar__dot--filled { background: var(--teal); }
.status-bar__dot--open   { background: var(--gray-300, #CBD5E1); }

/* ---------- Specialty grid (city pages) ---------- */
.specialty-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 40px 0;
}

.specialty-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 24px;
  text-decoration: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  display: block;
}
.specialty-card:hover {
  border-color: var(--teal);
  box-shadow: 0 2px 8px rgba(13,148,136,0.08);
}

.specialty-card--muted {
  background: var(--gray-50);
  cursor: default;
  pointer-events: none;
}
.specialty-card--muted:hover { border-color: var(--gray-200); box-shadow: none; }

.specialty-card__name {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.specialty-card__status {
  font-size: 13px;
  font-weight: 500;
}
.specialty-card__status--open   { color: var(--teal); }
.specialty-card__status--filled { color: var(--gray-500); }
.specialty-card__status--soon   { color: var(--gray-400); }

.specialty-card__arrow {
  font-size: 13px;
  color: var(--gray-400);
  margin-top: 10px;
}

/* ---------- Clinic listing cards ---------- */
.clinic-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.clinic-card--promoted {
  border-color: var(--teal);
  box-shadow: 0 2px 12px rgba(13,148,136,0.10);
}

.clinic-card__image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.clinic-card__body { padding: 24px; }

.clinic-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}

.clinic-card__name {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
}

.clinic-card__subtitle {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 10px;
}

.clinic-card__stars {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 16px;
}
.clinic-card__stars .stars svg { width: 13px; height: 13px; fill: var(--teal); }

.clinic-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-700);
  background: var(--gray-100);
  border-radius: 4px;
  padding: 3px 9px;
}

.clinic-card__meta {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 4px;
}

.clinic-card__footer {
  padding: 16px 24px;
  border-top: 1px solid var(--gray-200);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.clinic-card__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.15s;
}
.clinic-card__link:hover { gap: 8px; }

/* ---------- FOMO strip ---------- */
.fomo-strip {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 20px 0;
  text-align: center;
}

.fomo-strip p {
  font-size: 14px;
  color: var(--gray-500);
}

.fomo-strip strong { color: var(--gray-700); }

/* ---------- FOMO panel (teal-bordered, inside page) ---------- */
.fomo-panel {
  border: 1.5px solid var(--teal);
  border-radius: 10px;
  padding: 24px 28px;
  background: var(--teal-light);
  margin: 32px 0;
}

.fomo-panel__heading {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.fomo-panel__body {
  font-size: 15px;
  color: var(--gray-700);
  margin-bottom: 16px;
  line-height: 1.6;
}

.fomo-panel .btn { font-size: 14px; padding: 10px 20px; }

/* ---------- Empty state (dashed) ---------- */
.empty-spot {
  border: 2px dashed var(--gray-300, #CBD5E1);
  border-radius: 10px;
  background: var(--gray-50);
  padding: 40px 32px;
  text-align: center;
  margin-bottom: 32px;
}

.empty-spot__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.empty-spot__heading {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.empty-spot__price {
  font-size: 28px;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 4px;
}

.empty-spot__note {
  font-size: 13px;
  color: var(--gray-400);
  margin-bottom: 20px;
}

/* ---------- CTA panel (city page bottom) ---------- */
.cta-panel {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 32px;
  text-align: center;
  margin-top: 48px;
}

.cta-panel h3 { margin-bottom: 10px; }

.cta-panel p {
  font-size: 16px;
  color: var(--gray-500);
  margin-bottom: 20px;
}

/* ---------- Callout box (BASIC pages) ---------- */
.callout-box {
  border-left: 3px solid var(--teal);
  background: var(--teal-light);
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  margin: 24px 0 32px;
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.6;
}

.callout-box a { color: var(--teal); font-weight: 600; }

/* ---------- Clinic page layout (PROMOTED — two col) ---------- */
.clinic-layout {
  display: grid;
  grid-template-columns: 65fr 35fr;
  gap: 48px;
  align-items: start;
  padding: 56px 0;
}

.clinic-layout--single {
  max-width: 720px;
  padding: 56px 0;
}

/* ---------- Clinic page main content ---------- */
.clinic-cover {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 28px;
}

.clinic-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--gray-500);
  margin-bottom: 24px;
}
.clinic-rating .stars svg { width: 16px; height: 16px; fill: var(--teal); }

.clinic-section { margin-bottom: 36px; }

.clinic-section h2 {
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gray-200);
}

.team-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.team-member {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.team-member__name {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}

.team-member__cred {
  font-size: 13px;
  color: var(--teal);
  font-weight: 600;
}

.procedure-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.procedure-list li {
  background: var(--gray-100);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 14px;
  color: var(--gray-700);
  font-weight: 500;
}

.photo-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.photo-gallery img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--gray-200);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
}

.contact-field__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 3px;
}

.contact-field__value {
  font-size: 15px;
  color: var(--gray-700);
  font-weight: 500;
}

.contact-field__value a { color: var(--teal); }

/* ---------- Sidebar ---------- */
.sidebar-panel {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-top: 3px solid var(--teal);
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 20px;
}

.sidebar-panel__heading {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.sidebar-spots { list-style: none; display: flex; flex-direction: column; }

.sidebar-spots li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 14px;
  color: var(--gray-700);
}

.sidebar-spots li:last-child { border-bottom: none; }

.sidebar-spots .open  { color: var(--teal); font-weight: 600; font-size: 12px; letter-spacing: 0.05em; }
.sidebar-spots .soon  { color: var(--gray-400); font-size: 12px; }

.sidebar-panel .btn { width: 100%; text-align: center; margin-top: 16px; font-size: 14px; padding: 11px; }

/* ---------- Footer FOMO strip ---------- */
.footer-fomo {
  background: var(--navy);
  padding: 40px 0;
  text-align: center;
}

.footer-fomo__heading {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.footer-fomo__body {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ---------- Mobile ---------- */
@media (max-width: 768px) {
  .specialty-grid { grid-template-columns: 1fr; }
  .clinic-layout  { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid   { grid-template-columns: 1fr; }
  .photo-gallery  { grid-template-columns: 1fr 1fr; }
  .clinic-cover   { height: 200px; }
}
