/* ===== STAND FAST SOLUTIONS — MAIN STYLESHEET ===== */

:root {
  --navy:   #1C2B5E;
  --crimson:#8B1A2A;
  --gold:   #C9A060;
  --white:  #FFFFFF;
  --light:  #F5F5F5;
  --dark:   #111111;
  --gray:   #666666;
  --border: #E0E0E0;
  --font-heading: 'Oswald', sans-serif;
  --font-body:    'Open Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

/* ===== UTILITY ===== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover { background: #b8893e; border-color: #b8893e; transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--navy); transform: translateY(-2px); }

.section-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--gray);
  max-width: 600px;
}

/* ===== HEADER / NAV ===== */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 44px;
  width: auto;
  max-width: 220px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 8px 14px;
  border-radius: 3px;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--crimson); }

.nav-links .nav-cta a {
  background: var(--navy);
  color: var(--white);
  padding: 9px 20px;
}
.nav-links .nav-cta a:hover { background: #0d1733; color: var(--white); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  background: linear-gradient(rgba(28,43,94,0.68), rgba(10,16,28,0.84)), url('images/Pressure Wash 1.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(201,160,96,0.06)" stroke-width="1"/><circle cx="50" cy="50" r="25" fill="none" stroke="rgba(201,160,96,0.04)" stroke-width="1"/></svg>') center/600px repeat;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,160,96,0.15);
  border: 1px solid rgba(201,160,96,0.4);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 24px;
}
.hero-badge span {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-badge .star { color: var(--gold); font-size: 0.9rem; }

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-title .accent { color: var(--gold); }

.hero-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.stat-item { text-align: left; }
.stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-photo-frame {
  position: relative;
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
  border: 2px solid rgba(201,160,96,0.3);
}

.hero-photo {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 10px;
}

.hero-mascot {
  position: absolute;
  bottom: -28px;
  right: -20px;
  width: 140px;
  height: auto;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.4));
  z-index: 2;
  pointer-events: none;
}

/* ===== NAV PHONE ===== */
.nav-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--navy);
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid rgba(28,43,94,0.25);
  border-radius: 4px;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.nav-phone svg { flex-shrink: 0; }
.nav-phone:hover {
  background: rgba(28,43,94,0.06);
  border-color: var(--navy);
  color: var(--navy);
}

/* ===== TRUST BAR ===== */
#trust-bar {
  background: var(--light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
}
.trust-item .icon { font-size: 1.3rem; color: var(--gold); }

/* ===== SERVICES ===== */
#services {
  padding: 96px 0;
  background: var(--white);
}

.services-header { text-align: center; margin-bottom: 56px; }
.services-header .section-subtitle { margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px 28px;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.service-card:hover {
  box-shadow: 0 8px 32px rgba(28,43,94,0.1);
  transform: translateY(-4px);
  border-color: rgba(201,160,96,0.3);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card--cta {
  background: var(--navy);
  border-color: var(--navy);
}

.service-card--cta::before { background: var(--gold); }

.service-card--cta .service-title,
.service-card--cta .service-desc { color: rgba(255,255,255,0.9); }

.service-card--cta .service-icon {
  background: rgba(255,255,255,0.1);
}

.service-cta-btn {
  margin-top: 20px;
  font-size: 0.85rem;
  padding: 11px 24px;
}

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(28,43,94,0.06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.65;
}

/* ===== SERVICES PHOTO STRIP ===== */
.services-photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 52px;
  border-radius: 8px;
  overflow: hidden;
}

.sps-photo {
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 6px;
}

/* ===== BEFORE / AFTER ===== */
#before-after {
  padding: 96px 0;
  background: var(--light);
}

.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.ba-job {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
}

.ba-pair {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.ba-arrow {
  font-size: 1.4rem;
  color: var(--gold);
  font-family: var(--font-heading);
  text-align: center;
}

.ba-slot {
  aspect-ratio: 4/3;
  background: #e8e8e8;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  position: relative;
  border: 1px solid var(--border);
}

.ba-slot--after {
  background: rgba(28,43,94,0.05);
  border: 1px dashed var(--navy);
}

.ba-tag {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--gray);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
}

