/*
Theme Name:  New World Builders
Theme URI:   https://newworldbuilders.com
Author:      New World Builders LLC
Author URI:  https://newworldbuilders.com
Description: Custom Elementor-compatible theme for New World Builders LLC — coastal construction, Galveston Island, Bolivar Peninsula, Surfside Beach. Full SEO silo architecture with location-specific landing pages.
Version:     1.0.0
License:     GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nwb
Tags:        elementor, construction, coastal, custom-background, custom-logo, custom-menu, featured-images, footer-widgets, full-width-template, sticky-post, threaded-comments
*/

/* ─────────────────────────────────────────
   CSS CUSTOM PROPERTIES
───────────────────────────────────────── */
:root {
  --nwb-navy:   #0D2D4E;
  --nwb-gold:   #C9922A;
  --nwb-sand:   #F5EDD8;
  --nwb-teal:   #1B7A8E;
  --nwb-white:  #FFFFFF;
  --nwb-text:   #1a2530;
  --nwb-muted:  #5a6a78;
  --nwb-border: #d4c8a8;
  --nwb-radius: 6px;
  --nwb-shadow: 0 4px 20px rgba(0,0,0,.10);
  --nwb-font-display: 'Playfair Display', Georgia, serif;
  --nwb-font-body:    'Inter', system-ui, sans-serif;
}

/* ─────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--nwb-font-body);
  color: var(--nwb-text);
  background: var(--nwb-white);
  line-height: 1.6;
  font-size: 16px;
  margin: 0;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--nwb-gold); }
a:hover { color: var(--nwb-teal); }
ul, ol { padding-left: 1.4em; }

/* ─────────────────────────────────────────
   TYPOGRAPHY
───────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--nwb-font-display);
  color: var(--nwb-navy);
  line-height: 1.2;
  margin: 0 0 .6em;
}
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p  { margin: 0 0 1em; }

/* ─────────────────────────────────────────
   LAYOUT WRAPPERS
───────────────────────────────────────── */
.nwb-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.nwb-section { padding: 80px 0; }
.nwb-section--sm { padding: 48px 0; }
.nwb-section--lg { padding: 120px 0; }

/* ─────────────────────────────────────────
   HEADER & NAV
───────────────────────────────────────── */
#nwb-header {
  background: #FFFFFF;
  position: sticky;
  top: 0;
  z-index: 9999;
  box-shadow: 0 2px 16px rgba(0,0,0,.12);
}
.nwb-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}
.nwb-logo img { height: 50px; width: auto; }
.nwb-logo a { display: block; }
.nwb-logo > a > span { color: var(--nwb-gold); }

/* Primary nav */
.nwb-nav { display: flex; align-items: center; gap: 6px; }
.nwb-nav ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; gap: 4px; align-items: center;
}
.nwb-nav ul li { position: relative; }
.nwb-nav ul li a {
  color: var(--nwb-navy);
  text-decoration: none;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 4px;
  transition: color .2s, background .2s;
  display: block;
}
.nwb-nav ul li a:hover,
.nwb-nav ul li.current-menu-item > a {
  color: var(--nwb-gold);
  background: rgba(13,45,78,.06);
}

/* Dropdown */
.nwb-nav ul li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,.08);
  border-top: 3px solid var(--nwb-gold);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
  padding: 8px 0;
  flex-direction: column;
  gap: 0;
}
.nwb-nav ul li:hover > ul { display: flex; }
.nwb-nav ul li ul li a {
  padding: 9px 20px;
  font-size: .8rem;
  border-radius: 0;
}

/* Header CTA */
.nwb-header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.nwb-phone-header {
  color: var(--nwb-gold);
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  white-space: nowrap;
}
.nwb-phone-header:hover { color: var(--nwb-teal); }

