:root {
  --green: #1a6b2f;
  --green-dark: #0f4a1f;
  --green-light: #2a8a40;
  --green-pale: #e8f4ec;
  --black: #111;
  --gray: #555;
  --light: #f7f9f7;
  --white: #fff;
  --gold: #c9a84c;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Barlow", sans-serif;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
}

/* ─── TOP BAR ─── */
.top-bar {
  background: var(--green-dark);
  color: #cde8d4;
  font-size: 0.78rem;
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.06em;
  padding: 8px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar a {
  color: #cde8d4;
  text-decoration: none;
  margin-left: 24px;
  transition: color 0.2s;
}
.top-bar a:hover {
  color: var(--white);
}
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 6px;
}
.top-bar .btn-login {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #cde8d4;
  padding: 4px 14px;
  border-radius: 2px;
  cursor: pointer;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.07em;
  transition: all 0.2s;
}
.top-bar .btn-login:hover {
  background: rgba(255, 255, 255, 0.12);
}
.top-bar .btn-started {
  background: var(--gold);
  color: #111;
  border: none;
  padding: 5px 16px;
  border-radius: 2px;
  cursor: pointer;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.top-bar .btn-started:hover {
  background: #e0b85a;
}

/* ─── NAVBAR ─── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid #e0e9e2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 72px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.nav-logo img {
  height: 48px;
  display: block;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
}
.nav-links a {
  text-decoration: none;
  color: var(--black);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width 0.25s;
}
.nav-links a:hover {
  color: var(--green);
}
.nav-links a:hover::after {
  width: 100%;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}
.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--black);
  display: block;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      to bottom,
      rgba(5, 30, 12, 0.55) 0%,
      rgba(5, 30, 12, 0.3) 60%,
      rgba(5, 30, 12, 0.72) 100%
    ),
    url("hero.png") center/cover no-repeat;
  transform-origin: center bottom;
  animation: zoomout 12s ease-out forwards;
}
@keyframes zoomout {
  from {
    transform: scale(1.06);
  }
  to {
    transform: scale(1);
  }
}
/* Diagonal green accent */
.hero-bg::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 120px;
  background: var(--white);
  clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 80px 100px;
  max-width: 760px;
  animation: slideup 0.9s 0.3s both ease-out;
}
@keyframes slideup {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-eyebrow {
  display: inline-block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border-left: 3px solid var(--gold);
  padding-left: 10px;
  margin-bottom: 18px;
}
.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 300;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--green);
  color: #fff;
  padding: 14px 32px;
  border: none;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover {
  background: var(--green-light);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: #fff;
  padding: 13px 30px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

/* ─── STATS STRIP ─── */
.stats-strip {
  background: var(--green);
  display: flex;
  justify-content: center;
  gap: 0;
}
.stat-item {
  flex: 1;
  max-width: 260px;
  text-align: center;
  padding: 36px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  transition: background 0.2s;
}
.stat-item:last-child {
  border-right: none;
}
.stat-item:hover {
  background: var(--green-light);
}
.stat-num {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

/* ─── COVERAGE CARDS ─── */
.section {
  padding: 90px 40px;
}
.section-label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 14px;
}
.section-sub {
  font-size: 1rem;
  color: var(--gray);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 54px;
  font-weight: 300;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2px;
}
.card {
  background: var(--light);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s;
}
.card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--green);
  transition: width 0.3s ease;
}
.card:hover::before {
  width: 100%;
}
.card:hover {
  transform: translateY(-4px);
}
.card-icon {
  width: 48px;
  height: 48px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.3rem;
}
.card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--black);
}
.card p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
  font-weight: 300;
}
.card-link {
  display: inline-block;
  margin-top: 16px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 600;
  text-decoration: none;
}
.card-link::after {
  content: " →";
}

/* ─── MAP / COVERAGE BELT ─── */
.coverage-belt {
  background: var(--green-dark);
  padding: 90px 40px;
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}
.coverage-belt-text {
  flex: 1;
  min-width: 280px;
}
.coverage-belt .section-label {
  color: #8dd4a0;
}
.coverage-belt .section-title {
  color: var(--white);
}
.coverage-belt .section-sub {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 32px;
}
.coverage-belt-map {
  flex: 1;
  min-width: 280px;
  position: relative;
  height: 260px;
  background: radial-gradient(
      ellipse at 40% 50%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 70%
    ),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='260' viewBox='0 0 600 260'%3E%3Cellipse cx='300' cy='130' rx='280' ry='110' fill='none' stroke='rgba(255,255,255,0.08)' stroke-width='1'/%3E%3Cellipse cx='300' cy='130' rx='200' ry='80' fill='none' stroke='rgba(255,255,255,0.06)' stroke-width='1'/%3E%3Cellipse cx='300' cy='130' rx='120' ry='50' fill='none' stroke='rgba(255,255,255,0.05)' stroke-width='1'/%3E%3C/svg%3E")
      center/contain no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}
