/* ===========================
   DIRECT SERVICE PLUMBING
   Dark Navy + Gold Premium
   =========================== */

:root {
  --navy: #1B2A3B;
  --navy-deep: #0F1923;
  --charcoal: #1E2832;
  --gold: #CFA15B;
  --gold-light: #E8BE7D;
  --gold-dim: rgba(207, 161, 91, 0.15);
  --white: #F8F5F0;
  --white-dim: rgba(248, 245, 240, 0.7);
  --white-faint: rgba(248, 245, 240, 0.12);
  --border: rgba(207, 161, 91, 0.2);
  --text-body: #C8C4BE;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: 0.25s ease;
  --radius: 4px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--navy-deep);
  color: var(--white);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- UTILITY ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-body);
  max-width: 560px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy-deep);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
}
.btn-primary:hover { background: var(--gold-light); }
.btn-primary:active { transform: scale(0.97); }
.btn-primary.btn-xl { font-size: 1.05rem; padding: 17px 34px; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 13px 27px;
  border-radius: var(--radius);
  transition: border-color var(--transition), color var(--transition);
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
.btn-secondary:active { transform: scale(0.97); }

/* ---- UTILITY BAR ---- */
.utility-bar {
  background: var(--navy-deep);
  border-bottom: 1px solid var(--white-faint);
  padding: 9px 0;
  font-size: 13px;
}
.utility-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.utility-left, .utility-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.utility-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white-dim);
}
.utility-item a { color: var(--gold); font-weight: 500; }
.utility-item a:hover { color: var(--gold-light); }
.utility-item svg { color: var(--gold); flex-shrink: 0; }
.utility-badge {
  background: var(--gold-dim);
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
  border: 1px solid var(--border);
}

/* ---- NAVBAR ---- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 25, 35, 0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 16px 0;
  transition: padding var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 1.35rem;
  color: var(--white);
  letter-spacing: 0.5px;
}
.logo-sub {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
  color: var(--white-dim);
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--white); background: var(--white-faint); }
.nav-link svg { transition: transform var(--transition); }
.has-dropdown { position: relative; }
.has-dropdown:hover .nav-link svg { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 240px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity var(--transition), transform var(--transition);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  z-index: 200;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 11px 18px;
  font-size: 14px;
  color: var(--white-dim);
  border-bottom: 1px solid var(--white-faint);
  transition: color var(--transition), background var(--transition);
}
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { color: var(--gold); background: var(--gold-dim); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy-deep);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: var(--radius);
  white-space: nowrap;
  flex-shrink: 0;
  transition: background var(--transition);
}
.nav-cta:hover { background: var(--gold-light); }
.nav-toggle { display: none; }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 18, 26, 0.90) 0%,
    rgba(15, 25, 35, 0.70) 55%,
    rgba(10, 18, 26, 0.50) 100%
  );
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
}
.hero-content {
  max-width: 620px;
}
.hero-headline {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: var(--white);
}
.headline-light { display: block; }
.headline-accent {
  display: block;
  color: var(--gold);
  font-style: italic;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--white-dim);
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.trust-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--white-dim);
  background: var(--white-faint);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 2px;
}
.trust-chip svg { color: var(--gold); }

/* ---- LEAD FORM CARD ---- */
.hero-form-card {
  background: rgba(15, 25, 35, 0.95);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 32px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.form-header {
  margin-bottom: 24px;
  text-align: center;
}
.form-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.45rem;
  color: var(--white);
  margin-bottom: 4px;
}
.form-sub {
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
}
.lead-form { display: flex; flex-direction: column; gap: 14px; }
.field-group { display: flex; flex-direction: column; gap: 5px; }
.field-group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--white-dim);
}
.field-group input,
.field-group select {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(207,161,91,0.25);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 14px;
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
}
.field-group input::placeholder,
.field-group select option:first-child {
  color: rgba(248, 245, 240, 0.60);
}
.field-group select option {
  background: var(--charcoal);
  color: var(--white);
}
.field-group input:focus,
.field-group select:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.1);
}
.form-submit {
  background: var(--gold);
  color: var(--navy-deep);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 15px;
  border-radius: var(--radius);
  width: 100%;
  letter-spacing: 0.3px;
  transition: background var(--transition), transform var(--transition);
  margin-top: 4px;
}
.form-submit:hover { background: var(--gold-light); }
.form-submit:active { transform: scale(0.97); }
.form-phone {
  text-align: center;
  font-size: 13px;
  color: var(--white-dim);
  margin-top: 4px;
}
.form-phone a { color: var(--gold); font-weight: 600; }

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--charcoal);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 40px;
}
.trust-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}
.trust-icon { color: var(--gold); }
.trust-text { display: flex; flex-direction: column; }
.trust-num {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 1.5rem;
  color: var(--white);
  line-height: 1;
}
.trust-label {
  font-size: 12px;
  color: var(--text-body);
  font-weight: 500;
  white-space: nowrap;
}

