@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700;800&family=Open+Sans:wght@300;400;600&display=swap');

:root {
  --navy:       #1a2e44;
  --navy-dark:  #0f1e2e;
  --teal:       #2e8fa0;
  --teal-dark:  #1d6e7c;
  --teal-light: #3aaec2;
  --gold:       #c8922a;
  --white:      #ffffff;
  --off-white:  #f7f9fb;
  --light:      #eef2f5;
  --mid-gray:   #8a9bb0;
  --text:       #2c3e50;
  --font-h:     'Raleway', sans-serif;
  --font-b:     'Open Sans', sans-serif;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body { font-family:var(--font-b); color:var(--text); font-size:15px; line-height:1.75; background:#fff; }
a { color:inherit; text-decoration:none; }
img { max-width:100%; display:block; }

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  padding: 0 2rem;
}
.top-bar a {
  color: rgba(255,255,255,0.7);
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.15s, background 0.15s;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.top-bar a:first-child { border-left: 1px solid rgba(255,255,255,0.08); }
.top-bar a:hover { color: white; background: rgba(255,255,255,0.05); }

/* ===== HEADER ===== */
#site-header {
  background: white;
  position: sticky;
  top: 0;
  z-index: 500;
  box-shadow: 0 2px 10px rgba(0,0,0,0.09);
  border-bottom: 1px solid var(--light);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}
.site-logo img { height: 96px; width: auto; }
.header-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-family: var(--font-h);
}
.header-phone {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}
.header-phone a { color: var(--navy); }
.header-phone a:hover { color: var(--teal); }
.header-email {
  font-size: 13px;
  font-weight: 600;
  color: var(--mid-gray);
}
.header-email a { color: var(--mid-gray); }
.header-email a:hover { color: var(--teal); }
.btn-get-in-touch {
  background: var(--teal);
  color: white !important;
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.15s;
}
.btn-get-in-touch:hover { background: var(--teal-dark) !important; color: white !important; }

/* ===== NAV ===== */
nav {
  background: var(--navy);
  overflow-x: auto;
  scrollbar-width: none;
}
nav::-webkit-scrollbar { display: none; }
.nav-inner {
  display: flex;
  align-items: stretch;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
.nav-item {
  color: rgba(255,255,255,0.78);
  font-family: var(--font-h);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 13px 13px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  transition: color 0.15s, background 0.15s;
  border-bottom: 3px solid transparent;
  cursor: pointer;
}
.nav-item:hover { color: white; background: rgba(255,255,255,0.05); }
.nav-item.active { color: var(--teal-light); border-bottom-color: var(--teal-light); }
.nav-dropdown { position: relative; display: flex; align-items: stretch; }
.nav-dropdown-label {
  color: rgba(255,255,255,0.78);
  font-family: var(--font-h);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 13px 13px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
  border-bottom: 3px solid transparent;
  transition: color 0.15s, background 0.15s;
}
.nav-dropdown:hover .nav-dropdown-label { color: white; background: rgba(255,255,255,0.05); }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--navy-dark);
  border-top: 2px solid var(--teal);
  min-width: 155px;
  z-index: 600;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 10px 16px;
  color: rgba(255,255,255,0.72);
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown-menu a:hover { background: rgba(255,255,255,0.08); color: white; }

/* ===== ACCRED BAR (below nav, sitewide) ===== */
.accred-bar {
  background: var(--navy-dark);
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 2px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 0.6rem 2rem;
  flex-wrap: wrap;
}
.accred-bar-label {
  font-family: var(--font-h);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
  margin-right: 0.5rem;
}
.accred-bar img {
  height: 32px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.accred-bar img:hover { opacity: 1; }

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(12,24,38,0.88) 0%,
    rgba(12,24,38,0.65) 45%,
    rgba(12,24,38,0.25) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 4.5rem 2rem;
  max-width: 580px;
  margin-left: max(2rem, calc((100vw - 1280px)/2 + 2rem));
}
.hero-content h1 {
  font-family: var(--font-h);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  color: white;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.hero-content p {
  color: rgba(255,255,255,0.82);
  font-size: 0.975rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero-btn-row { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-badges {
  display: flex;
  gap: 2rem;
  margin-top: 2.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,0.18);
  flex-wrap: wrap;
}
.hero-badge {
  font-family: var(--font-h);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}

/* ===== INNER HERO ===== */
.inner-hero {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  align-items: center;
}
.inner-hero .hero-bg::after {
  background: linear-gradient(
    to right,
    rgba(12,24,38,0.9) 0%,
    rgba(12,24,38,0.65) 50%,
    rgba(12,24,38,0.2) 100%
  );
}
.inner-hero .hero-content { padding: 3.5rem 2rem; }
.inner-hero h1 { font-size: clamp(1.75rem, 3.5vw, 2.4rem); }
.inner-hero p { font-size: 0.95rem; color: rgba(255,255,255,0.78); max-width: 520px; margin-bottom: 0; }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  font-family: var(--font-h);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}
.breadcrumb a { color: rgba(255,255,255,0.45); }
.breadcrumb a:hover { color: var(--teal-light); }
.breadcrumb span { color: rgba(255,255,255,0.3); margin: 0 6px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  text-decoration: none;
}
.btn-primary { background: var(--teal); color: white; }
.btn-primary:hover { background: var(--teal-dark); color: white; }
.btn-navy { background: var(--navy); color: white; }
.btn-navy:hover { background: var(--navy-dark); color: white; }
.btn-white { background: white; color: var(--navy); }
.btn-white:hover { background: var(--off-white); }
.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.55);
}
.btn-outline-white:hover { border-color: white; background: rgba(255,255,255,0.08); }