.ba-tag--after {
  background: var(--gold);
  color: var(--navy);
}

.ba-img {
  font-size: 1.8rem;
  opacity: 0.4;
}

.ba-caption {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  text-align: center;
}

.ba-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--gray);
  font-style: italic;
}

/* ===== WHY US ===== */
#why {
  padding: 0;
  background: var(--navy);
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-content .section-title { color: var(--navy); }

.why-content .section-subtitle { color: var(--gray); margin-bottom: 40px; }

.why-list { list-style: none; display: flex; flex-direction: column; gap: 20px; }

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-check {
  width: 28px;
  height: 28px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-item-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 4px;
}
.why-item-text p { font-size: 0.9rem; color: var(--gray); }

.why-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.why-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 20px;
  text-align: center;
}

.why-card .big-num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.why-card p { font-size: 0.8rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.08em; }

/* ===== ABOUT ===== */
#about {
  padding: 0;
  background: transparent;
}

.about-creds-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  padding: 64px 0;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-creds {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cred-box {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px 28px;
  position: relative;
  border-left: 4px solid var(--gold);
}

.cred-icon {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.cred-box h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
}

.cred-box p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.6;
}

.cred-pending {
  display: inline-block;
  margin-top: 10px;
  background: rgba(201,160,96,0.15);
  color: var(--gold);
  border: 1px solid rgba(201,160,96,0.4);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
}

.about-photo-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}

.about-photo {
  height: 140px;
  border-radius: 6px;
  background-size: cover;
  background-position: center;
}

.about-content { padding-top: 4px; }

.about-content p {
  font-size: 0.95rem;
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.7;
}

.about-content .section-subtitle { margin-bottom: 24px; }

.vet-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: var(--white);
  border-radius: 4px;
  padding: 10px 20px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 8px;
}
.vet-badge .flag { font-size: 1.1rem; }

/* ===== TESTIMONIALS ===== */
#testimonials {
  padding: 96px 0;
  background: var(--white);
}

.t-header-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

.t-stars-display {
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: 2px;
}

.t-stars-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(28,43,94,0.12);
  transform: translateY(-3px);
}

.t-quote-mark {
  font-size: 4rem;
  line-height: 1;
  color: var(--gold);
  font-family: Georgia, serif;
  margin-bottom: 8px;
  opacity: 0.7;
}

.t-body {
  font-size: 0.93rem;
  color: var(--gray);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 24px;
}

.t-footer {
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.t-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.t-name {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
}

.t-role {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 3px;
}

.t-google-cta {
  text-align: center;
  padding-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.t-google-cta p {
  font-size: 0.95rem;
  color: var(--gray);
}

.t-review-btn {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  font-size: 0.85rem;
  padding: 11px 24px;
}

.t-review-btn:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===== SERVICE AREA ===== */
#service-area {
  padding: 96px 0;
  background: var(--navy);
}

#service-area .section-title  { color: var(--white); }
#service-area .section-subtitle { color: rgba(255,255,255,0.65); }
#service-area .sa-heading      { color: rgba(255,255,255,0.9); }
#service-area .sa-list li      { color: rgba(255,255,255,0.82); }
#service-area .sa-note         { color: rgba(255,255,255,0.5); }
#service-area .sa-map          { border-color: rgba(255,255,255,0.12); box-shadow: 0 4px 24px rgba(0,0,0,0.3); }

.sa-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.sa-map {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}

.sa-map iframe { display: block; width: 100%; }

.sa-heading {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 20px;
}

.sa-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin-bottom: 24px;
}

.sa-list li {
  font-size: 0.9rem;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.sa-list li::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.sa-note {
  font-size: 0.88rem;
  color: var(--gray);
  margin-bottom: 24px;
  line-height: 1.65;
}

/* ===== CONTACT ===== */
#contact {
  padding: 96px 0;
  background: var(--navy);
}

#contact .contact-info-heading { color: var(--white); }
#contact .contact-info-sub    { color: rgba(255,255,255,0.7); }
#contact .c-icon               { background: rgba(255,255,255,0.1); }
#contact .c-value              { color: rgba(255,255,255,0.85); }

