/* ── WRIS PAGE SPECIFIC STYLES ── */

:root {
  --navy: #003152;
  --teal: #3da58a;
  --green: #27ae60;
  --gold: #f2994a;
  --light-gray: #f8f9fa;
  --border-gray: #eef2f5;
  --text: #333333;
  --muted: #666666;
  --white: #ffffff;
  --help-bg: #ffecd1;
}

h1, h2, h3, h4, .logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ── HERO ────────────────────────────────────── */
.hero {
  background: #001f3f radial-gradient(circle at top right, #003152 0%, #001f3f 70%);
  padding: 60px 80px;
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://upload.wikimedia.org/wikipedia/commons/e/ec/World_map_blank_without_borders.svg') center/contain no-repeat;
  opacity: 0.1;
  filter: invert(1);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.hero-tag {
  background: var(--green);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -1.5px;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 550px;
}

.btn-portal {
  background: #fdf2d0;
  color: #003152;
  padding: 14px 28px;
  border: none;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.btn-portal svg {
  width: 18px;
  height: 18px;
  stroke: #003152;
  fill: none;
  stroke-width: 2.5;
}

/* ── CORE OBJECTIVE ──────────────────────────── */
.core-sec {
  padding: 100px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.core-text h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
}

.core-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 32px;
}

.core-badges {
  display: flex;
  gap: 48px;
}

.core-badge {
  display: flex;
  gap: 16px;
}

.cb-bar {
  width: 4px;
  height: 40px;
  border-radius: 2px;
}

.bar-teal {
  background: var(--teal);
}

.bar-navy {
  background: var(--navy);
}

.cb-content .cb-num {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}

.cb-content .cb-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
  letter-spacing: 0.5px;
}

.core-img {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.core-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── MONITORING INFRASTRUCTURE ───────────────── */
.infra-sec {
  padding: 100px 80px;
  background: var(--white);
  text-align: center;
}

.infra-hd {
  margin-bottom: 64px;
}

.infra-hd h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.infra-hd p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto;
}

.infra-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.infra-card {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: 12px;
  overflow: hidden;
  text-align: left;
  transition: transform 0.2s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.infra-card:hover {
  transform: translateY(-5px);
}

.ic-img-box {
  position: relative;
  height: 240px;
  background: #111;
}

.ic-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.ic-icon-float {
  position: absolute;
  bottom: -25px;
  left: 32px;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.float-green {
  background: var(--green);
}

.float-navy {
  background: var(--navy);
}

.ic-icon-float svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
}

.ic-body {
  padding: 50px 32px 32px;
}

.ic-body h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.ic-body p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 24px;
}

.ic-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ic-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--navy);
  font-weight: 600;
}

.ic-feature svg {
  width: 18px;
  height: 18px;
  stroke: var(--green);
  fill: none;
  stroke-width: 3;
}

/* ── HYDRO INTEGRATION ──────────────────────── */
.hydro-sec {
  background: #003152;
  padding: 100px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hydro-text h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 48px;
  line-height: 1.2;
}

.hydro-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}

.hi-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hi-green {
  background: var(--green);
}

.hi-gold {
  background: var(--gold);
}

.hi-icon svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
}

.hi-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.hi-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

.hydro-panel {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 40px;
}

.hp-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.hp-stat {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
}

.hp-num {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}

.hp-num-green {
  color: var(--green);
}

.hp-num-gold {
  color: var(--gold);
}

.hp-lbl {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 8px;
  letter-spacing: 1px;
}

.hp-bar-section {
  margin-bottom: 32px;
}

.hp-bar-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
}

.hp-bar-title svg {
  width: 16px;
  height: 16px;
  stroke: var(--green);
  fill: none;
}

.hp-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  margin-bottom: 12px;
  overflow: hidden;
}

.hp-bar-fill {
  height: 100%;
  border-radius: 4px;
}

.hp-bar-g {
  background: var(--green);
  width: 85%;
}

.hp-bar-gold {
  background: #f2c94c;
  width: 65%;
}

.hp-bar-muted {
  background: #2f80ed;
  opacity: 0.6;
  width: 75%;
}

.hp-source {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
}

/* ── CTA SECTION ────────────────────────────── */
.cta-sec {
  padding: 100px 80px;
  text-align: center;
  background: var(--light-gray);
}

.cta-sec h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.cta-sec p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto 48px;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn-primary {
  background: var(--navy);
  color: #fff;
  padding: 16px 32px;
  border: none;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  border-radius: 6px;
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  padding: 14px 30px;
  border: 2px solid var(--navy);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  border-radius: 6px;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-outline:hover {
  background: rgba(0, 49, 82, 0.05);
}

/* ── FOOTER WRIS ────────────────────────────── */
footer {
  padding: 80px 80px 40px;
  background: #f8fafd;
  border-top: 1px solid #eef2f5;
  color: #333;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 80px;
  margin-bottom: 60px;
}

.fb-logo {
  font-family: 'Merriweather', serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: #003152;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.fb-desc {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 450px;
}

.fb-icons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.fb-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #003152;
  text-decoration: none;
  transition: opacity 0.2s;
}

.fb-icon:hover {
  opacity: 0.7;
}

.fb-icon svg {
  width: 20px;
  height: 20px;
  stroke: #003152;
  fill: none;
  stroke-width: 2;
}

.fc h4 {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #003152;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.fc a {
  display: block;
  text-decoration: none;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 12px;
  font-weight: 500;
  transition: color 0.2s;
}

.fc a:hover {
  color: #003152;
}

.footer-bottom {
  border-top: 1px solid #eef2f5;
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #666;
}

.footer-btm-links {
  display: flex;
  gap: 32px;
}

.footer-btm-links a {
  text-decoration: none;
  color: #666;
  font-weight: 600;
  transition: color 0.2s;
}

.footer-btm-links a:hover {
  color: #003152;
}

/* ── RESPONSIVE WRIS ────────────────────────── */
@media (max-width: 1024px) {
  nav { padding: 0 40px; }
  .hero { padding: 60px 40px; }
  .core-sec { grid-template-columns: 1fr; gap: 40px; padding: 60px 40px; }
  .infra-sec { padding: 60px 40px; }
  .hydro-sec { grid-template-columns: 1fr; gap: 40px; padding: 60px 40px; }
  .footer-grid { padding: 0 40px; }
}

@media (max-width: 768px) {
  .hero { height: auto; min-height: 300px; padding: 60px 20px; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-title { font-size: 2.2rem; letter-spacing: -1px; }
  .btn-portal { width: 100%; justify-content: center; }

  .core-sec { padding: 60px 20px; text-align: center; }
  .core-badges { flex-direction: column; gap: 24px; align-items: center; }
  .cb-content .cb-num { font-size: 1.1rem; }
  
  .infra-hd h2 { font-size: 1.8rem; }
  .infra-sec { padding: 60px 20px; }
  .infra-grid { grid-template-columns: 1fr; gap: 30px; }
  .ic-img-box { height: 200px; }

  .hydro-sec { padding: 60px 20px; }
  .hp-stats { flex-direction: column; gap: 20px; }
  .hydro-text h2 { font-size: 1.8rem; margin-bottom: 30px; }

  .cta-sec { padding: 60px 20px; }
  .cta-btns { flex-direction: column; gap: 15px; }
  .cta-btns button { width: 100%; }

  footer { padding: 60px 20px 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; padding: 0; }
  .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
  .footer-btm-links { flex-wrap: wrap; justify-content: center; gap: 15px; }
}
