:root {
  /* Brand colors from logo */
  --navy: #011D42;
  --sky: #53BCEC;
  --forest: #409724;
  --star-white: #ffffff;

  /* Theme */
  --bg: #f9fafb;
  --bg-alt: #edf2f7;
  --card: #ffffff;
  --border: #e5e7eb;
  --text: #111827;
  --muted: #6b7280;

  --radius-lg: 18px;
  --radius-xl: 24px;
  --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.08);
  --shadow-subtle: 0 10px 25px rgba(15, 23, 42, 0.06);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ==========================================
   ORIGINAL HEADER / NAV (Not used on homepage)
   ========================================== */

header.sticky-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background:
    linear-gradient(to right, rgba(83, 188, 236, 0.04), rgba(64, 151, 36, 0.02)),
    rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.8rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-mark {
  height: 44px;
  width: auto;
  display: block;
}

.logo-text-main {
  font-size: 1.05rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  color: var(--navy);
}

.logo-text-sub {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.17em;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 0.9rem;
  font-size: 0.85rem;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all 0.18s ease-out;
}

.nav-links a:hover {
  color: var(--navy);
  border-color: rgba(148, 163, 184, 0.5);
  background: rgba(255, 255, 255, 0.8);
}

/* =====================================
   BUTTONS
   ===================================== */

.btn-primary {
  border: none;
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
  font-weight: 550;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--sky), #1e88d4 45%, var(--forest));
  color: var(--star-white);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.15);
  transition: transform 0.16s ease-out, box-shadow 0.16s ease-out,
    filter 0.16s ease-out;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.18);
  filter: brightness(1.05);
}

.btn-primary span.arrow {
  font-size: 0.95rem;
  transform: translateY(1px);
}

/* =====================================
   SECTIONS / CARD LAYOUT
   ===================================== */

.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.2rem 1.4rem;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.3fr);
  gap: 1.6rem;
  align-items: start;
}

.contact-card {
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.1rem;
  background:
    radial-gradient(circle at top left, rgba(83, 188, 236, 0.16), transparent 60%),
    radial-gradient(circle at bottom right, rgba(64, 151, 36, 0.10), transparent 60%),
    #ffffff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  font-size: 0.9rem;
  color: var(--muted);
}

.contact-form {
  margin-top: 0.8rem;
  display: grid;
  gap: 0.6rem;
  font-size: 0.86rem;
}

.field-group {
  display: grid;
  gap: 0.25rem;
}

label {
  font-size: 0.8rem;
  color: var(--muted);
}

input,
textarea,
select {
  border-radius: 12px;
  border: 1px solid #d1d5db;
  padding: 0.5rem 0.65rem;
  background: #ffffff;
  color: var(--text);
  font: inherit;
  outline: none;
  transition: border-color 0.16s ease-out, box-shadow 0.16s ease-out;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 1px rgba(83, 188, 236, 0.4);
  background: #ffffff;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

/* =====================================
   FOOTER
   ===================================== */

footer {
  border-top: 1px solid #e5e7eb;
  background: #ffffff;
  margin-top: 1.2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.2rem 1.4rem;
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.footer-inner a {
  color: var(--sky);
  text-decoration: none;
}

.footer-inner a:hover {
  text-decoration: underline;
}

/* =====================================
   ULTRA-SLIM HOMEPAGE HEADER
   ===================================== */

.simple-header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;

  padding-top: 0.1rem;     /* Extremely small space above logo */
  padding-bottom: 0.1rem;
  margin: 0;

  text-align: center;
  gap: 0rem;               /* NO space between logo & title */
}

.simple-logo {
  width: 110px;            /* Slimmest possible */
  height: auto;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.simple-logo:hover {
  transform: scale(1.05);
  filter: brightness(1.05);
}

.simple-title-single {
  font-size: 1.25rem;      /* Minimal height */
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  line-height: 1;          /* No internal spacing */
  margin: 0;
  padding: 0;
}

/* Allow wrapping on very small screens */
@media (max-width: 600px) {
  .simple-title-single {
    font-size: 1.1rem;
    white-space: normal;
  }
}

/* FINAL TIGHTENING OF HOMEPAGE HEADER */

/* remove all extra space around header */
.simple-header {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 0.2rem;   /* tiny space before the forms */
}

/* remove any space around the logo image */
.simple-logo {
  margin: 0;
  padding: 0;
}

/* pull the title up so it touches the logo */
.simple-title-single {
  margin-top: -0.25rem;    /* overlap upwards slightly */
  line-height: 1;
}

/* SUPER-TIGHT HEADER OVERRIDES */

/* Pull the whole header up and remove any gaps inside it */
.simple-header {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: -20px;   /* pulls header closer to the top of the page */
  margin-bottom: 1.5;    /* no extra space before the forms */
  gap: 0;              /* no flex gap between logo & title */
}

/* Move the logo up a bit to compensate for whitespace in the PNG */
.simple-logo {
  margin: 0;
  padding: 0;
  transform: translateY(-6px);     /* nudge logo upward */
  transition: transform 0.25s ease, filter 0.25s ease;
}

.simple-logo:hover {
  transform: translateY(-6px) scale(1.05);  /* keep the hover scale */
  filter: brightness(1.05);
}

/* Tuck the title closer to the logo */
.simple-title-single {
  margin-top: -1.8rem;    /* overlaps upward into the logo area */
  line-height: 1;
}

/* Mobile layout: stack the two forms instead of side-by-side */
@media (max-width: 900px) {
  .two-column {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.25rem;
  }

  .about-card,
  .contact-card {
    width: 100%;
  }
}