/* Mobile hamburger */
.nwb-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nwb-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--nwb-navy);
  border-radius: 2px;
  transition: all .3s;
}

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.nwb-btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: var(--nwb-radius);
  font-family: var(--nwb-font-body);
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s;
  line-height: 1;
}
.nwb-btn--primary {
  background: var(--nwb-gold);
  color: white;
  border-color: var(--nwb-gold);
}
.nwb-btn--primary:hover {
  background: #b07c1e;
  border-color: #b07c1e;
  color: white;
}
.nwb-btn--secondary {
  background: var(--nwb-navy);
  color: white;
  border-color: var(--nwb-navy);
}
.nwb-btn--secondary:hover {
  background: var(--nwb-teal);
  border-color: var(--nwb-teal);
  color: white;
}
.nwb-btn--outline {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,.5);
}
.nwb-btn--outline:hover {
  border-color: white;
  background: rgba(255,255,255,.1);
  color: white;
}
.nwb-btn--outline-gold {
  background: transparent;
  color: var(--nwb-gold);
  border-color: var(--nwb-gold);
}
.nwb-btn--outline-gold:hover {
  background: var(--nwb-gold);
  color: white;
}
.nwb-btn-nav {
  background: var(--nwb-gold);
  color: white !important;
  padding: 9px 22px;
  border-radius: 4px;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .2s;
}
.nwb-btn-nav:hover { background: #b07c1e !important; }

/* ─────────────────────────────────────────
   HERO (homepage)
───────────────────────────────────────── */
.nwb-hero {
  background: linear-gradient(160deg, var(--nwb-navy) 0%, #14446a 55%, var(--nwb-teal) 100%);
  min-height: calc(100vh - 68px);
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}
.nwb-hero__content {
  padding: 72px 64px 72px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  position: relative;
  z-index: 2;
}
.nwb-hero__eyebrow {
  display: inline-block;
  background: var(--nwb-gold);
  color: white;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 3px;
  width: fit-content;
}
.nwb-hero h1 {
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  color: white;
  margin: 0;
}
.nwb-hero h1 span { color: var(--nwb-gold); }
.nwb-hero__sub {
  color: rgba(255,255,255,.78);
  font-size: 1.05rem;
  max-width: 540px;
  line-height: 1.72;
  margin: 0;
}
.nwb-hero__btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Contact strip inside hero */
.nwb-contact-strip {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px;
  padding: 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.nwb-contact-strip__title {
  font-family: var(--nwb-font-display);
  color: var(--nwb-gold);
  font-size: 1rem;
  margin: 0 0 4px;
}
.nwb-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-size: .9rem;
}
.nwb-contact-icon {
  width: 36px; height: 36px;
  background: var(--nwb-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nwb-contact-icon svg { width: 16px; height: 16px; fill: white; }
.nwb-contact-item a {
  color: white; font-weight: 600; text-decoration: none;
}
.nwb-contact-item a:hover { color: var(--nwb-gold); }
.nwb-contact-item__label {
  font-size: .7rem;
  color: rgba(255,255,255,.55);
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 2px;
}

/* Hero form panel */
.nwb-hero__form-panel {
  background: var(--nwb-sand);
  border-left: 3px solid var(--nwb-gold);
  padding: 52px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
  overflow-y: auto;
}
.nwb-hero__form-panel h2 {
  font-size: 1.5rem;
  margin-bottom: 6px;
}
.nwb-hero__form-panel > p {
  color: var(--nwb-muted);
  font-size: .88rem;
  margin-bottom: 22px;
}

/* ─────────────────────────────────────────
   LOCATION HERO (city landing pages)
───────────────────────────────────────── */
.nwb-location-hero {
  background: linear-gradient(160deg, var(--nwb-navy) 0%, #14446a 60%, var(--nwb-teal) 100%);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}
.nwb-location-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='24'%3E%3Cpath d='M0 12 Q30 2 60 12 Q90 22 120 12 L120 24 L0 24Z' fill='rgba(255,255,255,0.03)'/%3E%3C/svg%3E") repeat-x bottom / 240px;
  pointer-events: none;
}
.nwb-location-hero__inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.nwb-location-hero__breadcrumb {
  color: rgba(255,255,255,.5);
  font-size: .78rem;
  margin-bottom: 14px;
}
.nwb-location-hero__breadcrumb a { color: var(--nwb-gold); text-decoration: none; }
.nwb-location-hero h1 { color: white; margin-bottom: 16px; }
.nwb-location-hero__sub {
  color: rgba(255,255,255,.75);
  font-size: 1rem;
  line-height: 1.72;
  margin-bottom: 28px;
}
.nwb-location-hero__phone {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--nwb-gold);
  text-decoration: none;
  display: block;
  margin-bottom: 22px;
}
.nwb-location-hero__quick-form {
  background: white;
  border-radius: 10px;
  padding: 28px;
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
}
.nwb-location-hero__quick-form h3 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: var(--nwb-navy);
}

/* ─────────────────────────────────────────
   FORMS
───────────────────────────────────────── */
.nwb-form-group { margin-bottom: 14px; }
.nwb-form-group label {
  display: block;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--nwb-navy);
  margin-bottom: 5px;
}
.nwb-form-group input,
.nwb-form-group select,
.nwb-form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--nwb-border);
  border-radius: var(--nwb-radius);
  font-family: var(--nwb-font-body);
  font-size: .9rem;
  color: var(--nwb-text);
  background: white;
  transition: border-color .2s;
  appearance: auto;
}
.nwb-form-group input:focus,
.nwb-form-group select:focus,
.nwb-form-group textarea:focus {
  outline: none;
  border-color: var(--nwb-teal);
  box-shadow: 0 0 0 3px rgba(27,122,142,.12);
}
.nwb-form-group textarea { resize: vertical; min-height: 90px; }
.nwb-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.nwb-form-submit {
  width: 100%;
  padding: 14px;
  background: var(--nwb-navy);
  color: white;
  border: none;
  border-radius: var(--nwb-radius);
  font-family: var(--nwb-font-body);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s;
  margin-top: 4px;
}
.nwb-form-submit:hover { background: var(--nwb-teal); }
.nwb-form-note {
  font-size: .75rem;
  color: var(--nwb-muted);
  text-align: center;
  margin-top: 10px;
}
.nwb-form-note a { color: var(--nwb-navy); font-weight: 700; }