/* ---- MARQUEE ---- */
.marquee-strip {
  background: var(--gold);
  overflow: hidden;
  padding: 12px 0;
}
.marquee-track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy-deep);
}
.marquee-dot { color: var(--navy-deep); opacity: 0.5; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---- REVIEWS ---- */
.reviews-section {
  padding: 100px 0;
  background: var(--navy-deep);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 2.5rem;
}
.review-card {
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 28px;
  position: relative;
  transition: border-color var(--transition), transform var(--transition);
}
.review-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.review-card.review-featured { border-color: var(--gold); background: rgba(207,161,91,0.06); }
.review-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  color: var(--gold);
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.reviewer-name { font-weight: 600; font-size: 14px; color: var(--white); }
.review-platform {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--text-body);
}
.review-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 1px;
}
.review-text {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7;
  font-style: italic;
}
.featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold-dim);
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
}
.reviews-footer { text-align: center; }

/* ---- ABOUT ---- */
.about-section {
  padding: 100px 0;
  background: var(--charcoal);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-col { position: relative; }
.image-placeholder {
  background: var(--navy);
  border: 2px dashed var(--border);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  gap: 8px;
  text-align: center;
}
.image-placeholder.small { min-height: 220px; }
.placeholder-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 3px;
}
.placeholder-desc {
  font-size: 12px;
  color: var(--text-body);
}
.about-stat-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--navy-deep);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 20px 28px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.stat-row { display: flex; align-items: baseline; gap: 10px; padding: 8px 0; }
.stat-num {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}
.stat-label { font-size: 12px; color: var(--text-body); font-weight: 500; }
.stat-divider { height: 1px; background: var(--border); }
.about-text {
  color: var(--text-body);
  margin-bottom: 1.25rem;
  line-height: 1.75;
}
.about-values { margin: 2rem 0; display: flex; flex-direction: column; gap: 16px; }
.value-row { display: flex; gap: 14px; align-items: flex-start; }
.value-icon {
  width: 40px;
  height: 40px;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.value-text { display: flex; flex-direction: column; gap: 2px; }
.value-text strong { font-size: 15px; color: var(--white); font-weight: 600; }
.value-text span { font-size: 13px; color: var(--text-body); }

/* ---- SERVICES ---- */
.services-section {
  padding: 100px 0;
  background: var(--navy-deep);
}
.services-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}
.service-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
  text-decoration: none;
}
.service-row:last-child { border-bottom: none; }
.service-row:hover { background: var(--white-faint); }
.service-row:hover .service-arrow { transform: translateX(6px); }
.service-emergency { border-left: 3px solid var(--gold); }
.service-icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.service-info { flex: 1; }
.service-name {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 4px;
}
.service-desc { font-size: 13px; color: var(--text-body); }
.service-arrow {
  color: var(--gold);
  transition: transform var(--transition);
  flex-shrink: 0;
}

/* ---- WHY US ---- */
.why-section {
  padding: 100px 0;
  background: var(--charcoal);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--navy-deep);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}
.why-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.why-image { border-radius: 0; border: none; border-bottom: 1px solid var(--border); }
.why-card-content { padding: 24px; }
.why-icon { color: var(--gold); margin-bottom: 12px; }
.why-card-content h3 {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 8px;
}
.why-card-content p { font-size: 14px; color: var(--text-body); line-height: 1.65; }

/* ---- GALLERY ---- */
.gallery-section {
  padding: 100px 0;
  background: var(--navy-deep);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery-item {
  aspect-ratio: 1;
  min-height: unset;
  border-radius: 4px;
}

/* ---- PROCESS ---- */
.process-section {
  padding: 100px 0;
  background: var(--charcoal);
}
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 960px;
  margin: 0 auto;
}
.process-step {
  flex: 1;
  text-align: center;
  padding: 0 16px;
}
.step-number {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
  opacity: 0.7;
}
.step-content h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 8px;
}
.step-content p { font-size: 13px; color: var(--text-body); line-height: 1.6; }
.process-connector {
  flex-shrink: 0;
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin-top: 28px;
  opacity: 0.4;
}

/* ---- FAQ ---- */
.faq-section {
  padding: 100px 0;
  background: var(--navy-deep);
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  transition: background var(--transition), color var(--transition);
}
.faq-question:hover { background: var(--white-faint); color: var(--gold); }
.faq-question[aria-expanded="true"] { color: var(--gold); background: var(--gold-dim); }
.faq-question[aria-expanded="true"] .faq-arrow { transform: rotate(180deg); }
.faq-arrow { color: var(--gold); flex-shrink: 0; transition: transform var(--transition); }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-answer.open { max-height: 200px; padding-bottom: 4px; }
.faq-answer p {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
}

