/* ==========================================================================
   N&R Clean — stylesheet
   ========================================================================== */

:root {
  --navy: #0e3a52;
  --navy-dark: #0a2c3f;
  --blue: #29b6e8;
  --blue-light: #6fd4f5;
  --blue-pale: #eaf8fe;
  --gold: #d4a94f;
  --gold-light: #f0d9a3;
  --gray-50: #f7f9fa;
  --gray-100: #eef2f4;
  --gray-200: #e2e8ec;
  --gray-400: #9fb0ba;
  --gray-600: #5c7080;
  --text: #1c2b34;
  --white: #ffffff;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 10px 30px -12px rgba(14, 58, 82, 0.25);
  --shadow-sm: 0 4px 14px -6px rgba(14, 58, 82, 0.18);
  --max-width: 1180px;
  --font: "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 { line-height: 1.25; margin: 0 0 16px; font-weight: 800; color: var(--navy); }
h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 16px; color: var(--gray-600); }

.eyebrow {
  display: inline-block;
  color: var(--blue);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-dark);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-dark); transform: translateY(-2px); }
.btn-sm { padding: 10px 20px; font-size: 0.88rem; }
.btn-block { width: 100%; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid var(--gray-200);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 10px; flex: none; }
.brand img { height: 38px; width: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 1px;
}
.main-nav a {
  padding: 9px 11px;
  font-weight: 600;
  font-size: 0.87rem;
  color: var(--navy);
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}
.main-nav a:hover { background: var(--blue-pale); color: var(--blue); }
.main-nav a.active { background: var(--navy); color: var(--white); }

.header-actions { display: flex; align-items: center; gap: 8px; flex: none; }

.lang-switch { position: relative; }
.lang-current {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  cursor: pointer;
  font-weight: 700;
  font-size: 0.9rem;
}
.lang-current:hover { border-color: var(--blue); }
.lang-flag { font-size: 1.2rem; line-height: 1; }
.lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  min-width: 170px;
  padding: 6px;
  display: none;
  flex-direction: column;
  gap: 2px;
}
.lang-menu.open { display: flex; }
.lang-menu button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 9px 10px;
  border: none;
  background: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
}
.lang-menu button:hover { background: var(--blue-pale); }
.lang-menu button.active { color: var(--blue); background: var(--blue-pale); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span { width: 24px; height: 2.5px; background: var(--navy); border-radius: 2px; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  background: linear-gradient(150deg, var(--navy-dark) 0%, var(--navy) 55%, #135a7d 100%);
  color: var(--white);
  overflow: hidden;
  padding: 90px 0 110px;
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(111, 212, 245, 0.25);
}
.hero::before { width: 520px; height: 520px; top: -220px; right: -160px; }
.hero::after { width: 340px; height: 340px; bottom: -180px; right: 60px; border-color: rgba(212,169,79,0.25); }
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.hero .eyebrow { color: var(--blue-light); }
.hero h1 { color: var(--white); margin-bottom: 18px; }
.hero p.lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.86);
  max-width: 600px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 34px; }
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.hero-stats span {
  font-weight: 700;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.92);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-stats span::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue-light);
  display: inline-block;
}

/* Page header (non-home pages) */
.page-hero {
  background: linear-gradient(150deg, var(--navy-dark) 0%, var(--navy) 60%, #135a7d 100%);
  color: var(--white);
  padding: 62px 0 74px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  border: 2px solid rgba(111,212,245,0.2);
  top: -200px; right: -120px;
}
.page-hero .eyebrow { color: var(--blue-light); }
.page-hero h1 { color: var(--white); margin-bottom: 10px; position: relative; z-index: 2; }
.page-hero p { color: rgba(255,255,255,0.85); max-width: 620px; position: relative; z-index: 2; margin: 0; }
.breadcrumb {
  position: relative; z-index: 2;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
}
.breadcrumb a { color: rgba(255,255,255,0.85); font-weight: 600; }
.breadcrumb a:hover { color: var(--blue-light); }

/* ==========================================================================
   Sections
   ========================================================================== */
section { padding: 76px 0; }
.section-alt { background: var(--gray-50); }
.section-navy { background: var(--navy); color: var(--white); }
.section-navy h2, .section-navy h3 { color: var(--white); }
.section-navy p { color: rgba(255,255,255,0.8); }

.section-head { max-width: 700px; margin: 0 auto 48px; text-align: center; }
.section-head.left { margin: 0 0 44px; text-align: left; }

/* Services grid */
.grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, 1fr);
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.card .icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
}
.card h3 { margin-bottom: 8px; }
.card p { margin: 0; font-size: 0.95rem; }

/* Feature list (checkmarks) */
.check-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 26px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-weight: 600; color: var(--navy);
  font-size: 1rem;
}
.check-list li .tick {
  flex: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  margin-top: 1px;
}

