:root{
  --bg:#0D597A;                /* Deep Atoll Blue */
  --surface:#015173;           /* Dark Steel Blue */
  --surface-2:#0B3F57;         /* Deeper tone */
  --text:#F3F6FF;
  --muted:#C8E4EE;

  --primary:#1b9dd9;
  --primary-strong:#008cc7;

  --accent:#C73800;            /* Industrial Red */
  --border:rgba(255,255,255,.12);
}


*{box-sizing:border-box}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color:var(--text);
  background:
    radial-gradient(900px 500px at 12% 8%, rgba(95,211,255,.18), transparent 60%),
    linear-gradient(180deg, #070b14, var(--bg));
}

.wrap{max-width:var(--max); margin:0 auto; padding:22px 16px}
.header{display:flex; justify-content:space-between; align-items:center; gap:14px}
/* ============================= */
/* HEADER + NAVIGATION */
/* ============================= */

.header{
  display:flex;
  flex-direction:column;
  gap:14px;
  padding:20px 0 10px 0;
}

.header-top{
  display:flex;
  align-items:center;
  justify-content:flex-start;
}

.main-nav{
  display:flex;
  gap:28px;
  align-items:center;
  flex-wrap:wrap;
}

.main-nav a{
  text-decoration:none;
  color:var(--muted);
  font-size:14px;
  font-weight:500;
  letter-spacing:0.5px;
  transition:all 0.25s ease;
  padding-bottom:4px;
  border-bottom:2px solid transparent;
}

.main-nav a:hover{
  color:#ffffff;
  border-bottom:2px solid var(--accent);
}

.brand{font-weight:800; letter-spacing:.4px}
.nav{display:flex; gap:10px; flex-wrap:wrap}
.nav a{color:var(--muted); text-decoration:none; font-size:13px; border:1px solid var(--border); padding:6px 10px; border-radius:999px}
.nav a:hover{color:var(--text)}

.hero{padding:20px 0 6px}
.hero h1{margin:0 0 10px; font-size:34px; line-height:1.1}
.lead{margin:0 0 14px; color:var(--muted); line-height:1.7; max-width:72ch}

.ctaRow{display:flex; gap:10px; flex-wrap:wrap; margin-top:10px}
.btn{
  display:inline-block;
  padding:12px 20px;
  border-radius:8px;
  border:1px solid var(--border);
  background:transparent;
  color:var(--text);
  text-decoration:none;
  font-weight:500;
  font-size:14px;
  transition:all 0.25s ease;
  cursor:pointer;
}

.btn:hover{
  background:rgba(255,255,255,0.06);
  border-color:rgba(255,255,255,0.25);
}

.btnPrimary{
  display:inline-block;
  padding:12px 22px;
  border-radius:8px;
  border:none;
  background:#C73800;                 /* Industrial Red */
  color:#ffffff;
  text-decoration:none;
  font-weight:600;
  font-size:14px;
  transition:all 0.25s ease;
  cursor:pointer;
}

.btnPrimary:hover{
  background:#a82e00;                 /* Slightly darker red on hover */
  transform:translateY(-2px);
  box-shadow:0 6px 16px rgba(199,56,0,0.35);
}

.btnPrimary:active{
  transform:translateY(0px);
  box-shadow:none;
}

.grid{display:grid; grid-template-columns:repeat(3,1fr); gap:12px; margin-top:14px}
@media (max-width:900px){ .grid{grid-template-columns:1fr} }

.card{
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

.card h2{margin:0 0 8px; font-size:18px}
.card p{margin:0 0 10px; color:var(--muted); line-height:1.65}
.card ul{margin:0; padding-left:18px; color:var(--text)}
.muted{color:var(--muted)}
.small{font-size:12px}

.contact{margin-top:12px}
.form{display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-top:10px}
.form label{display:flex; flex-direction:column; gap:6px; font-size:13px; color:var(--muted)}
.form .full{grid-column:1 / -1}
input,select,textarea{
  width:100%;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid var(--border);
  background:rgba(0,0,0,.18);
  color:var(--text);
  outline:none;
}
textarea{resize:vertical}

.footer{padding-top:8px; color:var(--muted); font-size:12px}
.footer a{color:var(--muted)}
.footer a:hover{color:var(--text)}
.section{ margin-top:14px; }
.sectionTitle{ margin:0 0 10px; font-size:18px; }

.grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:12px; }
@media (max-width:1000px){ .grid{ grid-template-columns:repeat(2,1fr);} }
@media (max-width:640px){ .grid{ grid-template-columns:1fr;} }

.card h3{ margin:0 0 8px; font-size:16px; }
.card p{ margin:0; color:var(--muted); line-height:1.65; }

.phases{ display:grid; grid-template-columns:repeat(2,1fr); gap:12px; margin-top:12px; }
@media (max-width:900px){ .phases{ grid-template-columns:1fr; } }

