*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #1B2A4A;
  --blue:   #2D6AA0;
  --light:  #F4F6F9;
  --border: #DDE2EA;
  --text:   #2C3345;
  --muted:  #6B7489;
  --white:  #FFFFFF;
}

body {
  font-family: 'Georgia', serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

/* ── NAV ── */
header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}

nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 1rem;
}

.logo img {
  height: 52px;
  width: auto;
  display: block;
}

.logo-name {
  color: var(--white);
  font-family: 'Georgia', serif;
  font-size: 1.1rem;
  font-weight: normal;
  text-transform: none;
  letter-spacing: .03em;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav a {
  color: #C8D8E8;
  text-decoration: none;
  font-family: 'Arial', sans-serif;
  font-size: .9rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}

nav a:hover, nav a.active {
  color: var(--white);
  border-bottom-color: #8FBBDF;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #2D4A7A 100%);
  color: var(--white);
  padding: 4rem 1.5rem;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 700px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-logo { text-align: center; }
}

.hero-logo img {
  width: 220px;
  height: auto;
  border-radius: 50%;
  background: white;
  padding: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
}

.hero h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: normal;
  letter-spacing: .03em;
  margin-bottom: 1rem;
}

.hero p {
  font-family: 'Arial', sans-serif;
  font-size: 1.05rem;
  color: #B8CCDF;
  max-width: 520px;
  margin: 0 0 2rem;
}

@media (max-width: 700px) {
  .hero p { margin: 0 auto 2rem; }
}

.btn {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  text-decoration: none;
  font-family: 'Arial', sans-serif;
  font-size: .9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .85rem 2.2rem;
  border-radius: 3px;
  transition: background .2s;
}

.btn:hover { background: #235A8A; }

/* ── SECTIONS ── */
section { padding: 4rem 1.5rem; }

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-family: 'Arial', sans-serif;
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: .5rem;
}

.section-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: normal;
  color: var(--navy);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-family: 'Arial', sans-serif;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 3rem;
}

/* ── WELCOME SECTION ── */
.welcome-section { background: var(--white); }

.welcome-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 720px) {
  .welcome-grid {
    grid-template-columns: 1fr;
  }
  .welcome-image { display: none; }
}

.welcome-image img {
  width: 260px;
  height: auto;
  opacity: .12;
}

.body-text {
  font-family: 'Arial', sans-serif;
  font-size: .97rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-top: 4px solid var(--blue);
  padding: 2rem 1.75rem;
  border-radius: 4px;
}

.service-card .icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: .6rem;
}

.service-card p {
  font-family: 'Arial', sans-serif;
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ── WHY US STRIP ── */
.strip {
  background: var(--navy);
  color: var(--white);
}

.strip .section-title { color: var(--white); }

.strip .section-subtitle { color: #8FBBDF; }

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.pillar h4 {
  font-size: 1rem;
  margin-bottom: .4rem;
  color: var(--navy);
}

.pillar p {
  font-family: 'Arial', sans-serif;
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 720px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-info h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 1rem;
}

.contact-info p {
  font-family: 'Arial', sans-serif;
  font-size: .9rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.contact-info address {
  font-style: normal;
  font-family: 'Arial', sans-serif;
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.8;
}

.contact-info address strong { color: var(--text); }

/* ── FORM ── */
.form-card {
  background: var(--light);
  border: 1px solid var(--border);
  padding: 2.5rem;
  border-radius: 4px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 540px) {
  .form-row { grid-template-columns: 1fr; }
}

.field {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.25rem;
}

.field label {
  font-family: 'Arial', sans-serif;
  font-size: .8rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: .4rem;
}

.field input,
.field select,
.field textarea {
  font-family: 'Arial', sans-serif;
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: .65rem .85rem;
  outline: none;
  transition: border-color .2s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(45,106,160,.12);
}

.field textarea { resize: vertical; min-height: 130px; }

.form-submit { margin-top: .5rem; }

.btn-submit {
  background: var(--blue);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-family: 'Arial', sans-serif;
  font-size: .9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .9rem 2.5rem;
  border-radius: 3px;
  transition: background .2s;
}

.btn-submit:hover { background: #235A8A; }

.form-message {
  font-family: 'Arial', sans-serif;
  font-size: .9rem;
  margin-top: 1rem;
  padding: .75rem 1rem;
  border-radius: 3px;
  display: none;
}

.form-message.success {
  display: block;
  background: #EAF4EC;
  color: #276232;
  border: 1px solid #B5D9BC;
}

.form-message.error {
  display: block;
  background: #FDF0EF;
  color: #8C2A24;
  border: 1px solid #F0B8B4;
}

/* ── FOOTER ── */
footer {
  background: #111A2E;
  color: #6B7A90;
  text-align: center;
  font-family: 'Arial', sans-serif;
  font-size: .82rem;
  padding: 1.75rem 1.5rem;
}

footer a { color: #8FBBDF; text-decoration: none; }
footer a:hover { text-decoration: underline; }
