/* =============================
   RESET
============================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Inter',sans-serif;
  background:#f8f9fa;
  color:#333;
  line-height:1.7;
  min-height:100vh;
  display:flex;
  flex-direction:column;
}

/* =============================
   GLOBAL CONTAINER
============================= */
.g-container{
  width:90%;
  max-width:1280px;
  margin:auto;
  padding:0 24px;
}

/* =============================
   GLOBAL HEADER (SHARED BASE)
============================= */
.g-header{
  background:#1d3557;
  position:fixed;
  top:0;
  width:100%;
  z-index:1000;
  box-shadow:0 2px 10px rgba(0,0,0,0.15);
  border-bottom:3px solid #e63946;
  height:90px;
}

.g-header-container{
  max-width:1280px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 24px;
  height:100%;
}

/* LOGO */
.g-brand{
  display:flex;
  align-items:center;
  text-decoration:none;
  height:100%;
}

.g-brand img{
  height:85%;
  object-fit:contain;
}

/* HEADER SPACER */
.g-header-spacer{
  height:90px;
}

/* =============================
   NAV LINKS (GLOBAL)
============================= */
.g-nav{
  display:flex;
  align-items:center;
  gap:25px;
}

.g-nav a{
  color:#fff;
  font-weight:600;
  text-decoration:none;
  padding:5px 10px;
  transition:0.3s;
}

/* REMOVE UNDERLINES */
.g-nav a,
.g-nav a:visited,
.g-nav a:hover,
.g-nav a:active{
  text-decoration:none !important;
}

.g-nav a:hover{
  color:#e63946;
}

/* =============================
   BUTTON SYSTEM (GLOBAL)
============================= */
.g-btn{
  padding:14px 28px;
  border-radius:6px;
  font-weight:600;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  transition:0.25s ease;
}

/* PRIMARY */
.g-btn-primary{
  background:#c40000;
  color:white;
}

.g-btn-primary:hover{
  background:#a80000;
}

/* SECONDARY */
.g-btn-secondary{
  background:#457b9d;
  color:white;
}

.g-btn-secondary:hover{
  background:#386a8e;
}

/* OUTLINE */
.g-btn-outline{
  border:2px solid white;
  color:white;
}

.g-btn-outline:hover{
  background:white;
  color:#333;
}

/* =============================
   MOBILE BUTTONS (ONLY MOBILE MENU)
============================= */
.mobile-btn{
  font-weight:700;
  font-size:1rem;
  padding:12px 18px;
  border-radius:8px;
  width:100%;
  text-align:center;
}

/* remove underline force */
.mobile-btn,
.mobile-btn:visited,
.mobile-btn:hover,
.mobile-btn:active{
  text-decoration:none !important;
}

/* =============================
   URGENT BANNER
============================= */
.g-urgent-banner{
  background:#ffcc00;
  padding:12px;
  text-align:center;
  font-weight:600;
}

.g-urgent-banner a{
  color:black;
  text-decoration:none;
}

/* =============================
   SECTIONS
============================= */
.g-section{
  padding:50px 0;
}

.g-section-title{
  text-align:center;
  font-size:2.6rem;
  margin-bottom:60px;
}

/* =============================
   GRID SYSTEM
============================= */
.g-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:40px;
}

/* =============================
   CARDS
============================= */
.g-card{
  background:white;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  transition:0.3s;
}

.g-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 50px rgba(0,0,0,0.12);
}

.g-card img{
  width:100%;
  height:230px;
  object-fit:cover;
}

.g-card-content{
  padding:28px;
}

/* =============================
   STATS
============================= */
.g-stats{
  background:#0b2545;
  color:white;
  text-align:center;
  padding:100px 0;
}

.g-stats-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:40px;
}

.g-stat-number{
  font-size:3.5rem;
  color:#d7263d;
  font-weight:700;
}

/* =============================
   MOBILE
============================= */
@media(max-width:768px){

  .g-grid{
    grid-template-columns:1fr;
  }

  .mobile-btn{
    width:100%;
  }

}