.contact-header {
  text-align: center;
  margin-bottom: 56px;
}
.contact-header .section-subtitle { margin: 0 auto; }

.contact-info-heading {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
}

.contact-info-sub {
  font-size: 0.92rem;
  color: var(--gray);
  margin-bottom: 32px;
  line-height: 1.7;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-info .section-subtitle { margin-bottom: 40px; }

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.contact-detail .c-icon {
  width: 44px;
  height: 44px;
  background: rgba(28,43,94,0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-detail .c-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
  display: block;
}
.contact-detail .c-value {
  font-size: 0.95rem;
  color: var(--dark);
}

.contact-form { background: var(--white); border-radius: 8px; padding: 40px 36px; border: 1px solid var(--border); }

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--navy); }

.form-group textarea { height: 120px; resize: vertical; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-submit { width: 100%; justify-content: center; }

/* ===== WHAT TO EXPECT (inside contact form) ===== */
.form-expect {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.expect-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.expect-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.expect-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.expect-num {
  width: 26px;
  height: 26px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.expect-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 3px;
}

.expect-text p {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ===== FOOTER ===== */
#footer {
  background: #0a1020;
  color: rgba(255,255,255,0.82);
  padding: 56px 0 28px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo { height: 90px; width: auto; margin-bottom: 16px; }

.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 280px; }

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.78);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-col--contact address { font-style: normal; }

.footer-nap { margin-bottom: 16px; }
.footer-nap-name {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
}
.footer-nap p { font-size: 0.88rem; margin-bottom: 4px; }
.footer-nap a { color: rgba(255,255,255,0.78); transition: color 0.2s; }
.footer-nap a:hover { color: var(--gold); }

.footer-sa-label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.footer-sa-text { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.6; }

.footer-bottom p { font-size: 0.8rem; }
.footer-bottom .vet-owned {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer-tagline {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ===== GUARANTEE BANNER ===== */
#guarantee {
  background: var(--gold);
  padding: 26px 0;
}

.guarantee-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  text-align: center;
}

.guarantee-mascot {
  height: 88px;
  width: auto;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2));
  flex-shrink: 0;
}

.guarantee-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 4px;
}

.guarantee-text p {
  font-size: 0.9rem;
  color: rgba(28,43,94,0.78);
  max-width: 520px;
}

.guarantee-btn {
  display: inline-block;
  padding: 11px 24px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background 0.2s;
  white-space: nowrap;
}
.guarantee-btn:hover { background: #0d1733; }

/* ===== NO CONTRACT CALLOUT ===== */
.no-contract-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(201,160,96,0.1);
  border: 1px solid rgba(201,160,96,0.35);
  border-radius: 6px;
  padding: 14px 24px;
  margin: 0 auto 44px;
  max-width: 660px;
  font-size: 0.9rem;
  color: var(--dark);
  text-align: center;
}

.no-contract-icon {
  width: 22px;
  height: 22px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

.no-contract-bar strong { color: var(--navy); }

/* ===== HOW IT WORKS ===== */
#how-it-works {
  padding: 96px 0;
  background: var(--navy);
}

.hiw-label { color: var(--gold) !important; }
.hiw-title { color: var(--white) !important; }
.hiw-sub   { color: rgba(255,255,255,0.65) !important; }

/* How It Works is dark navy — white text is correct (uses .hiw-title defaults) */

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  margin-top: 56px;
  margin-bottom: 56px;
}

.step { text-align: center; padding: 0 20px; }

.step-num {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
}

/* step-title and step-desc use white defaults — correct for dark HIW section */

.step-connector {
  display: flex;
  align-items: flex-start;
  padding-top: 24px;
  color: rgba(201,160,96,0.5);
  font-size: 1.6rem;
  line-height: 1;
}

.hiw-cta { text-align: center; }

/* ===== FAQ ===== */
#faq {
  padding: 96px 0;
  background: var(--light);
}

#faq .hiw-title { color: var(--navy) !important; }
#faq .hiw-sub   { color: var(--gray) !important; }

#faq details.faq-item {
  background: var(--white);
  border-color: var(--border);
}

