/* ============= RESET & BASE ============= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #111827;
  background-color: #f3f4f6;
}

.wrapper {
  width: 92%;
  max-width: 1120px;
  margin: 0 auto;
  padding-bottom: 40px;
}

/* ============= HEADER ============= */

.site-header {
  background: #0b4f6c;
  color: #ffffff;
  padding: 10px 0;
}

.site-header .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  height: 42px;
  width: auto;
}

.brand-text {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.1;
}

.brand-text span {
  font-size: 0.9rem;
  font-weight: normal;
  display: block;
}

/* NAV */

nav ul {
  list-style: none;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}

nav a:hover {
  text-decoration: underline;
}

/* ============= HERO (HOME) ============= */

.hero {
  position: relative;
  color: #ffffff;
  padding: 80px 0 70px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #0b4f6c, #111827);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.16), transparent 60%);
  pointer-events: none;
}

.hero .wrapper {
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 1.4fr);
  gap: 32px;
  align-items: center;
}

.hero h1 {
  font-size: 2.25rem;
  margin-bottom: 10px;
}

.hero p {
  max-width: 620px;
  font-size: 1rem;
  opacity: 0.96;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}

.badge {
  font-size: 0.78rem;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.hero-card {
  background: rgba(15, 23, 42, 0.88);
  border-radius: 10px;
  padding: 16px 18px;
  font-size: 0.9rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}

/* ============= PAGE HERO (OTHER PAGES) ============= */

.page-hero {
  background: #e5f3fb;
  border-bottom: 1px solid #d1e4f3;
  padding: 32px 0 26px 0;
}

.page-hero h1 {
  font-size: 1.9rem;
  color: #0b4f6c;
  margin-bottom: 6px;
}

.page-hero p {
  max-width: 720px;
  font-size: 0.98rem;
  color: #374151;
}

/* ============= BUTTONS ============= */

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.95rem;
}

.btn-primary {
  background: #22c55e;
  color: #022c22;
  font-weight: 600;
}

.btn-primary:hover {
  background: #16a34a;
}

.btn-secondary {
  background: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ============= GENERIC SECTIONS ============= */

main {
  padding-top: 24px;
}

.section {
  margin-top: 28px;
}

.section h2 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #0b4f6c;
}

.section p {
  margin-bottom: 8px;
}

/* GRID CARDS – 3 PER ROW ON DESKTOP */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.card {
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  padding: 14px 16px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
  font-size: 0.94rem;
}

.card h3 {
  font-size: 1.03rem;
  margin-bottom: 4px;
  color: #111827;
}

/* PILL LIST */

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.pill {
  background: #e5f3fb;
  color: #0b4f6c;
  font-size: 0.78rem;
  padding: 4px 10px;
  border-radius: 999px;
}

/* PROCESS / STEPS */

.process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.step-num {
  display: inline-block;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #0b4f6c;
  color: white;
  font-size: 0.8rem;
  text-align: center;
  line-height: 22px;
  margin-right: 6px;
}

/* TWO-COLUMN LAYOUTS */

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: flex-start;
}

/* TIMELINE (ABOUT PAGE) */

.timeline {
  border-left: 2px solid #d1d5db;
  padding-left: 18px;
  margin-top: 6px;
}

.timeline-item {
  margin-bottom: 12px;
}

.timeline-item h3 {
  margin-bottom: 2px;
  font-size: 0.98rem;
  color: #111827;
}

.timeline-item span {
  font-size: 0.8rem;
  color: #6b7280;
}

/* TABLE – JOB LISTINGS */

.job-list {
  width: 100%;
  border-collapse: collapse;
  margin-top: 6px;
  font-size: 0.9rem;
}

.job-list th,
.job-list td {
  border-bottom: 1px solid #e5e7eb;
  padding: 6px 4px;
  text-align: left;
}

.job-list th {
  font-weight: 600;
  color: #374151;
}

/* ============= FORMS & CONTACT ============= */

form {
  max-width: 600px;
}

.form-row {
  margin-bottom: 12px;
}

label {
  display: block;
  margin-bottom: 4px;
  font-size: 0.9rem;
}

input,
textarea,
select {
  width: 100%;
  padding: 8px;
  border-radius: 6px;
  border: 1px solid #d1d5db;
  font-size: 0.95rem;
}

textarea {
  min-height: 110px;
}

.contact-box {
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  padding: 16px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
  font-size: 0.93rem;
}

/* ============= FOOTER ============= */

.site-footer {
  background: #0b4f6c;
  color: #ffffff;
  padding: 14px 0;
  font-size: 0.85rem;
  margin-top: 30px;
}

.site-footer .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* ============= RESPONSIVE BREAKPOINTS ============= */

/* 2 cards per row on medium screens */
@media (max-width: 900px) {
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* 1 card per row on small screens */
@media (max-width: 600px) {
  .card-grid,
  .process {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 800px) {
  .site-header .wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding: 60px 0 50px 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  nav ul {
    gap: 12px;
  }
}
/* ============= MODERN ENHANCEMENTS (APPENDED) ============= */
/* Adds: consistent button styles, modern footer, card icon support, better spacing */

/* Buttons: unify look everywhere (including inline buttons) */
a.btn-primary,
button.btn-primary,
input.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.1px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

a.btn-primary:hover,
button.btn-primary:hover,
input.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
}

/* Optional secondary button polish */
a.btn-secondary {
  border-radius: 10px;
  transition: transform 140ms ease, background 140ms ease, box-shadow 140ms ease;
}
a.btn-secondary:hover { transform: translateY(-1px); }

/* Page hero: subtle modern look (keeps your current colors) */
.page-hero {
  background: linear-gradient(180deg, #e5f3fb 0%, #eef8ff 100%);
}

/* Card icon support (simple SVG inline) */
.card .card-icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #e5f3fb;
  border: 1px solid #d1e4f3;
  margin-bottom: 10px;
}

.card .card-icon svg {
  width: 20px;
  height: 20px;
  fill: #0b4f6c;
}

/* Optional: slightly more modern card feel without changing layout */
.card {
  border-radius: 14px;
}

/* Footer: clean, consistent, responsive */
.site-footer {
  background: linear-gradient(135deg, #0b4f6c, #08384d);
  margin-top: 40px;
  padding: 22px 0;
}

.site-footer .wrapper {
  align-items: flex-start;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 16px;
  width: 100%;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.92rem;
  line-height: 1.5;
}

.footer-brand strong {
  font-size: 1rem;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.9rem;
  opacity: 0.95;
}

.footer-meta a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.85rem;
  opacity: 0.95;
}

/* Footer responsive */
@media (max-width: 700px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