.phaseTop{
  display:flex; align-items:center; justify-content:space-between;
  margin-bottom:8px;
}
.phaseLabel{
  font-size:12px; color:var(--muted);
  border:1px solid var(--border); padding:4px 8px; border-radius:999px;
}
.phaseIcon{
  display:inline-flex; align-items:center; justify-content:center;
  width:34px; height:34px; border-radius:12px;
  border:1px solid var(--border);
  background:rgba(0,0,0,.18);
  color:var(--text);
}
.logo{
  display:flex;
  align-items:center;
  text-decoration:none;
}

.logo img{
  display:block;
  height:120px;
  width:auto;
}
/* =========================================
   MOBILE RESPONSIVE OVERRIDES
   Keeps desktop unchanged, adjusts for phones
   ========================================= */

/* Tablets and smaller */
@media (max-width: 900px){
  .wrap{
    padding-left:16px;
    padding-right:16px;
  }

  .main-nav{
    gap:14px;
  }

  .grid{
    grid-template-columns:repeat(2, 1fr);
  }

  .phases{
    grid-template-columns:1fr;
  }
}

/* Phones */
@media (max-width: 600px){

  /* Header layout */
  .header{
    gap:10px;
    padding:16px 0 8px 0;
  }

  .logo img{
    height:42px;
  }

  /* Nav becomes a “scrollable row” so it doesn’t wrap ugly */
  .main-nav{
    overflow-x:auto;
    white-space:nowrap;
    gap:12px;
    padding-bottom:6px;
    -webkit-overflow-scrolling:touch;
  }

  .main-nav a{
    display:inline-block;
    font-size:13px;
    padding:6px 10px;
    border:1px solid var(--border);
    border-radius:999px;
    background:rgba(255,255,255,0.04);
  }

  .main-nav a:hover{
    border-color:rgba(255,255,255,0.28);
  }

  /* Hero typography */
  .hero h1{
    font-size:34px;
    line-height:1.15;
  }

  .lead{
    font-size:15px;
  }

  /* Cards go single-column */
  .grid{
    grid-template-columns:1fr;
  }

  /* Reduce section spacing */
  .section{
    margin-top:12px;
  }

  .card{
    padding:14px;
  }
}
/* ============================= */
/* NEWS PAGE (inspired grid layout) */
/* ============================= */

.news{ padding:10px 0 40px; }

.newsHeader h1{
  margin:0;
  font-size:28px;
  letter-spacing:0.5px;
}

.newsHeader p{
  margin:8px 0 0;
  max-width:70ch;
}

.featuredCard{
  margin-top:18px;
  border-radius:18px;
  overflow:hidden;
  background:rgba(255,255,255,0.04);
  border:1px solid var(--border);
  box-shadow:0 10px 35px rgba(0,0,0,0.35);
}

.featuredLink{
  display:grid;
  grid-template-columns: 1.2fr 1fr;
  text-decoration:none;
  color:var(--text);
}

.featuredMedia{
  min-height:260px;
  background:rgba(255,255,255,0.06);
}

.featuredMedia img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.featuredContent{
  padding:22px;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.featuredContent h2{
  margin:0;
  font-size:22px;
  line-height:1.25;
}

.dateRow{
  margin-top:auto;
}

.date{
  font-size:12px;
  color:var(--muted);
  letter-spacing:0.8px;
}

.tag{
  display:inline-block;
  font-size:11px;
  font-weight:600;
  letter-spacing:0.8px;
  text-transform:uppercase;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.12);
  color:var(--muted);
  width:max-content;
}

.tag-featured{
  background:rgba(199,56,0,0.18);
  border:1px solid rgba(199,56,0,0.35);
  color:#ffd3c2;
}

.newsGrid{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:16px;
}

.newsCard{
  border-radius:16px;
  overflow:hidden;
  background:rgba(255,255,255,0.04);
  border:1px solid var(--border);
  box-shadow:0 10px 30px rgba(0,0,0,0.28);
  transition:transform 0.2s ease, border-color 0.2s ease;
}

.newsCard:hover{
  transform:translateY(-3px);
  border-color:rgba(255,255,255,0.20);
}

.newsCard a{
  display:block;
  text-decoration:none;
  color:var(--text);
}

.newsMedia{
  height:140px;
  background:rgba(255,255,255,0.06);
}

.newsMedia img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.newsBody{
  padding:14px;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.newsBody h3{
  margin:0;
  font-size:15px;
  line-height:1.35;
}

.main-nav a.is-active{
  color:#ffffff;
  border-bottom:2px solid var(--accent);
}

/* Responsive */
@media (max-width: 1000px){
  .featuredLink{ grid-template-columns:1fr; }
  .featuredMedia{ min-height:220px; }
  .newsGrid{ grid-template-columns:repeat(2, 1fr); }
}

@media (max-width: 600px){
  .newsGrid{ grid-template-columns:1fr; }
  .featuredContent h2{ font-size:20px; }
}