#faq details.faq-item[open] {
  border-color: rgba(201,160,96,0.5);
  box-shadow: 0 4px 16px rgba(28,43,94,0.07);
}

#faq summary.faq-q {
  color: var(--navy);
}

#faq .faq-arrow {
  background: rgba(28,43,94,0.07);
  color: var(--navy);
}

#faq details[open] .faq-arrow {
  background: var(--gold);
  color: var(--navy);
}

#faq .faq-a {
  color: var(--gray);
  border-top-color: var(--border);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

details.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

details.faq-item[open] {
  border-color: rgba(201,160,96,0.5);
  box-shadow: 0 4px 16px rgba(28,43,94,0.07);
}

summary.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  color: var(--navy);
  list-style: none;
  gap: 16px;
  user-select: none;
}

summary.faq-q::-webkit-details-marker { display: none; }
summary.faq-q::marker { display: none; }

.faq-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(28,43,94,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
  transition: transform 0.25s, background 0.2s, color 0.2s;
  color: var(--navy);
}

details[open] .faq-arrow {
  transform: rotate(180deg);
  background: var(--gold);
  color: var(--navy);
}

.faq-a {
  padding: 16px 24px 22px;
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.75;
  border-top: 1px solid var(--border);
}

/* ===== MOBILE NAV ===== */
@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
  .nav-phone span { display: none; }
  .nav-phone { padding: 8px 10px; border: none; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .nav-links {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    flex-direction: column;
    padding: 24px 0;
    gap: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  }

  .nav-links.open { display: flex; }

  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 14px 28px; color: var(--navy); }
  .nav-links .nav-cta a { margin: 12px 28px; padding: 12px 20px; text-align: center; border-radius: 4px; background: var(--navy); color: var(--white); }

  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; padding: 48px 0; }
  .hero-visual { order: -1; }
  .hero-photo { height: 280px; }
  .hero-mascot { width: 90px; bottom: -18px; right: -12px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-text { margin: 0 auto 36px; }
  .services-photo-strip { grid-template-columns: 1fr; }
  .sps-photo { height: 160px; }

  .why-inner,
  .about-inner,
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }

  .why-visual { grid-template-columns: 1fr 1fr; }

  .ba-grid { grid-template-columns: 1fr; }

  .guarantee-inner { flex-direction: column; gap: 12px; }
  .guarantee-btn { width: 100%; text-align: center; }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .step-connector { display: none; }
  .step {
    padding: 0 0 32px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 32px;
  }
  .step:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .sa-layout { grid-template-columns: 1fr; }
  .sa-map iframe { height: 280px; }

  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-visual { grid-template-columns: 1fr; }
  .sa-list { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}

/* ===== FOOTER LOGO — white monochrome on dark footer ===== */
.footer-logo { filter: brightness(0) invert(1); }

/* ===== NAV DROPDOWN ===== */
.nav-caret { font-size: 0.55rem; margin-left: 3px; vertical-align: middle; opacity: 0.7; }

.nav-has-dropdown { position: relative; }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.13);
  list-style: none;
  min-width: 240px;
  padding: 8px 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.18s, transform 0.18s;
  z-index: 9999;
}

.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown li { list-style: none; }

.nav-dropdown li a {
  display: block;
  padding: 11px 22px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  border-radius: 0;
  transition: background 0.15s, color 0.15s;
}

.nav-dropdown li a:hover {
  background: var(--light);
  color: var(--crimson);
}

/* ===== PAGE HERO (inner pages — shorter than homepage hero) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0d1733 60%, #1a0a10 100%);
  padding: 148px 0 72px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(201,160,96,0.05)" stroke-width="1"/></svg>') center/500px repeat;
  pointer-events: none;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 18px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb-sep { opacity: 0.4; }

.page-hero-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,160,96,0.1);
  border: 1px solid rgba(201,160,96,0.3);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 16px;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 14px;
  max-width: 680px;
}

.page-hero h1 .accent { color: var(--gold); }

.page-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  max-width: 580px;
  margin-bottom: 32px;
  line-height: 1.65;
}

.page-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== INNER PAGE CONTENT SECTIONS ===== */
.content-section { padding: 80px 0; }
.content-section--light { background: var(--light); }
.content-section--white { background: var(--white); }
.content-section--navy { background: var(--navy); color: var(--white); }

