/* ========================================
   NextPhase Project Solutions
   Clean GovCon / Prime Contractor Theme
======================================== */

/* ===== Variables ===== */
:root{
  --bg:#ffffff;
  --text:#0f172a;
  --muted:#64748b;

  --accent:#1e73be;
  --accent-dark:#0b4d87;

  --border:#e2e8f0;
  --surface:#ffffff;
  --surface-2:#f8fafc;

  --radius:14px;
  --container:1150px;
}

/* ===== Base ===== */
*{ box-sizing:border-box; }

body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
}

a{ text-decoration:none; color:inherit; }

.container{
  max-width:var(--container);
  margin:auto;
  padding:0 22px;
}

/* ========================================
   HEADER / NAV
======================================== */

.site-header{
  position:sticky;
  top:0;
  background:#ffffff;
  border-bottom:1px solid var(--border);
  z-index:100;
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:120px;   /* bigger header */
}


.brand-logo{
  height:100px;   /* MUCH bigger */
  width:auto;
}


/* Nav */
.nav{
  display:flex;
  gap:28px;
  align-items:center;
  font-weight:600;
}

.nav a{
  font-size:14px;
  letter-spacing:.04em;
  padding:6px 0;
  position:relative;
  color:#1f2937;
}

.nav a:hover{
  color:var(--accent);
}

.nav a.active{
  color:var(--accent);
}

.nav a.active::after{
  content:"";
  position:absolute;
  bottom:-6px;
  left:0;
  right:0;
  height:2px;
  background:var(--accent);
}

/* ========================================
   HERO / PAGE HEADERS
======================================== */

.section{
  padding:70px 0;
}

h1{
  font-size:42px;
  margin-bottom:18px;
  letter-spacing:-.02em;
}

h2{
  font-size:24px;
  margin-bottom:12px;
}

p{
  color:var(--muted);
}

/* ========================================
   CARDS / SERVICES
======================================== */

.card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:26px;
  margin-bottom:20px;
  transition:.2s;
}

.card:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 25px rgba(0,0,0,.08);
}

/* ========================================
   BUTTONS
======================================== */

.btn{
  display:inline-block;
  background:var(--accent);
  color:#fff;
  padding:12px 20px;
  border-radius:10px;
  font-weight:700;
  font-size:14px;
  transition:.2s;
}

.btn:hover{
  background:var(--accent-dark);
}

/* ========================================
   FORMS
======================================== */

input, select, textarea{
  width:100%;
  padding:12px;
  border:1px solid var(--border);
  border-radius:10px;
  margin-top:6px;
  margin-bottom:14px;
}

input:focus,
textarea:focus,
select:focus{
  outline:none;
  border-color:var(--accent);
  box-shadow:0 0 0 3px rgba(30,115,190,.15);
}

/* ========================================
   FOOTER
======================================== */

.site-footer{
  border-top:1px solid var(--border);
  padding:24px 0;
  font-size:14px;
  color:var(--muted);
}

/* ========================================
   MOBILE
======================================== */

@media (max-width:900px){

  .nav{
    gap:14px;
    font-size:13px;
  }

  h1{
    font-size:32px;
  }

  .brand-logo{
    height:58px;
  }
}

@media (max-width:600px){

  .nav{
    display:none; /* simple mobile hide */
  }

  .header-inner{
    justify-content:center;
  }
}

/* HERO */
.hero{
  padding:120px 0 100px;
  text-align:left;
}

.hero h1{
  font-size:54px;
  line-height:1.1;
  margin-bottom:18px;
}

.hero-sub{
  font-size:18px;
  color:#64748b;
  max-width:700px;
}

.hero-actions{
  margin-top:28px;
  display:flex;
  gap:14px;
}


/* SERVICE GRID */
.service-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.service-card{
  padding:24px;
  border:1px solid #e2e8f0;
  border-radius:14px;
  background:#fff;
  transition:.2s;
}

.service-card:hover{
  transform:translateY(-4px);
  box-shadow:0 10px 20px rgba(0,0,0,.08);
}

.section-light{
  background:#f8fafc;
}


/* badges */
.badge{
  display:inline-block;
  padding:8px 14px;
  background:#e6f1fb;
  color:#1e73be;
  border-radius:999px;
  font-weight:700;
  font-size:13px;
  margin:6px;
}


/* CTA */
.cta{
  background:#1e73be;
  color:#fff;
  padding:50px 0;
  text-align:center;
}

.cta-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
}

.cta .btn{
  background:#fff;
  color:#1e73be;
}


/* responsive */
@media (max-width:900px){
  .service-grid{ grid-template-columns:1fr; }
  .hero h1{ font-size:38px; }
}

