:root {
  --navy: #003366;
  --navy-light: #0d4a8a;
  --navy-dark: #00264d;
  --accent-orange: #FCAF17;
  --accent-orange-hover: #e39c0a;
  --link-blue: #1e73be;
  --link-blue-hover: #155a94;
  --white: #ffffff;
  --off-white: #f5f6f8;
  --text-dark: #1a1a2e;
  --text-mid: #3d3d5c;
  --text-light: #6b7280;
  --border: #e2e5ea;
  --shadow: 0 2px 12px rgba(0,51,102,0.08);
  --shadow-lg: 0 8px 32px rgba(0,51,102,0.12);
  --radius: 8px;
  --max-w: 1100px;
  --font-heading: 'Merriweather', Georgia, serif;
  --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.7;
  font-size: 17px;
  background: var(--white);
}

/* ── Top Bar ── */
.top-bar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  padding: 6px 0;
}
.top-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.2s;
}
.top-bar a:hover { color: var(--white); }
.top-bar-contact { display: flex; gap: 20px; align-items: center; }
.top-bar-social { display: flex; gap: 14px; }

/* ── Header ── */
.site-header {
  background: var(--navy);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-group {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: var(--white);
}
.logo-group img {
  height: 60px;
  width: auto;
  border-radius: 4px;
}
.logo-text h1 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}
.logo-text .tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  font-style: italic;
}

/* ── Nav ── */
.main-nav { display: flex; gap: 4px; align-items: center; }
.main-nav a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active {
  background: rgba(255,255,255,0.12);
  color: var(--white);
}

/* Hamburger */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--white);
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.3s;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #1a5490 100%);
  color: var(--white);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.04) 0%, transparent 70%);
}
.hero-content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero h2 {
  font-family: var(--font-heading);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 20px;
}
.hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  line-height: 1.6;
}
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,51,102,0.3);
}
.btn-accent {
  background: var(--accent-orange);
  color: var(--navy);
}
.btn-accent:hover {
  background: var(--accent-orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(252,175,23,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Action Strip (prominent CTA bar) ── */
.action-strip {
  background: var(--white);
  border-top: 4px solid var(--accent-orange);
  border-bottom: 1px solid var(--border);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}
.action-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.action-strip-text {
  flex: 1 1 300px;
}
.action-strip-text h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 4px;
}
.action-strip-text p {
  color: var(--text-mid);
  font-size: 15px;
  margin: 0;
}
.action-strip-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.action-strip-buttons .btn { padding: 12px 24px; font-size: 15px; }

/* ── Sections ── */
.section {
  padding: 72px 24px;
}
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-alt { background: var(--off-white); }
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.5vw, 32px);
  color: var(--navy);
  margin-bottom: 12px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 600px;
}

/* Service Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--navy);
  transition: transform 0.25s, box-shadow 0.25s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 12px;
}
.service-card p {
  color: var(--text-mid);
  margin-bottom: 16px;
}
.service-card .learn-more {
  color: var(--link-blue);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}
.service-card .learn-more:hover { text-decoration: underline; }
.service-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}

/* About teaser */
.about-teaser {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
}
.about-teaser img {
  width: 100%;
  max-width: 280px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-teaser-text p {
  color: var(--text-mid);
  margin-bottom: 16px;
}

/* Tips grid */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.tip-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--accent-orange);
  transition: transform 0.2s;
}
.tip-card:hover { transform: translateY(-2px); }
.tip-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 8px;
}
.tip-card p {
  color: var(--text-mid);
  font-size: 15px;
  margin-bottom: 12px;
}
.tip-card a {
  color: var(--link-blue);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}
.tip-card a:hover { text-decoration: underline; }

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding: 60px 24px;
  text-align: center;
}
.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 30px);
  margin-bottom: 16px;
}
.cta-banner p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 28px;
  font-size: 17px;
}
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ── */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 48px 24px 24px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}
.footer-about .footer-logo {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-about p { font-size: 14px; line-height: 1.6; }
.footer-col h4 {
  color: var(--white);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  padding: 4px 0;
  font-size: 15px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  max-width: var(--max-w);
  margin: 32px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 13px;
}

/* ── Content Pages ── */
.page-header {
  background: var(--navy);
  color: var(--white);
  padding: 48px 24px;
  text-align: center;
}
.page-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 36px);
}
.page-header .breadcrumb {
  margin-top: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}
.page-header .breadcrumb a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}
.page-header .breadcrumb a:hover { color: var(--white); }
.content-section {
  padding: 56px 24px;
}
.content-inner {
  max-width: 780px;
  margin: 0 auto;
}
.content-inner h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--navy);
  margin: 36px 0 12px;
}
.content-inner h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--navy);
  margin: 28px 0 10px;
}
.content-inner h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--navy-light);
  margin: 24px 0 8px;
}
.content-inner p {
  margin-bottom: 16px;
  color: var(--text-mid);
}
.content-inner ul {
  margin: 0 0 16px 24px;
  color: var(--text-mid);
}
.content-inner ul li { margin-bottom: 6px; }

/* Contact Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 32px;
}
.contact-info-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 20px;
}
.contact-detail {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 20px;
  font-size: 15px;
  color: var(--text-mid);
}
.contact-detail strong { color: var(--text-dark); }
.contact-form label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #b8bfc9;
  border-radius: var(--radius);
  font-size: 16px;
  font-family: var(--font-body);
  margin-bottom: 20px;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: var(--white);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--link-blue);
  box-shadow: 0 0 0 3px rgba(30,115,190,0.18);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-status {
  padding: 12px 16px;
  border-radius: var(--radius);
  margin-top: 12px;
  font-weight: 600;
  display: none;
}
.form-status.success { display: block; background: #d4edda; color: #155724; }
.form-status.error { display: block; background: #f8d7da; color: #721c24; }

/* ── Mobile ── */
@media (max-width: 768px) {
  .action-strip-inner { flex-direction: column; text-align: center; }
  .action-strip-buttons { width: 100%; justify-content: center; }
  .top-bar-inner { justify-content: center; text-align: center; }
  .menu-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 16px 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 16px; }
  .header-inner { position: relative; }
  .hero { padding: 56px 24px; }
  .about-teaser { grid-template-columns: 1fr; text-align: center; }
  .about-teaser img { margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 48px 24px; }
}