/* ================================================================
   Shared Website Page Nav — Used by 4 branch website tabs
   Internal navbar, hero sections, service grids, footers
   ================================================================ */

/* -- Website Navbar --------------------------------------------- */
.site-nav {
  display: flex; align-items: center; gap: 20px;
  padding: 12px 28px; background: var(--app-surface);
  border-bottom: 1px solid var(--app-border);
  position: sticky; top: 0; z-index: 5;
}
.site-nav__logo {
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  color: var(--app-text-1); white-space: nowrap;
}
.site-nav__logo strong { color: var(--app-accent); }
.site-nav__links { display: flex; gap: 2px; flex-wrap: wrap; flex: 1; }
.site-nav__link {
  padding: 7px 14px; font-size: 0.82rem; font-weight: 500;
  color: var(--app-text-2); border-radius: var(--radius-sm);
  transition: all var(--transition-fast); cursor: pointer;
  background: none; border: none; white-space: nowrap;
}
.site-nav__link:hover { color: var(--app-text-1); background: var(--app-accent-light); }
.site-nav__link.active { color: var(--app-accent); background: var(--app-accent-light); font-weight: 600; }

.site-nav__cta {
  padding: 7px 18px; font-size: 0.82rem; font-weight: 600;
  color: #fff; background: var(--app-accent); border-radius: var(--radius-sm);
  white-space: nowrap; cursor: pointer; border: none;
  transition: filter var(--transition-fast);
}
.site-nav__cta:hover { filter: brightness(1.1); }

/* -- Sub-pages (show/hide) -------------------------------------- */
.site-page { display: none; }
.site-page[data-active] { display: block; }

