:root {
  --teal-dark: #0f4c5c;
  --teal: #1b6f7a;
  --teal-light: #e6f4f6;
  --gold: #d4af37;
  --white: #ffffff;
  --text-dark: #1f2933;
}

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

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text-dark);
  background-color: var(--teal light);
  line-height: 1.6;
}

/* NAV */
.site-header {
  background: var(--teal-dark);
  padding: 14px 0;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  color: var(--white);
  font-weight: bold;
  font-size: 1.1rem;
}

nav {
  display: flex;
  gap: 18px;
}

nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
}

nav a:hover {
  color: var(--gold);
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-gold {
  background-color: #c9a44c;
  color: #ffffff;
  border: 2px solid #c9a44c;
}

.btn-gold:hover {
  background-color: #b8943f;
  border-color: #b8943f;
  color: #ffffff;
}


/* HERO */
.hero {
  background: linear-gradient(rgba(15,76,92,.85), rgba(15,76,92,.85)),
    url('hero.jpg') center/cover;
  color: var(--white);
  padding: 80px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero-buttons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.hero-helper-text {
  margin-top: 20px;
  margin-bottom: 0;
}

.hero-cta-spacer {
  margin-top: 28px;
}

/* SECTIONS */
.section {
  padding: 60px 20px;
}

.section-alt {
  background: var(--teal-light);
}

.container {
  max-width: 1100px;
  margin: auto;
}

/* SERVICE BOXES */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.service-box {
  background: var(--teal);
  border-radius: 6px;
  padding: 25px;
  text-align: center;
}

.service-box h3 {
  color: var(--teal-light);
  margin-bottom: 10px;
}

/* FOOTER */
.site-footer {
  background: var(--teal-dark);
  color: var(--white);
  text-align: center;
  padding: 25px;
  font-size: .9rem;
}


/* --- Paragraph spacing / readability --- */
p {
  margin-bottom: 1.25rem;
  line-height: 1.65;
}

/* Extra breathing room for long-form sections (About, Services, etc.) */
.section p {
  max-width: 800px;
}


.form-card {
  margin: 0 auto;
  max-width: 710px;
}


/* ===============================
   DoDD PAGE SPACING FIX ONLY
   =============================== */

.dodd-page .section {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.dodd-page p {
  margin-bottom: 1rem;
}

.dodd-page h2 {
  margin-bottom: 0.5rem;
}

/* Tighten gap before service lists */
.dodd-page .card-grid {
  margin-top: 1.5rem;
}

/* Reduce space before Who We Serve */
.dodd-page h2 + p {
  margin-top: 0.5rem;
}

/* Tighten CTA spacing */
.dodd-page .section-teal p {
  margin-bottom: 1.25rem;
}



/* =========================
   PASSPORT PAGE MICRO-SPACING
   ========================= */

.passport-page .section {
  padding: 50px 0;
}

.passport-page .section h2 {
  margin-bottom: 16px;
}

.passport-page .section p {
  margin-bottom: 16px;
}

/* Reduce space between intro paragraphs and next section */
.passport-page .section + .section {
  margin-top: -40px;
}

/* Tighten spacing above PASSPORT services section */
.passport-page .section-teal {
  padding-top: 25px;
  padding-bottom: 25px;
}

/* Tighten spacing before CTA */
.passport-page .section-gold {
  padding-top: 20px;
  padding-bottom: 20px;
}

/* Reduce extra spacing inside CTA */
.passport-page .section-gold p {
  margin-bottom: 20px;
}


.hero-centered-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 1.5rem;
}


.home-page .section {
  padding-top: 2rem;
  padding-bottom: 2.25rem;
}

.home-page .section-teal {
  padding-top: 2.25rem;
  padding-bottom: 2.5rem;
}

/* Reduce space between headings and text */
.home-page .section h2 {
  margin-bottom: 0.75rem;
}

.home-page .section p {
  margin-bottom: 1.75rem;
}

/* Cards closer together */
.home-page .card-grid {
  margin-top: 1.25rem;
}

/* Final CTA tightening */
.home-page .section-teal h2 {
  margin-bottom: 0.5rem;
}

.home-page .section-teal p {
  margin-bottom: 1.25rem;
}

.home-page {
  background-color: var(--primary-dark);
}


.services-page .services-header {
  background-color: var(--bg);
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.services-page .services-header h1 {
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
}


/* ===============================
   SERVICES PAGE – POLISHED TEXT HIERARCHY
   =============================== */

.services-page .service-box h3 {
  color: #ffffff;
  margin-bottom: 0.5rem;
  position: relative;
  padding-bottom: 0.35rem;
}

/* Gold accent underline */
.services-page .service-box h3::after {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  background-color: var(--accent);
  margin-top: 0.4rem;
  border-radius: 2px;
}

.services-page .service-box p {
  color: rgba(255, 255, 255, 0.92);
}