/* ===== LAYOUT ===== */
.section { padding: 4.5rem 2rem; }
.section-alt { background: var(--off-white); }
.section-dark { background: var(--navy); color: white; }
.container { max-width: 1100px; margin: 0 auto; }

.eyebrow {
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.5rem;
  display: block;
}
.eyebrow.light { color: var(--teal-light); }

h2.stitle {
  font-family: var(--font-h);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 1.25rem;
}
h2.stitle.light { color: white; }

h3.stitle {
  font-family: var(--font-h);
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 1rem;
}

.divider {
  width: 48px; height: 3px;
  background: var(--teal);
  margin: 0.9rem 0 1.4rem;
  border-radius: 2px;
}
.divider.gold { background: var(--gold); }
.divider.light { background: var(--teal-light); }

.body-text {
  font-size: 0.95rem;
  color: #4a5e72;
  line-height: 1.82;
  max-width: 680px;
}
.body-text.light { color: rgba(255,255,255,0.75); max-width: 720px; }
.body-text + .body-text { margin-top: 1rem; }

/* ===== TWO COL ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.two-col-wide { grid-template-columns: 1.15fr 1fr; }
.col-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 2px;
}

/* ===== CHECKLIST ===== */
ul.checklist {
  list-style: none;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
ul.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: #4a5e72;
  line-height: 1.55;
}
ul.checklist li::before {
  content: '✓';
  background: var(--teal);
  color: white;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700;
  flex-shrink: 0; margin-top: 2px;
}

/* ===== SERVICE CARDS ===== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.service-card {
  border: 1px solid var(--light);
  border-top: 3px solid var(--teal);
  background: white;
  text-decoration: none;
  display: block;
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover { box-shadow: 0 6px 22px rgba(0,0,0,0.1); transform: translateY(-3px); }
.service-card img { width: 100%; height: 155px; object-fit: cover; }
.service-card-body { padding: 1rem; }
.service-card-body h3 {
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
}

/* ===== TESTIMONIAL ===== */
.testimonial {
  background: white;
  border-left: 4px solid var(--gold);
  padding: 2rem 2.5rem;
  margin: 2.5rem 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.testimonial blockquote {
  font-family: var(--font-h);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}
.testimonial cite {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--mid-gray);
  font-style: normal;
}

/* ===== ACCREDITATIONS ===== */
.accred-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 2.5rem 2rem;
  background: var(--off-white);
  border-top: 1px solid var(--light);
  border-bottom: 1px solid var(--light);
}
.accred-strip img {
  height: 54px;
  width: auto;
  object-fit: contain;
  opacity: 0.75;
  filter: grayscale(10%);
  transition: opacity 0.2s, filter 0.2s;
}
.accred-strip img:hover { opacity: 1; filter: none; }

/* ===== CTA STRIP ===== */
.cta-strip {
  background: var(--navy);
  padding: 3rem 2rem;
  text-align: center;
}
.cta-strip h4 {
  font-family: var(--font-h);
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  font-weight: 700;
  color: white;
  line-height: 1.45;
  margin-bottom: 1.5rem;
}
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== INFO BOX ===== */
.info-box {
  background: var(--off-white);
  border-left: 3px solid var(--teal);
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
  border-radius: 0 2px 2px 0;
}
.info-box p { font-size: 0.9rem; color: var(--text); line-height: 1.7; }