/* Two-column service layout: main content + sidebar */
.service-page-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 60px;
  align-items: start;
}

.service-main h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--navy);
  margin: 40px 0 12px;
  letter-spacing: 0.03em;
}
.service-main h2:first-child { margin-top: 0; }
.service-main h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--navy);
  margin: 28px 0 8px;
  letter-spacing: 0.04em;
}
.service-main p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 16px;
}
.service-main ul, .service-main ol {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.service-main li {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.65;
  padding-left: 22px;
  position: relative;
}
.service-main li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.82rem;
  top: 1px;
}

/* Sticky sidebar */
.service-sidebar {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-cta {
  background: var(--navy);
  border-radius: 8px;
  padding: 32px 26px;
  text-align: center;
}
.sidebar-cta h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}
.sidebar-cta p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 22px;
  line-height: 1.65;
}
.sidebar-cta .btn {
  width: 100%;
  text-align: center;
  display: block;
  margin-bottom: 10px;
}
.sidebar-phone {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.sidebar-phone a { color: var(--gold); }

.sidebar-trust {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 22px;
}
.sidebar-trust ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.sidebar-trust li {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sidebar-trust li::before { content: '✓'; color: var(--gold); font-weight: 700; }

/* Feature cards grid inside service main */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0 32px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: 6px;
  padding: 20px 18px;
}
.feature-card h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
}
.feature-card p { font-size: 0.87rem; color: var(--gray); line-height: 1.6; }

/* Service page — navy why-us strip */
.content-section--navy .section-title { color: var(--white); }
.content-section--navy .section-subtitle { color: rgba(255,255,255,0.65); }
.content-section--navy .why-list strong { color: var(--gold); }
.content-section--navy .why-item-text p { color: rgba(255,255,255,0.7); }

/* Service area list inside inner pages */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 20px;
  margin-top: 20px;
}
.areas-grid li {
  font-size: 0.9rem;
  color: var(--dark);
  padding-left: 18px;
  position: relative;
  list-style: none;
}
.areas-grid li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

/* Inner page FAQ (reuses existing .faq-* classes — but on white background) */
.faq-white details.faq-item { background: var(--white); border-color: var(--border); }
.faq-white summary.faq-q { color: var(--navy); }
.faq-white .faq-arrow { background: rgba(28,43,94,0.07); color: var(--navy); }
.faq-white details[open] .faq-arrow { background: var(--gold); color: var(--navy); }
.faq-white .faq-a { color: var(--gray); border-top-color: var(--border); }

/* ===== BLOG INDEX ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  box-shadow: 0 8px 28px rgba(28,43,94,0.1);
  transform: translateY(-3px);
}
.blog-card-img {
  height: 190px;
  background-size: cover;
  background-position: center;
  background-color: var(--light);
  flex-shrink: 0;
}
.blog-card-body {
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--crimson);
  background: rgba(139,26,42,0.07);
  border-radius: 100px;
  padding: 3px 10px;
  margin-bottom: 10px;
}
.blog-card-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.blog-card-excerpt {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
}
.blog-card-meta {
  font-size: 0.75rem;
  color: rgba(102,102,102,0.6);
  margin-bottom: 12px;
}
.blog-read-more {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--crimson);
}
.blog-read-more:hover { text-decoration: underline; }

/* ===== BLOG POST ===== */
.post-content {
  max-width: 740px;
  margin: 0 auto;
  padding: 64px 24px 80px;
}
.post-content h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--navy);
  margin: 44px 0 14px;
  letter-spacing: 0.03em;
}
.post-content h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--navy);
  margin: 28px 0 8px;
  letter-spacing: 0.04em;
}
.post-content p {
  font-size: 0.97rem;
  color: var(--dark);
  line-height: 1.82;
  margin-bottom: 18px;
}
.post-content ul, .post-content ol {
  padding-left: 20px;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.post-content li {
  font-size: 0.97rem;
  color: var(--dark);
  line-height: 1.7;
}
.post-content strong { color: var(--navy); }
.post-cta {
  background: var(--light);
  border-left: 4px solid var(--gold);
  border-radius: 6px;
  padding: 28px 32px;
  margin: 40px 0;
  text-align: center;
}
.post-cta h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
.post-cta p { color: var(--gray); margin-bottom: 18px; font-size: 0.93rem; }
.post-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 48px;
}
.post-back:hover { color: var(--crimson); }

