@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,400&display=swap');

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

:root {
  --blue-dark: #042C53;
  --blue-mid: #185FA5;
  --blue-light: #378ADD;
  --blue-pale: #E6F1FB;
  --text: #1a1a1a;
  --text-muted: #5a5a5a;
  --border: rgba(0,0,0,0.1);
  --bg: #f4f4f2;
  --white: #ffffff;
  --radius: 10px;
  --radius-lg: 14px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

/* ── NAV ── */
.site-nav {
  background: var(--white);
  border-bottom: 0.5px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo span { color: var(--text); }
.nav-links {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  align-items: center;
}
.nav-links a {
  font-size: 13px;
  color: var(--text-muted);
  padding: 5px 10px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); background: var(--bg); }
.nav-links a.nav-cta {
  background: var(--blue-mid);
  color: white;
  font-weight: 500;
}
.nav-links a.nav-cta:hover { background: var(--blue-dark); }

/* mobile nav toggle */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text); margin: 4px 0;
  transition: all 0.2s;
}

/* ── CONTACT BAR ── */
.contact-bar {
  background: var(--blue-pale);
  padding: 8px 2rem;
  font-size: 13px;
  color: var(--blue-mid);
}
.contact-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}
.contact-bar strong { color: var(--blue-dark); }
.contact-bar a { color: var(--blue-mid); font-weight: 500; }
.contact-bar a:hover { text-decoration: underline; }
.contact-bar .tagline { margin-left: auto; font-size: 12px; color: var(--blue-dark); opacity: 0.7; }

/* ── HERO ── */
.hero {
  background: linear-gradient(140deg, var(--blue-dark) 0%, var(--blue-mid) 55%, var(--blue-light) 100%);
  color: white;
  padding: 5rem 2rem 4rem;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.65;
  margin-bottom: 1rem;
}
.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 8vw, 80px);
  line-height: 0.95;
  letter-spacing: 1px;
  margin-bottom: 1.25rem;
}
.hero-sub {
  font-size: 16px;
  opacity: 0.85;
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 2rem;
}
.hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  background: white;
  color: var(--blue-mid);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  display: inline-block;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,0.15); }
.btn-outline {
  background: transparent;
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: var(--radius);
  border: 1.5px solid rgba(255,255,255,0.45);
  cursor: pointer;
  display: inline-block;
  transition: background 0.15s;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); }

/* ── PAGE WRAPPER ── */
.page-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

/* ── SECTION LABELS ── */
.section-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

/* ── SERVICE CARDS GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
  margin-bottom: 2.5rem;
}
.service-card {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.1rem;
  transition: transform 0.15s, box-shadow 0.15s;
}
.service-card:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.07); }
.service-card a { display: block; height: 100%; }
.service-icon { font-size: 22px; margin-bottom: 10px; }
.service-title { font-size: 14px; font-weight: 500; margin-bottom: 4px; }
.service-desc { font-size: 12px; color: var(--text-muted); line-height: 1.55; }
.service-badge {
  display: inline-block;
  font-size: 10px;
  background: var(--blue-pale);
  color: var(--blue-mid);
  padding: 2px 9px;
  border-radius: 20px;
  margin-top: 8px;
  font-weight: 500;
}

/* ── CALLOUT STRIP ── */
.callout-strip {
  background: var(--blue-dark);
  color: white;
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.callout-strip h3 { font-size: 17px; font-weight: 500; margin-bottom: 4px; }
.callout-strip p { font-size: 13px; opacity: 0.8; }

/* ── INNER PAGE HERO ── */
.page-hero {
  background: linear-gradient(140deg, var(--blue-dark) 0%, var(--blue-mid) 100%);
  color: white;
  padding: 3rem 2rem;
}
.page-hero-inner { max-width: 1100px; margin: 0 auto; }
.page-hero-eyebrow { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; opacity: 0.6; margin-bottom: 0.75rem; }
.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 6vw, 56px);
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.page-hero p { font-size: 15px; opacity: 0.85; max-width: 560px; line-height: 1.6; }

/* ── CONTENT CARDS ── */
.content-card {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 1.25rem;
}
.content-card h2 { font-size: 18px; font-weight: 500; margin-bottom: 0.75rem; }
.content-card h3 { font-size: 15px; font-weight: 500; margin-bottom: 0.5rem; color: var(--blue-mid); }
.content-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 0.75rem; }
.content-card p:last-child { margin-bottom: 0; }
.content-card ul { padding-left: 1.25rem; }
.content-card li { font-size: 14px; color: var(--text-muted); line-height: 1.8; }

/* ── TWO-COL LAYOUT ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 640px) { .two-col { grid-template-columns: 1fr; } }

/* ── CONTACT FORM ── */
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-form label { font-size: 13px; font-weight: 500; display: block; margin-bottom: 4px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  padding: 10px 14px;
  border: 0.5px solid rgba(0,0,0,0.2);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text);
  outline: none;
  transition: border-color 0.15s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--blue-mid); background: white; }
.contact-form textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 520px) { .form-row { grid-template-columns: 1fr; } }
.btn-submit {
  background: var(--blue-mid);
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.15s, transform 0.15s;
}
.btn-submit:hover { background: var(--blue-dark); transform: translateY(-1px); }

/* ── INFO ROW (icon + text) ── */
.info-row { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 1rem; }
.info-row-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.info-row-text h4 { font-size: 14px; font-weight: 500; margin-bottom: 2px; }
.info-row-text p { font-size: 13px; color: var(--text-muted); }

/* ── BRANDS PILL ROW ── */
.brands { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 1rem; }
.brand-pill {
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  background: var(--bg);
  border: 0.5px solid var(--border);
  color: var(--text-muted);
}

/* ── FOOTER ── */
.site-footer {
  background: var(--white);
  border-top: 0.5px solid var(--border);
  padding: 2rem;
  margin-top: 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}
.footer-brand { font-family: 'Bebas Neue', sans-serif; font-size: 20px; color: var(--blue-mid); margin-bottom: 6px; }
.footer-tagline { font-size: 13px; color: var(--text-muted); max-width: 280px; line-height: 1.5; }
.footer-links h4 { font-size: 12px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 10px; }
.footer-links a { display: block; font-size: 13px; color: var(--text-muted); margin-bottom: 6px; transition: color 0.15s; }
.footer-links a:hover { color: var(--text); }
.footer-bottom {
  max-width: 1100px;
  margin: 1.5rem auto 0;
  padding-top: 1.25rem;
  border-top: 0.5px solid var(--border);
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a { font-size: 13px; color: var(--text-muted); }
.footer-social a:hover { color: var(--blue-mid); }

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 60px; left: 0; right: 0; background: var(--white); border-bottom: 0.5px solid var(--border); padding: 1rem 2rem; gap: 4px; z-index: 99; }
  .nav-toggle { display: block; }
  .contact-bar .tagline { display: none; }
  .hero { padding: 3rem 1.5rem; }
  .page-content { padding: 2rem 1.5rem; }
  .callout-strip { flex-direction: column; }
  .services-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 420px) {
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
