/* Landing page – Boundary Commission (reference: gov/office style) */

.landing-root {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #fff;
}

/* Header: top bar + nav (teal/white) */
.landing-header {
  background: #0f766e;
  color: #fff;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.landing-header-top {
  padding: 0.5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.landing-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.landing-logo {
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
}

.landing-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.landing-nav a {
  color: rgba(255,255,255,0.95);
  text-decoration: none;
  font-size: 0.9375rem;
}

.landing-nav a:hover {
  color: #fff;
  text-decoration: underline;
}

.landing-main {
  flex: 1;
}

/* Hero: full-bleed image, overlay text, yellow ticker at bottom */
.landing-hero {
  position: relative;
  min-height: 380px;
  color: #fff;
  padding: 4rem 1.5rem 5rem;
  background: linear-gradient(135deg, #0f766e 0%, #0d9488 50%, #14b8a6 100%);
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.landing-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  z-index: 0;
}

.landing-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.landing-hero-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  margin: 0 0 0.75rem;
  line-height: 1.25;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.landing-hero-subtitle {
  font-size: 1.125rem;
  opacity: 0.95;
  margin: 0;
}

.landing-hero-ticker {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #eab308;
  color: #1c1917;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.landing-hero-ticker-label {
  flex-shrink: 0;
  font-weight: 700;
}

/* Stats: single white card, horizontal row */
.landing-stats {
  padding: 2rem 1.5rem;
  margin-top: -1.5rem;
  position: relative;
  z-index: 2;
}

.landing-stats-card {
  max-width: 1000px;
  margin: 0 auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  padding: 1.5rem;
}

.landing-stats-period {
  font-size: 0.8125rem;
  color: #64748b;
  margin-bottom: 1rem;
  text-align: center;
}

.landing-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}

.landing-stat-card {
  text-align: center;
  padding: 0.5rem;
}

.landing-stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
}

.landing-stat-label {
  font-size: 0.8125rem;
  color: #64748b;
  margin-top: 0.25rem;
}

/* Contact: "Contact" title, phone with icon emphasis */
.landing-contact {
  padding: 2.5rem 1.5rem;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
}

.landing-contact-inner {
  max-width: 600px;
  margin: 0 auto;
}

.landing-contact-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 1rem;
  color: #0f172a;
}

.landing-contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.landing-contact-details p {
  margin: 0;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.landing-contact-phone-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  color: #0f766e;
}

.landing-contact-details a {
  color: #0f766e;
  text-decoration: none;
  font-weight: 500;
}

.landing-contact-details a:hover {
  text-decoration: underline;
}

/* Services block: image + content, primary + outline buttons */
.landing-services-block {
  padding: 3rem 1.5rem;
  background: #fff;
}

.landing-services-block-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 768px) {
  .landing-services-block-inner {
    grid-template-columns: 1fr 1.2fr;
  }
}

.landing-services-block-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.landing-services-block-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  color: #0f172a;
}

.landing-services-block-body {
  color: #475569;
  margin: 0 0 1.5rem;
  line-height: 1.6;
  font-size: 0.9375rem;
}

.landing-services-block-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.landing-services-block-buttons .landing-btn-primary {
  background: #0f766e;
}

.landing-services-block-buttons .landing-btn-primary:hover {
  background: #0d9488;
}

.landing-services-block-buttons .landing-btn-outline-light {
  border: 1px solid #0f766e;
  color: #0f766e;
  background: transparent;
}

.landing-services-block-buttons .landing-btn-outline-light:hover {
  background: rgba(15, 118, 110, 0.08);
}

/* Service cards: dark blue section bar + grid with yellow accent */
.landing-service-cards {
  padding: 0 0 3rem;
  background: #fff;
}

.landing-service-cards-title-bar {
  background: #0c4a6e;
  color: #fff;
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  font-size: 1.125rem;
  font-weight: 700;
}

.landing-service-cards-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.landing-service-card {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.landing-service-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  border-color: #cbd5e1;
}

.landing-service-card-icon {
  width: 12px;
  min-width: 12px;
  height: 48px;
  background: #eab308;
  flex-shrink: 0;
}

.landing-service-card-link {
  flex: 1;
  padding: 1rem 1rem 1rem 0;
  color: inherit;
  text-decoration: none;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  min-width: 0;
}

.landing-service-card-body {
  flex: 1;
  min-width: 0;
}

.landing-service-card-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: #0f172a;
}

.landing-service-card-desc {
  font-size: 0.875rem;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

/* Footer */
.landing-footer {
  padding: 1rem 1.5rem;
  background: #0f172a;
  color: #94a3b8;
  font-size: 0.875rem;
}

.landing-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.landing-footer-inner a {
  color: #e2e8f0;
  text-decoration: none;
}

.landing-footer-inner a:hover {
  text-decoration: underline;
}

/* Buttons */
.landing-btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}

.landing-btn-outline {
  color: #fff;
  border: 1px solid rgba(255,255,255,0.6);
  background: transparent;
}

.landing-btn-outline:hover {
  background: rgba(255,255,255,0.15);
}

.landing-btn-primary {
  background: #0ea5e9;
  color: #fff;
  border: none;
}

.landing-btn-primary:hover {
  background: #0284c7;
}

.landing-loading,
.landing-error {
  max-width: 500px;
  margin: 4rem auto;
  padding: 2rem;
  text-align: center;
}

.landing-error p {
  margin-bottom: 1rem;
  color: #64748b;
}