/* -- Hero Section ----------------------------------------------- */
.site-hero {
  padding: 48px 32px; text-align: center;
  background: linear-gradient(135deg, var(--app-accent), color-mix(in srgb, var(--app-accent), #000 25%));
  color: #fff;
}
.site-hero__badge {
  display: inline-block; padding: 4px 14px; margin-bottom: 12px;
  background: rgba(255,255,255,0.15); border-radius: 99px;
  font-size: 0.75rem; font-weight: 600;
}
.site-hero__title {
  font-family: var(--font-display); font-size: 1.8rem; font-weight: 700;
  line-height: 1.2; margin-bottom: 12px; max-width: 700px; margin-left: auto; margin-right: auto;
}
.site-hero__sub {
  font-size: 1rem; color: rgba(255,255,255,0.85); max-width: 560px;
  margin: 0 auto 24px; line-height: 1.6;
}
.site-hero__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.site-hero .btn--primary { background: #fff; color: var(--app-accent); }
.site-hero .btn--primary:hover { background: rgba(255,255,255,0.9); }
.site-hero .btn--ghost { border-color: rgba(255,255,255,0.4); color: #fff; }

/* -- Section Layout --------------------------------------------- */
.site-section {
  padding: 40px 32px; max-width: 960px; margin: 0 auto;
}
.site-section__title {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 700;
  color: var(--app-text-1); margin-bottom: 8px;
}
.site-section__sub {
  font-size: 0.9rem; color: var(--app-text-2); margin-bottom: 24px; line-height: 1.6;
}

/* -- Service Grid ----------------------------------------------- */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card {
  padding: 20px; background: var(--app-surface);
  border: 1px solid var(--app-border); border-radius: var(--radius);
  transition: all var(--transition-fast); cursor: default;
}
.service-card:hover { border-color: var(--app-accent); box-shadow: var(--shadow-sm); }
.service-card__title { font-weight: 600; font-size: 0.95rem; color: var(--app-text-1); margin-bottom: 8px; }
.service-card__desc { font-size: 0.85rem; color: var(--app-text-2); line-height: 1.55; }

/* -- Trust Bar -------------------------------------------------- */
.trust-bar {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--app-border);
}
.trust-item {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 20px 16px; background: var(--app-surface); text-align: center;
}
.trust-item__number { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--app-accent); }
.trust-item__label { font-size: 0.8rem; color: var(--app-text-2); }

/* -- Reference Cards -------------------------------------------- */
.ref-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.ref-card {
  padding: 20px; background: var(--app-surface);
  border: 1px solid var(--app-border); border-radius: var(--radius);
}
.ref-card__image { height: 140px; margin-bottom: 12px; border-radius: var(--radius-sm); }
.ref-card__title { font-weight: 600; font-size: 0.95rem; color: var(--app-text-1); margin-bottom: 4px; }
.ref-card__location { font-size: 0.78rem; color: var(--app-accent); font-weight: 500; margin-bottom: 8px; }
.ref-card__desc { font-size: 0.85rem; color: var(--app-text-2); line-height: 1.55; }

/* -- Team Grid -------------------------------------------------- */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.team-card {
  display: flex; gap: 16px; padding: 20px;
  background: var(--app-surface); border: 1px solid var(--app-border); border-radius: var(--radius);
}
.team-card__avatar { width: 80px; height: 100px; border-radius: var(--radius-sm); flex-shrink: 0; }
.team-card__name { font-weight: 600; font-size: 0.95rem; color: var(--app-text-1); margin-bottom: 2px; }
.team-card__role { font-size: 0.82rem; color: var(--app-accent); font-weight: 500; margin-bottom: 8px; }
.team-card__desc { font-size: 0.82rem; color: var(--app-text-2); line-height: 1.5; }

/* -- Testimonials ----------------------------------------------- */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.testimonial {
  padding: 20px; background: var(--app-surface);
  border: 1px solid var(--app-border); border-radius: var(--radius);
}
.testimonial__text { font-size: 0.9rem; color: var(--app-text-1); line-height: 1.55; font-style: italic; margin-bottom: 12px; }
.testimonial__author { font-size: 0.8rem; font-weight: 600; color: var(--app-text-2); }

/* -- Contact Block ---------------------------------------------- */
.site-contact-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px;
}
.site-contact-grid p { font-size: 0.88rem; color: var(--app-text-2); line-height: 1.6; margin-bottom: 8px; }
.site-contact-grid strong { color: var(--app-text-1); }

/* -- Site Footer ------------------------------------------------ */
.site-footer {
  padding: 24px 32px; background: var(--app-surface);
  border-top: 1px solid var(--app-border);
  font-size: 0.78rem; color: var(--app-text-3); text-align: center;
}

/* -- Form Grid -------------------------------------------------- */
.site-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* -- Success Message -------------------------------------------- */
.form-success {
  text-align: center; padding: 40px 20px;
}
.form-success__icon {
  width: 56px; height: 56px; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  background: #dcfce7; color: #166534; border-radius: 50%;
  font-size: 1.5rem; font-weight: 700;
}
.form-success h3 { color: var(--app-text-1); margin-bottom: 8px; }
.form-success p { color: var(--app-text-2); font-size: 0.9rem; }

/* -- Price List ------------------------------------------------- */
.price-tabs { display: flex; gap: 8px; margin-bottom: 20px; }
.price-tab {
  padding: 6px 16px; border-radius: 99px; font-size: 0.82rem; font-weight: 500;
  border: 1px solid var(--app-border); color: var(--app-text-2);
  cursor: pointer; transition: all var(--transition-fast); background: var(--app-surface);
}
.price-tab:hover { border-color: var(--app-accent); color: var(--app-accent); }
.price-tab.active { background: var(--app-accent); color: #fff; border-color: var(--app-accent); }

.price-list { display: flex; flex-direction: column; }
.price-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px; border-bottom: 1px solid var(--app-border);
}
.price-item:last-child { border-bottom: none; }
.price-item:hover { background: var(--app-accent-light); }
.price-item__name { font-size: 0.9rem; color: var(--app-text-1); }
.price-item__meta { display: flex; gap: 16px; align-items: center; }
.price-item__duration { font-size: 0.78rem; color: var(--app-text-3); }
.price-item__price { font-family: var(--font-mono); font-weight: 600; font-size: 0.9rem; color: var(--app-accent); }

/* -- Hours Table ------------------------------------------------ */
.hours-table { max-width: 500px; }
.hours-table td { font-size: 0.9rem; padding: 8px 14px; }
