:root {
  --navy: #0b3d63;
  --navy-dark: #082b48;
  --teal: #1db6b0;
  --light: #f5f9fb;
  --text: #29343d;
  --muted: #6b7a86;
  --border: #e3e9ed;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(11, 61, 99, 0.08);
}

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

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: #fff;
}

h1, h2, h3, h4, .logo {
  font-family: 'Poppins', sans-serif;
  color: var(--navy);
  margin: 0 0 .5em;
  line-height: 1.2;
}

p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; border-radius: var(--radius); }
ul { list-style: none; margin: 0; padding: 0; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  color: var(--teal);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .8rem;
  margin-bottom: .5em;
}

.section { padding: 72px 0; }
.section h2 { font-size: 2rem; max-width: 700px; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 6px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover { box-shadow: 0 8px 20px rgba(29,182,176,.35); }
.btn-outline { border-color: var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-light { background: #fff; color: var(--navy); }
.btn-outline-light { border-color: #fff; color: #fff; }
.btn-outline-light:hover { background: #fff; color: var(--navy); }

/* Header */
.topbar { background: var(--navy-dark); color: #cfe3ee; font-size: .85rem; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; padding: 8px 24px; flex-wrap: wrap; gap: 6px; }
.topbar-contact a { color: #cfe3ee; display: inline-flex; align-items: center; gap: 6px; font-size: .95rem; font-weight: 400; }
.topbar-contact a:hover { color: #fff; }
.topbar .sep { margin: 0 10px; opacity: .5; }
.icon { flex-shrink: 0; }

.navbar { background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,.05); position: sticky; top: 0; z-index: 50; }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; gap: 24px; }

.logo { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.3rem; color: var(--navy); white-space: nowrap; display: inline-flex; align-items: center; transition: transform .18s ease, opacity .18s ease; cursor: pointer; }
.logo:hover, .logo:focus-visible { transform: scale(1.05); opacity: .85; }
.logo span { display: block; font-size: .55rem; letter-spacing: .2em; color: var(--teal); font-weight: 700; }
.logo-img { height: 68px; width: auto; border-radius: 0; }
.footer-logo-img { height: 52px; }

.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links > li { position: relative; }
.nav-links a { font-weight: 600; color: var(--navy); font-size: .95rem; padding: 8px 0; }
.nav-links a:hover, .nav-links a.active { color: var(--teal); }

.dropdown {
  display: none;
  position: absolute;
  top: 100%; left: -20px;
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 10px;
  min-width: 240px;
  flex-direction: column;
}
.has-dropdown:hover .dropdown { display: flex; }
.dropdown li a { display: block; padding: 8px 12px; border-radius: 6px; font-weight: 500; }
.dropdown li a:hover { background: var(--light); }

.nav-toggle { display: none; background: none; border: none; font-size: 1.6rem; cursor: pointer; color: var(--navy); }
.nav-cta { white-space: nowrap; }

/* Hero */
.hero { background: linear-gradient(135deg, var(--light), #fff); padding: 72px 0; }
.hero-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; }
.hero h1 { font-size: 2.8rem; }
.hero-sub { font-size: 1.1rem; color: var(--muted); max-width: 520px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 20px 0; }
.trust-badges { display: flex; flex-wrap: wrap; gap: 10px 20px; font-size: .85rem; color: var(--navy); font-weight: 600; }
.trust-badges span::before { content: "\2713"; color: var(--teal); margin-right: 6px; }
.hero-media img { box-shadow: none; }

.page-hero { background: var(--navy); color: #fff; padding: 64px 0; }
.page-hero h1 { color: #fff; font-size: 2.4rem; }
.page-hero .eyebrow { color: #7fd8d3; }
.page-hero .hero-sub { color: #cfe3ee; }
.page-hero a { color: #fff; text-decoration: underline; }

/* Feature grid */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 36px; }
.feature-card { background: var(--light); border-radius: var(--radius); padding: 26px; border: 1px solid var(--border); }
.feature-card h3 { font-size: 1.05rem; }
.feature-card p { color: var(--muted); font-size: .92rem; margin: 0; }

/* Services grid */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 36px; }
.service-card { display: block; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); transition: transform .15s ease; }
.service-card:hover { transform: translateY(-4px); }
.service-card h3 { font-size: 1.1rem; }
.service-card p { color: var(--muted); font-size: .92rem; }
.service-link { color: var(--teal); font-weight: 700; font-size: .88rem; }
.center-cta { text-align: center; margin-top: 40px; }
.not-listed { text-align: center; color: var(--muted); margin-top: 24px; }

/* About blurb */
.about-blurb { background: var(--light); }
.about-blurb-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: center; }

/* Testimonials */
.testimonials h2 em { color: var(--muted); font-size: .55em; font-style: normal; display: block; font-weight: 500; margin-top: 4px; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 36px; }
.testimonial-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.testimonial-card p { color: var(--muted); font-style: italic; }
.testimonial-name { font-weight: 700; color: var(--navy); font-size: .9rem; }

/* Areas */
.areas { background: var(--navy); color: #fff; }
.areas .eyebrow { color: #7fd8d3; }
.areas h2 { color: #fff; }
.areas h2 em { color: #b9d4e3; font-size: .6em; font-style: normal; display: block; font-weight: 500; margin-top: 6px; }
.areas-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.map-placeholder { background: rgba(255,255,255,.08); border: 1px dashed rgba(255,255,255,.4); border-radius: var(--radius); height: 320px; display: flex; align-items: center; justify-content: center; text-align: center; color: #cfe3ee; }
.areas-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.areas-map iframe { display: block; }
.areas-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 24px; margin-top: 20px; }
.areas-grid li { color: #cfe3ee; font-weight: 500; }
.areas-grid li::before { content: "\2713"; color: var(--teal); margin-right: 8px; }
.areas-list .not-listed { text-align: left; margin-top: 16px; }

/* CTA band */
.cta-band { background: var(--teal); color: #fff; padding: 48px 0; }
.cta-band-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; margin-bottom: 4px; font-size: 1.6rem; }
.cta-band p { color: #e3fbf9; margin: 0; }
.cta-band-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Service detail */
.service-detail { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: start; }
.check-list li { padding: 6px 0; }
.check-list li::before { content: "\2713"; color: var(--teal); font-weight: 700; margin-right: 10px; }
.check-list.two-col { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px 24px; margin: 20px 0; }
.related { background: var(--light); }
.section.alt { background: var(--light); }
.service-intro { max-width: 820px; }
.service-intro p { font-size: 1.05rem; color: var(--text); }
.nowrap-pair { white-space: nowrap; }

/* Service hero (light, split layout) */
.service-hero { background: #fff; padding: 64px 0; border-bottom: 1px solid var(--border); }
.service-hero h1 { font-size: 2.4rem; }
.service-hero .hero-sub { max-width: 620px; }
.hero-inner.no-media { grid-template-columns: 1fr; }
.hero-inner.no-media .hero-copy { max-width: 700px; }

/* Split content rows (alternating image / text) */
.split-row { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: center; }
.split-row.reverse { grid-template-columns: 1.2fr 1fr; }
.split-row h2 { font-size: 1.7rem; }

/* Picture placeholders (swap for real photos later) */
.picture-placeholder {
  background: var(--light);
  border: 2px dashed #b9c7d1;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .04em;
}

.photo-frame { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3; box-shadow: var(--shadow); }
.photo-frame img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; display: block; }

/* Simple bulleted lists (matches served-industries / included-services lists) */
.simple-list { list-style: disc; padding-left: 22px; margin: 14px 0; }
.simple-list li { color: var(--teal); font-weight: 600; padding: 3px 0; }

/* Services overview page */
.intro-block { max-width: 780px; text-align: left; }
.centered-heading { text-align: center; max-width: none; margin: 0 auto 8px; }
.icon-card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 40px; }
.icon-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 24px; text-align: center; box-shadow: var(--shadow); display: flex; flex-direction: column; align-items: center; }
.icon-card-icon { color: var(--teal); margin-bottom: 14px; }
.icon-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.icon-card h3 a { color: var(--navy); }
.icon-card h3 a:hover { color: var(--teal); }
.icon-card p { color: var(--muted); font-size: .92rem; flex-grow: 1; }
.btn-sm { padding: 10px 20px; font-size: .85rem; margin-top: 12px; }

/* Contact */
.contact-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: start; }
.quote-form { display: flex; flex-direction: column; gap: 16px; background: var(--light); padding: 32px; border-radius: var(--radius); border: 1px solid var(--border); }
.quote-form label { font-weight: 600; font-size: .9rem; color: var(--navy); display: flex; flex-direction: column; gap: 6px; }
.quote-form input, .quote-form textarea { font-family: inherit; padding: 12px 14px; border-radius: 6px; border: 1px solid var(--border); font-size: 1rem; }
.quote-form textarea { resize: vertical; min-height: 140px; }
.form-note { font-size: .95rem; color: var(--teal); font-weight: 700; margin: 0; }
.contact-side { display: flex; flex-direction: column; gap: 20px; }
.contact-side img { box-shadow: var(--shadow); width: 100%; max-height: 520px; object-fit: cover; }
.contact-details p { margin: 4px 0; }

/* Footer */
footer { background: var(--navy-dark); color: #cfe3ee; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; padding: 56px 24px; }
.footer-logo { color: #fff; }
.footer-logo span { color: var(--teal); }
.footer-col h4 { color: #fff; font-size: .95rem; margin-bottom: 16px; }
.footer-col p { color: #9fb8c8; font-size: .9rem; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { color: #9fb8c8; font-size: .9rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 24px; text-align: center; font-size: .82rem; color: #7f97a6; }

/* Responsive */
@media (max-width: 900px) {
  .hero-inner, .about-blurb-inner, .areas-inner, .service-detail, .contact-inner, .split-row, .split-row.reverse { grid-template-columns: 1fr; }
  .feature-grid, .service-grid, .testimonial-grid, .icon-card-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav-toggle { display: block; }
  .nav-links { display: none; flex-direction: column; align-items: flex-start; position: absolute; top: 100%; left: 0; right: 0; background: #fff; padding: 16px 24px; box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .dropdown { position: static; box-shadow: none; padding-left: 12px; }
  .has-dropdown:hover .dropdown { display: none; }
  .has-dropdown.open .dropdown { display: flex; }
  .nav-cta { display: none; }
  .feature-grid, .service-grid, .testimonial-grid, .icon-card-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.1rem; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
}