/* ─────────────────────────────────────────
   AREAS BAR
───────────────────────────────────────── */
.nwb-areas-bar {
  background: var(--nwb-navy);
  padding: 16px 0;
  border-top: 2px solid var(--nwb-gold);
}
.nwb-areas-bar__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.nwb-areas-bar__label {
  color: var(--nwb-gold);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  white-space: nowrap;
}
.nwb-area-pill {
  background: rgba(255,255,255,.11);
  color: white;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: .77rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s;
}
.nwb-area-pill:hover { background: var(--nwb-gold); color: white; }
.nwb-area-pill--active { background: var(--nwb-gold); }

/* ─────────────────────────────────────────
   STATS STRIP
───────────────────────────────────────── */
.nwb-stats-strip {
  background: linear-gradient(135deg, var(--nwb-navy) 0%, #14446a 100%);
  padding: 56px 0;
}
.nwb-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.nwb-stat__number {
  font-family: var(--nwb-font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--nwb-gold);
  line-height: 1;
}
.nwb-stat__label {
  color: rgba(255,255,255,.72);
  font-size: .88rem;
  margin-top: 8px;
}

/* ─────────────────────────────────────────
   SECTION HEADERS
───────────────────────────────────────── */
.nwb-section-head { text-align: center; margin-bottom: 52px; }
.nwb-section-head--left { text-align: left; }
.nwb-eyebrow {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--nwb-gold);
  margin-bottom: 10px;
}
.nwb-section-title {
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  color: var(--nwb-navy);
  line-height: 1.2;
  margin: 0 0 14px;
}
.nwb-section-sub {
  color: var(--nwb-muted);
  font-size: 1rem;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.72;
}