/* ===== PHOTO SPLIT SECTIONS ===== */
.photo-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.photo-split--reverse .photo-split-img { order: 2; }
.photo-split--reverse .photo-split-content { order: 1; }
.photo-split-img {
  overflow: hidden;
  min-height: 440px;
}
.photo-split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-split-content {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.photo-split-content .eyebrow {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.photo-split-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.photo-split-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 14px;
}
.photo-split-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.photo-split-content li {
  font-size: 0.94rem;
  line-height: 1.65;
  padding-left: 22px;
  position: relative;
}
.photo-split-content li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-weight: 700;
  font-size: 0.82rem;
  top: 1px;
  color: var(--gold);
}
.content-section--navy .photo-split-content h2 { color: var(--white); }
.content-section--navy .photo-split-content p { color: rgba(255,255,255,0.75); }
.content-section--navy .photo-split-content li { color: rgba(255,255,255,0.72); }
.content-section--light .photo-split-content h2,
.content-section--white .photo-split-content h2 { color: var(--navy); }
.content-section--light .photo-split-content p,
.content-section--white .photo-split-content p { color: var(--gray); }
.content-section--light .photo-split-content li,
.content-section--white .photo-split-content li { color: var(--gray); }

/* navy content section generic text */
.content-section--navy h2 { color: var(--white); }
.content-section--navy h3 { color: var(--gold); }
.content-section--navy p { color: rgba(255,255,255,0.75); }
.content-section--navy li { color: rgba(255,255,255,0.72); }
.content-section--navy .service-main h2 { color: var(--white); }
.content-section--navy .service-main p { color: rgba(255,255,255,0.75); }
.content-section--navy .service-main li { color: rgba(255,255,255,0.72); }
.content-section--navy .faq-item { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.12); }
.content-section--navy .faq-q { color: var(--white); }
.content-section--navy .faq-arrow { background: rgba(255,255,255,0.1); color: var(--white); }
.content-section--navy .faq-a { color: rgba(255,255,255,0.7); border-top-color: rgba(255,255,255,0.1); }
.content-section--navy .areas-grid li { color: rgba(255,255,255,0.75); }
.content-section--navy .areas-grid li::before { background: var(--gold); }

/* ===== FULL-WIDTH PHOTO BG SECTION ===== */
.photo-bg-section {
  position: relative;
  padding: 96px 0;
  background-size: cover;
  background-position: center;
  text-align: center;
}
.photo-bg-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(28,43,94,0.8), rgba(10,16,28,0.88));
}
.photo-bg-section .container { position: relative; }
.photo-bg-section .eyebrow {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}
.photo-bg-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  color: var(--white);
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}
.photo-bg-section p {
  color: rgba(255,255,255,0.78);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto 28px;
}
.photo-bg-stats {
  display: flex;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
  margin-top: 44px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.photo-bg-stat { text-align: center; }
.photo-bg-stat-num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--gold);
  letter-spacing: 0.04em;
  display: block;
  line-height: 1;
}
.photo-bg-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-top: 7px;
}

/* ===== RESPONSIVE — INNER PAGES ===== */
@media (max-width: 900px) {
  .service-page-layout { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .photo-split { grid-template-columns: 1fr; }
  .photo-split-img { min-height: 280px; order: 0 !important; }
  .photo-split-content { padding: 44px 28px; order: 1 !important; }
  .photo-bg-stats { gap: 32px; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 120px 0 56px; }
  .photo-split-content { padding: 36px 20px; }
  .photo-bg-section { padding: 64px 0; }
  .photo-bg-stats { gap: 24px; }
  .photo-bg-stat-num { font-size: 1.8rem; }
}