/* Pulse dots for locations */
.pulse-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.pulse-dot::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  animation: pulsering 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}
@keyframes pulsering {
  0% {
    transform: scale(0.5);
    opacity: 1;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

/* ─── NEWS SECTION ─── */
.news-section {
  padding: 90px 40px;
  background: var(--light);
}
.news-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 46px;
  flex-wrap: wrap;
  gap: 16px;
}
.news-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 2px;
}
.news-card {
  background: var(--white);
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.25s;
}
.news-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
.news-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  background: #dde8df;
}
.news-card-img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #c8dec9 0%, #9dbfa0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.news-card-body {
  padding: 24px;
}
.news-tag {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 6px;
}
.news-date {
  font-size: 0.75rem;
  color: #999;
  margin-bottom: 10px;
}
.news-card h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--black);
}
.news-card:first-child h4 {
  font-size: 1.3rem;
}
.view-all-link {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid var(--green);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}
.view-all-link:hover {
  opacity: 0.65;
}

/* ─── CLAIMS BAND ─── */
.claims-band {
  background: var(--white);
  padding: 70px 80px;
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  border-top: 1px solid #e0e9e2;
  border-bottom: 1px solid #e0e9e2;
}
.claims-band-icon {
  width: 70px;
  height: 70px;
  background: var(--green-pale);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}
.claims-band-text {
  flex: 1;
  min-width: 220px;
}
.claims-band h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.claims-band p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
  font-weight: 300;
}
.claims-band-quote {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--green);
  border-left: 3px solid var(--green);
  padding-left: 18px;
  max-width: 300px;
  flex-shrink: 0;
}

/* ─── FOOTER ─── */
footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.65);
  padding: 60px 80px 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-logo img {
  height: 42px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.7;
  font-weight: 300;
  max-width: 240px;
}
.footer-col h5 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 300;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--white);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 0.78rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  margin-left: 20px;
}
.footer-bottom a:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* ─── MOBILE NAV MENU ─── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 200;
  flex-direction: column;
  padding: 30px 40px;
}
.mobile-nav.open {
  display: flex;
}
.mobile-nav-close {
  align-self: flex-end;
  font-size: 1.6rem;
  background: none;
  border: none;
  cursor: pointer;
  margin-bottom: 30px;
  color: var(--black);
}
.mobile-nav a {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--black);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  transition: color 0.2s;
}
.mobile-nav a:hover {
  color: var(--green);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero-content {
    padding: 0 30px 80px;
  }
  .news-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .claims-band {
    padding: 50px 30px;
  }
}
@media (max-width: 600px) {
  .top-bar {
    display: none;
  }
  nav {
    padding: 0 20px;
  }
  .section {
    padding: 60px 20px;
  }
  .coverage-belt {
    padding: 60px 20px;
  }
  .news-section {
    padding: 60px 20px;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  footer {
    padding: 50px 24px 24px;
  }
  .stats-strip {
    flex-wrap: wrap;
  }
  .stat-item {
    min-width: 50%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}

/* Container and Background Shapes */
.login-wrapper {
  position: relative;
  width: 100%;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
}

.bg-shape {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: #0f4a1f;
  top: -100px;
  right: -100px;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: #0f4a1f;
  bottom: -50px;
  left: -50px;
}

/* The Login Card */
.login-card {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 400px;
  text-align: center;
  border: 1px solid #e2e8f0;
}

.logo img {
  height: 60px;
  margin-bottom: 1.5rem;
}

.login-card h2 {
  color: #0f4a1f;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.login-card p {
  color: #64748b;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  line-height: 1.5;
}

/* Form Styling */
.input-field {
  text-align: left;
  margin-bottom: 1.25rem;
}

.input-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 0.5rem;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrapper i {
  position: absolute;
  left: 1rem;
  color: #94a3b8;
  font-size: 1rem;
}

.input-wrapper input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.75rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  outline: none;
}

.input-wrapper input:focus {
  border-color: #0f4a1f;
  box-shadow: 0 0 0 4px rgba(15, 74, 31, 0.1);
}

/* Button Styling */
.login-wrapper .btn-primary {
  width: 100%;
  padding: 0.85rem;
  background-color: #0f4a1f;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, background-color 0.2s;
  margin-top: 1rem;
}

.login-wrapper .btn-primary:hover {
  background-color: #0a3516;
  transform: translateY(-1px);
}

.login-wrapper .btn-primary:active {
  transform: translateY(0);
}

/* Message Area */
#loginMsg {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  min-height: 1.2rem;
}