/* ---- AREA ---- */
.area-section {
  padding: 100px 0;
  background: var(--charcoal);
}
.area-content {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}
.area-map iframe {
  border-radius: 6px;
  border: 1px solid var(--border) !important;
  filter: grayscale(30%) brightness(0.85);
}
.area-list h3 {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 1rem;
}
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.area-tags li {
  background: var(--gold-dim);
  border: 1px solid var(--border);
  color: var(--white-dim);
  font-size: 13px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 2px;
}

/* ---- FINAL CTA ---- */
.cta-section {
  padding: 100px 0;
  background: var(--navy-deep);
  border-top: 1px solid var(--border);
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.cta-headline {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-sub {
  color: var(--text-body);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}
.cta-or {
  display: inline-block;
  margin: 12px 16px;
  color: var(--text-body);
  font-size: 13px;
}
.cta-trust {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 32px;
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: 6px;
}
.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--white-dim);
}
.cta-trust-item svg { color: var(--gold); flex-shrink: 0; }

/* ---- FOOTER ---- */
.footer {
  background: var(--navy-deep);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-brand .logo-text {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 1.35rem;
  display: block;
}
.footer-brand .logo-sub { display: block; margin-bottom: 12px; }
.footer-tagline {
  font-size: 14px;
  color: var(--text-body);
  max-width: 280px;
  margin-bottom: 16px;
  line-height: 1.65;
}
.footer-phone {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.5px;
}
.footer-links h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: var(--text-body);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-contact h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-body);
  margin-bottom: 10px;
}
.footer-contact p svg { color: var(--gold); flex-shrink: 0; }
.footer-contact a { color: var(--gold); }
.footer-bottom {
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 12px;
  color: var(--text-body);
  margin-bottom: 4px;
}

/* ---- SERVICE PAGE HERO ---- */
.service-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  margin-top: 0;
}
.service-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.service-hero-bg .image-placeholder {
  height: 100%;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--border);
}
.service-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,18,26,0.92) 0%, rgba(15,25,35,0.65) 100%);
}
.service-hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  max-width: 640px;
}
.service-hero-content h1 {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.service-hero-content p {
  color: var(--white-dim);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* ---- SERVICE CONTENT ---- */
.service-content {
  padding: 80px 0;
  background: var(--navy-deep);
}
.service-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  align-items: start;
}
.service-body h2 {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 1rem;
  margin-top: 2.5rem;
}
.service-body h2:first-child { margin-top: 0; }
.service-body p {
  color: var(--text-body);
  margin-bottom: 1rem;
  line-height: 1.75;
}
.service-body ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 1.5rem;
}
.service-body li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text-body);
}
.service-body li::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23CFA15B' stroke-width='2'%3E%3Cpolyline points='20,6 9,17 4,12'/%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
  margin-top: 2px;
}
.service-sidebar {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sidebar-cta-card {
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 24px;
  text-align: center;
}
.sidebar-cta-card h3 {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 8px;
}
.sidebar-cta-card p {
  font-size: 13px;
  color: var(--text-body);
  margin-bottom: 20px;
}
.sidebar-cta-card .btn-primary {
  width: 100%;
  justify-content: center;
  margin-bottom: 10px;
}
.sidebar-cta-card .form-phone { margin-top: 6px; }
.sidebar-trust {
  background: var(--gold-dim);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 20px;
}
.sidebar-trust .trust-chip {
  background: transparent;
  border: none;
  padding: 6px 0;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-form-card { max-width: 480px; }
  .about-inner { grid-template-columns: 1fr; gap: 60px; }
  .about-stat-card { position: static; margin-top: 16px; display: inline-flex; gap: 24px; }
  .stat-divider { width: 1px; height: auto; }
  .cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .area-content { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
}

@media (max-width: 768px) {
  .utility-bar { display: none; }
  .nav-inner {
    gap: 8px;
    padding: 0 12px;
  }
  .nav-cta {
    font-size: 12px;
    padding: 8px 12px;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .nav-links { 
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-deep);
    border-bottom: 1px solid var(--border);
    padding: 16px;
    flex-direction: column;
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    margin-left: auto;
    margin-right: 8px;
  }
  .nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 1px;
    transition: transform 0.2s, opacity 0.2s;
  }
  .nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .has-dropdown { width: 100%; }
  .dropdown { position: static; opacity: 1; pointer-events: all; transform: none; margin-top: 4px; }
  .navbar { position: relative; }

  .hero { min-height: 100svh; }
  .hero-headline { font-size: 2.2rem; }
  .reviews-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { flex-direction: column; gap: 32px; }
  .process-connector { display: none; }
  .trust-bar-inner { gap: 16px; justify-content: flex-start; overflow-x: auto; }
  .trust-item { padding: 8px 20px; }
  .trust-divider { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .section-title { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .hero-inner { padding-top: 40px; padding-bottom: 40px; }
  .hero-trust { gap: 8px; }
  .trust-chip { font-size: 12px; }
  .gallery-grid { grid-template-columns: 1fr; }
}