/* ===== PHOTO GALLERY ===== */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 2.5rem;
}
.photo-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* ===== BEFORE / AFTER ===== */
.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin: 2rem 0;
  max-width: 760px;
}
.ba-panel { position: relative; }
.ba-panel img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.ba-label {
  position: absolute;
  top: 10px; left: 10px;
  background: rgba(12,24,38,0.82);
  color: white;
  font-family: var(--font-h);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}
.ba-label.after { background: var(--teal); }

/* ===== CONTACT PAGE ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 3.5rem;
  align-items: start;
}
.contact-block { margin-bottom: 2rem; }
.contact-block h4 {
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.6rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--light);
}
.contact-block p,
.contact-block a {
  font-size: 0.925rem;
  color: var(--text);
  line-height: 1.7;
}
.contact-block a:hover { color: var(--teal); }
.contact-block .big-phone {
  font-size: 1.3rem;
  font-weight: 700;
  font-family: var(--font-h);
  color: var(--navy);
}
.hours-table { border-collapse: collapse; width: 100%; font-size: 0.9rem; }
.hours-table td { padding: 3px 10px 3px 0; color: var(--text); }
.hours-table td:first-child { font-weight: 600; color: var(--navy); width: 100px; }

.form-wrap {
  background: var(--off-white);
  border: 1px solid var(--light);
  border-radius: 2px;
  padding: 2.25rem;
}
.form-wrap h3 {
  font-family: var(--font-h);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.fg { margin-bottom: 1rem; }
.fg label {
  display: block;
  font-family: var(--font-h);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 5px;
}
.fg input, .fg select, .fg textarea {
  width: 100%;
  border: 1px solid #d0dae5;
  border-radius: 2px;
  padding: 9px 12px;
  font-family: var(--font-b);
  font-size: 14px;
  color: var(--text);
  background: white;
  transition: border-color 0.15s;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  outline: none; border-color: var(--teal);
}
.fg textarea { min-height: 110px; resize: vertical; }
.fg.has-error input,
.fg.has-error select,
.fg.has-error textarea { border-color: #c0392b; }
.fg .ferr { font-size: 11px; color: #c0392b; margin-top: 3px; display: none; }
.fg.has-error .ferr { display: block; }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.btn-submit {
  background: var(--teal);
  color: white;
  border: none;
  padding: 12px 28px;
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  width: 100%;
  margin-top: 0.5rem;
  transition: background 0.15s;
}
.btn-submit:hover:not(:disabled) { background: var(--teal-dark); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }
#form-status {
  display: none; border-radius: 2px;
  padding: 0.875rem 1rem; font-size: 13px; margin-top: 0.75rem;
}
#form-status.success { background: #e6f7ef; border: 1px solid #82c9a2; color: #1a5c36; }
#form-status.error   { background: #fdf0ee; border: 1px solid #e8a89d; color: #7a2a1e; }

/* ===== FOOTER ===== */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.65);
  padding: 3.5rem 2rem 1.5rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo-col img { height: 44px; width: auto; margin-bottom: 1rem; }
.footer-logo-col p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.footer-review-logos { display: flex; align-items: center; gap: 0.75rem; }
.footer-review-logos a img {
  height: 36px; width: auto;
  object-fit: contain;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.footer-review-logos a img:hover { opacity: 1; }
.footer-col h4 {
  font-family: var(--font-h);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-col p, .footer-col address {
  font-size: 0.875rem;
  line-height: 1.75;
  font-style: normal;
  color: rgba(255,255,255,0.55);
}
.footer-col a { color: rgba(255,255,255,0.55); transition: color 0.15s; }
.footer-col a:hover { color: white; }
.footer-col .footer-phone {
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-h);
  color: rgba(255,255,255,0.82);
  display: block;
  margin-bottom: 0.35rem;
}
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 11px;
  color: rgba(255,255,255,0.28);
  line-height: 1.6;
}
.footer-bottom a { color: rgba(255,255,255,0.28); margin: 0 0.2rem; }
.footer-bottom a:hover { color: rgba(255,255,255,0.55); }
.footer-links { display: flex; gap: 1rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .two-col, .two-col-wide { grid-template-columns: 1fr; gap: 2rem; }
  .contact-layout { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .header-inner { padding: 0.65rem 1rem; }
  .header-phone { font-size: 14px; }
  .header-email { display: none; }
  .top-bar { display: none; }
  .nav-inner { padding: 0 0.5rem; }
  .hero-content { padding: 3rem 1rem; margin-left: 0; }
  .section { padding: 3rem 1rem; }
  .footer-top { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .fg-row { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .service-grid { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: 1fr; }
  .before-after { grid-template-columns: 1fr; }
  .accred-strip { gap: 1.5rem; }
  .accred-strip img { height: 40px; }
}