/* Two-column with media */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split-media {
  background: linear-gradient(150deg, var(--navy-dark), var(--navy) 60%, #135a7d);
  border-radius: var(--radius);
  min-height: 340px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 40px;
}
.split-media::before {
  content: "";
  position: absolute;
  width: 300px; height: 300px;
  border: 2px solid rgba(111,212,245,0.25);
  border-radius: 50%;
  top: -100px; left: -80px;
}
.split-media img { position: relative; z-index: 2; max-width: 260px; }

/* Audience cards */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.audience-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  padding: 28px 24px;
  position: relative;
}
.audience-card .icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: var(--navy);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.audience-card h3 { margin-bottom: 8px; font-size: 1.1rem; }
.audience-card p { font-size: 0.93rem; margin: 0; }

/* Coverage map / area section */
.coverage {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}
.coverage-badge {
  background: var(--blue-pale);
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
}
.coverage-badge .big { font-size: 3rem; font-weight: 800; color: var(--navy); }
.coverage-badge .label { font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.82rem; }

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy) 55%, #146590);
  color: var(--white);
  border-radius: 24px;
  padding: 64px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  width: 420px; height: 420px;
  border: 2px solid rgba(212,169,79,0.3);
  border-radius: 50%;
  bottom: -260px; left: -140px;
}
.cta-banner h2 { color: var(--white); }
.cta-banner p { color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto 26px; }
.cta-banner .contact-line {
  display: flex; justify-content: center; gap: 30px; flex-wrap: wrap;
  margin: 26px 0 32px;
  font-weight: 700;
  font-size: 1.05rem;
}
.cta-banner .contact-line a { display: flex; align-items: center; gap: 8px; }
.cta-banner .contact-line a:hover { color: var(--blue-light); }

/* Trust badges strip */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px;
  padding: 30px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.trust-strip .item {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 0.9rem; color: var(--navy);
}
.trust-strip .item .ic { font-size: 1.3rem; }

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
  align-items: start;
}
.contact-info-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 36px 30px;
}
.contact-info-card h3 { color: var(--white); }
.contact-info-card .row {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.14);
  font-weight: 600;
}
.contact-info-card .row:last-of-type { border-bottom: none; }
.contact-info-card .row .ic {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex: none;
}
.contact-info-card a:hover { color: var(--blue-light); }

.form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; display: flex; flex-direction: column; gap: 7px; }
.field label { font-weight: 700; font-size: 0.88rem; color: var(--navy); }
.field input, .field select, .field textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.95rem;
  background: var(--gray-50);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
}
.field.full { grid-column: 1 / -1; }
.form-note { font-size: 0.82rem; color: var(--gray-400); margin-top: 14px; }
.form-success {
  display: none;
  background: var(--blue-pale);
  border: 1.5px solid var(--blue);
  color: var(--navy);
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  margin-bottom: 18px;
}
.form-success.show { display: block; }

/* Footer */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 34px;
  padding-bottom: 36px;
}
.footer-logo {
  display: inline-block;
  background: var(--white);
  border-radius: 10px;
  padding: 8px 14px;
  margin-bottom: 16px;
}
.footer-logo img { height: 34px; display: block; }
.footer-grid p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.footer-grid h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 16px; }
.footer-grid ul li { margin-bottom: 10px; }
.footer-grid ul a { color: rgba(255,255,255,0.7); font-size: 0.92rem; }
.footer-grid ul a:hover { color: var(--blue-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 22px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

/* Mobile sticky CTA bar */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--navy-dark);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-cta-bar .inner { display: flex; }
.mobile-cta-bar a {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 10px;
  color: var(--white);
  font-weight: 700;
  font-size: 0.88rem;
}
.mobile-cta-bar a.call { background: var(--blue); }
.mobile-cta-bar a.quote { background: var(--gold); color: var(--navy-dark); }

/* Utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split-media { order: -1; min-height: 240px; }
  .coverage { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  body.nav-open .main-nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px; left: 0; right: 0; bottom: 0;
    background: var(--white);
    padding: 20px 24px;
    gap: 4px;
    z-index: 99;
    overflow-y: auto;
  }
  body.nav-open .main-nav a { padding: 14px 16px; font-size: 1.05rem; }
  .header-actions .btn-navy.header-cta { display: none; }
  .grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .check-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .form-grid { grid-template-columns: 1fr; }
  section { padding: 54px 0; }
  .hero { padding: 56px 0 88px; }
  .cta-banner { padding: 44px 24px; }
  .mobile-cta-bar { display: block; }
  body { padding-bottom: 58px; }
  .contact-line { flex-direction: column; gap: 14px !important; }
}

@media (max-width: 480px) {
  .brand span.brand-text { display: none; }
}