/* ─────────────────────────────────────────
   SERVICE CARDS
───────────────────────────────────────── */
.nwb-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.nwb-service-card {
  border: 1.5px solid var(--nwb-border);
  border-radius: 10px;
  padding: 32px 26px;
  transition: all .25s;
  position: relative;
  overflow: hidden;
  background: white;
}
.nwb-service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--nwb-gold);
  opacity: 0;
  transition: opacity .25s;
}
.nwb-service-card:hover {
  border-color: var(--nwb-gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.1);
}
.nwb-service-card:hover::before { opacity: 1; }
.nwb-service-card__icon {
  width: 52px; height: 52px;
  background: var(--nwb-navy);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.nwb-service-card__icon svg { width: 26px; height: 26px; fill: var(--nwb-gold); }
.nwb-service-card h3 { color: var(--nwb-navy); font-size: 1.1rem; margin-bottom: 10px; }
.nwb-service-card p { color: var(--nwb-muted); font-size: .88rem; line-height: 1.65; margin: 0 0 14px; }
.nwb-service-link {
  color: var(--nwb-gold);
  font-size: .8rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.nwb-service-link::after { content: ' →'; }
.nwb-service-link:hover { color: var(--nwb-teal); }

/* ─────────────────────────────────────────
   LOCATION CARDS (area grid)
───────────────────────────────────────── */
.nwb-locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.nwb-location-card {
  border-radius: 10px;
  overflow: hidden;
  border: 1.5px solid var(--nwb-border);
  transition: box-shadow .25s;
  background: white;
}
.nwb-location-card:hover { box-shadow: var(--nwb-shadow); }
.nwb-location-card__header {
  background: var(--nwb-navy);
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.nwb-location-card__header svg { width: 22px; height: 22px; fill: var(--nwb-gold); flex-shrink: 0; }
.nwb-location-card__header h3 {
  color: white;
  font-size: 1.05rem;
  margin: 0;
}
.nwb-location-card__body { padding: 18px 22px; }
.nwb-location-card__body p {
  color: var(--nwb-muted);
  font-size: .87rem;
  line-height: 1.65;
  margin: 0 0 12px;
}
.nwb-tag-list { display: flex; flex-wrap: wrap; gap: 6px; }
.nwb-tag {
  background: var(--nwb-sand);
  color: var(--nwb-navy);
  border: 1px solid var(--nwb-border);
  padding: 4px 12px;
  border-radius: 16px;
  font-size: .75rem;
  font-weight: 600;
}
.nwb-location-card__footer {
  padding: 0 22px 18px;
}
.nwb-location-card__footer a {
  color: var(--nwb-gold);
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.nwb-location-card__footer a::after { content: ' →'; }

/* ─────────────────────────────────────────
   COASTAL EXPERTISE (two-col)
───────────────────────────────────────── */
.nwb-coastal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.nwb-coastal-text h2 { margin-bottom: 18px; }
.nwb-coastal-text p { color: var(--nwb-muted); line-height: 1.75; }
.nwb-check-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.nwb-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: .92rem;
  color: var(--nwb-text);
  line-height: 1.5;
}
.nwb-check-list li::before {
  content: '✓';
  color: var(--nwb-gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.nwb-code-panel {
  background: var(--nwb-navy);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.nwb-code-panel h3 {
  color: var(--nwb-gold);
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.nwb-code-item {
  background: rgba(255,255,255,.07);
  border-radius: 7px;
  padding: 13px 17px;
  border-left: 3px solid var(--nwb-gold);
}
.nwb-code-item strong { color: white; font-size: .88rem; display: block; margin-bottom: 3px; }
.nwb-code-item span { color: rgba(255,255,255,.58); font-size: .78rem; }

/* ─────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────── */
.nwb-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.nwb-testimonial {
  background: white;
  border-radius: 10px;
  padding: 30px 26px;
  border: 1.5px solid var(--nwb-border);
  position: relative;
}
.nwb-testimonial::before {
  content: '\201C';
  font-family: var(--nwb-font-display);
  font-size: 5rem;
  color: var(--nwb-gold);
  opacity: .22;
  position: absolute;
  top: 8px; left: 18px;
  line-height: 1;
}
.nwb-testimonial__stars { color: var(--nwb-gold); font-size: .95rem; margin-bottom: 14px; }
.nwb-testimonial p {
  color: var(--nwb-text);
  font-style: italic;
  font-size: .92rem;
  line-height: 1.7;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.nwb-testimonial__author strong {
  display: block;
  color: var(--nwb-navy);
  font-size: .88rem;
}
.nwb-testimonial__author span { color: var(--nwb-muted); font-size: .8rem; }

/* ─────────────────────────────────────────
   CTA STRIP
───────────────────────────────────────── */
.nwb-cta-strip {
  background: var(--nwb-gold);
  padding: 64px 0;
  text-align: center;
}
.nwb-cta-strip h2 {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  color: white;
  margin-bottom: 12px;
}
.nwb-cta-strip p { color: rgba(255,255,255,.88); font-size: 1.05rem; margin-bottom: 28px; }
.nwb-btn--white {
  background: white;
  color: var(--nwb-gold);
  border-color: white;
  display: inline-block;
  padding: 14px 40px;
  border-radius: var(--nwb-radius);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .2s;
}
.nwb-btn--white:hover { background: var(--nwb-navy); color: white; border-color: var(--nwb-navy); }

/* ─────────────────────────────────────────
   BREADCRUMBS
───────────────────────────────────────── */
.nwb-breadcrumb {
  background: var(--nwb-sand);
  padding: 10px 0;
  font-size: .8rem;
  color: var(--nwb-muted);
  border-bottom: 1px solid var(--nwb-border);
}
.nwb-breadcrumb a { color: var(--nwb-gold); text-decoration: none; }
.nwb-breadcrumb a:hover { color: var(--nwb-teal); }
.nwb-breadcrumb__sep { margin: 0 7px; color: var(--nwb-border); }

/* ─────────────────────────────────────────
   SERVICE SILO PAGE
───────────────────────────────────────── */
.nwb-service-page-hero {
  background: linear-gradient(150deg, var(--nwb-navy) 0%, #14446a 100%);
  padding: 64px 0;
}
.nwb-service-page-hero h1 { color: white; }
.nwb-service-page-hero p { color: rgba(255,255,255,.75); max-width: 600px; line-height: 1.72; }

.nwb-service-page-body { padding: 72px 0; }
.nwb-service-page-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
}
.nwb-service-page-content h2 { margin-bottom: 16px; }
.nwb-service-page-content p { color: var(--nwb-muted); line-height: 1.75; margin-bottom: 16px; }

/* Sidebar */
.nwb-sidebar-card {
  background: var(--nwb-sand);
  border-radius: 10px;
  padding: 28px;
  border: 1.5px solid var(--nwb-border);
  margin-bottom: 24px;
}
.nwb-sidebar-card h4 { color: var(--nwb-navy); font-size: 1rem; margin-bottom: 14px; }
.nwb-sidebar-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nwb-sidebar-card ul li a {
  color: var(--nwb-text);
  text-decoration: none;
  font-size: .88rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nwb-sidebar-card ul li a::before {
  content: '→';
  color: var(--nwb-gold);
  font-size: .8rem;
}
.nwb-sidebar-card ul li a:hover { color: var(--nwb-gold); }
.nwb-sidebar-cta {
  background: var(--nwb-navy);
  border-radius: 10px;
  padding: 28px;
  text-align: center;
}
.nwb-sidebar-cta h4 { color: var(--nwb-gold); font-size: 1rem; margin-bottom: 8px; }
.nwb-sidebar-cta p { color: rgba(255,255,255,.7); font-size: .85rem; margin-bottom: 16px; }
.nwb-sidebar-phone {
  display: block;
  color: var(--nwb-gold);
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 14px;
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
#nwb-footer {
  background: var(--nwb-navy);
  padding: 64px 0 28px;
}
.nwb-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.nwb-footer-brand img { height: 56px; margin-bottom: 18px; }
.nwb-footer-brand p {
  color: rgba(255,255,255,.58);
  font-size: .87rem;
  line-height: 1.72;
  max-width: 280px;
}
.nwb-footer-brand .nwb-footer-phone {
  color: var(--nwb-gold);
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  display: block;
  margin-top: 14px;
}
.nwb-footer-col h4 {
  color: var(--nwb-gold);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.nwb-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.nwb-footer-col ul li a {
  color: rgba(255,255,255,.58);
  text-decoration: none;
  font-size: .87rem;
  transition: color .2s;
}
.nwb-footer-col ul li a:hover { color: var(--nwb-gold); }
.nwb-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255,255,255,.4);
  font-size: .78rem;
  flex-wrap: wrap;
  gap: 10px;
}
.nwb-footer-bottom a { color: var(--nwb-gold); text-decoration: none; }

/* ─────────────────────────────────────────
   ELEMENTOR OVERRIDES
───────────────────────────────────────── */
.elementor-section { position: relative; }
.elementor-widget-heading .elementor-heading-title { font-family: var(--nwb-font-display); }
.e-con, .e-container { --gap: 20px; }

/* ─────────────────────────────────────────
   UTILITY CLASSES
───────────────────────────────────────── */
.nwb-bg-navy  { background: var(--nwb-navy); }
.nwb-bg-sand  { background: var(--nwb-sand); }
.nwb-bg-teal  { background: var(--nwb-teal); }
.nwb-bg-white { background: var(--nwb-white); }
.nwb-text-gold  { color: var(--nwb-gold); }
.nwb-text-navy  { color: var(--nwb-navy); }
.nwb-text-white { color: white; }
.nwb-text-muted { color: var(--nwb-muted); }
.nwb-text-center { text-align: center; }
.nwb-mt-0 { margin-top: 0; }
.nwb-visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1100px) {
  .nwb-hero { grid-template-columns: 1fr; }
  .nwb-hero__form-panel { border-left: none; border-top: 3px solid var(--nwb-gold); }
  .nwb-location-hero__inner { grid-template-columns: 1fr; }
  .nwb-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .nwb-footer-grid { grid-template-columns: 1fr 1fr; }
  .nwb-coastal-grid { grid-template-columns: 1fr; gap: 40px; }
  .nwb-service-page-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nwb-nav { display: none; }
  .nwb-nav.open { display: flex; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: #FFFFFF; padding: 16px; border-top: 1px solid rgba(0,0,0,.08); box-shadow: 0 8px 24px rgba(0,0,0,.12); }
  .nwb-nav.open ul { flex-direction: column; width: 100%; }
  .nwb-hamburger { display: flex; }
  .nwb-services-grid, .nwb-locations-grid, .nwb-testimonials-grid { grid-template-columns: 1fr; }
  .nwb-hero__content { padding: 40px 24px; }
  .nwb-hero__form-panel { padding: 36px 24px; }
  .nwb-section { padding: 52px 0; }
  .nwb-container { padding: 0 20px; }
  .nwb-footer-grid { grid-template-columns: 1fr; }
  .nwb-stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .nwb-form-grid { grid-template-columns: 1fr; }
  .nwb-footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .nwb-hero__btns { flex-direction: column; }
  .nwb-stats-grid { grid-template-columns: 1fr 1fr; }
}
