/* ==========================================================================
   Jake & Jim's Quality Plumbing — Main Stylesheet
   Deep navy + gold/amber palette · Mobile-first · No frameworks
   ========================================================================== */

/* ---------- Custom Properties ---------- */
:root {
  --navy-900: #0b1e3a;
  --navy-800: #0f2a52;
  --navy-700: #12305e;
  --navy-600: #1a3f78;
  --navy-500: #24518f;
  --blue-400: #2e6fd8;
  --gold-500: #e8a91d;
  --gold-400: #f5b942;
  --gold-300: #f9cd6e;
  --gold-600: #c78d1b;
  --white: #ffffff;
  --off-white: #f6f8fb;
  --gray-100: #eef1f6;
  --gray-200: #dde3ec;
  --gray-400: #8b96a8;
  --gray-600: #55617a;
  --gray-800: #2b3446;
  --success: #1e9e5a;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 2px 8px rgba(11, 30, 58, 0.08);
  --shadow-md: 0 8px 28px rgba(11, 30, 58, 0.12);
  --shadow-lg: 0 18px 50px rgba(11, 30, 58, 0.20);
  --font-heading: "Manrope", "Segoe UI", Arial, sans-serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;
  --header-h: 76px;
  --container: 1180px;
  --transition: 0.28s cubic-bezier(0.25, 0.6, 0.35, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
}

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

a { color: var(--blue-400); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-600); }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--navy-900);
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 2.2vw, 1.45rem); }

p { margin-bottom: 1rem; }

ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

section { padding: clamp(56px, 8vw, 96px) 0; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 14px;
}
.section-tag::before {
  content: "";
  width: 28px; height: 3px;
  background: var(--gold-500);
  border-radius: 2px;
}

.section-head { max-width: 720px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .section-tag { justify-content: center; }
.section-head.center .section-tag::before { display: none; }
.section-head p { color: var(--gray-600); font-size: 1.06rem; margin-top: 12px; margin-bottom: 0; }

.bg-soft { background: var(--off-white); }
.bg-navy { background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-700) 100%); }
.bg-navy h2, .bg-navy h3 { color: var(--white); }
.bg-navy p { color: rgba(255, 255, 255, 0.82); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 30px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900);
  box-shadow: 0 6px 20px rgba(232, 169, 29, 0.35);
}
.btn-gold:hover { color: var(--navy-900); box-shadow: 0 10px 28px rgba(232, 169, 29, 0.45); }

.btn-navy {
  background: var(--navy-800);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-navy:hover { background: var(--navy-600); color: var(--white); }

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--gold-400); color: var(--gold-300); }

.btn-outline-dark {
  background: transparent;
  border-color: var(--navy-800);
  color: var(--navy-800);
}
.btn-outline-dark:hover { background: var(--navy-800); color: var(--white); }

.btn-lg { padding: 18px 38px; font-size: 1.08rem; }
.btn-sm { padding: 10px 22px; font-size: 0.9rem; }

/* ---------- Top Bar ---------- */
.topbar {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.84rem;
  padding: 7px 0;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar span i { color: var(--gold-400); margin-right: 6px; }
.topbar-items { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar a { color: rgba(255, 255, 255, 0.85); }
.topbar a:hover { color: var(--gold-300); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1002;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: var(--header-h);
}

.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 52px; width: auto; }

.main-nav ul { display: flex; gap: 6px; }
.main-nav a {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--navy-800);
  padding: 10px 16px;
  border-radius: 8px;
  position: relative;
  white-space: nowrap;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px; bottom: 4px;
  height: 2.5px;
  background: var(--gold-500);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.main-nav a:hover { color: var(--navy-900); }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
.main-nav a.active { color: var(--navy-900); }

.header-cta { display: flex; align-items: center; gap: 14px; }
.header-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
}
.header-phone i {
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(46, 111, 216, 0.1);
  color: var(--blue-400);
  font-size: 1.05rem;
}
.header-phone .label { font-size: 0.72rem; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.08em; display: block; line-height: 1.2; }
.header-phone .number { font-weight: 800; color: var(--navy-900); font-size: 1.05rem; line-height: 1.2; }
.header-phone:hover .number { color: var(--blue-400); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px; height: 44px;
  border-radius: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2.5px;
  background: var(--navy-900);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: var(--white);
  padding: clamp(80px, 11vw, 150px) 0;
  background: linear-gradient(115deg, rgba(9, 24, 47, 0.93) 0%, rgba(15, 42, 82, 0.82) 55%, rgba(15, 42, 82, 0.55) 100%), url("../images/gallery_2.webp") center 35% / cover no-repeat;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/pipes-pattern.svg") repeat;
  opacity: 0.6;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 680px; }
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 .accent { color: var(--gold-400); }
.hero .lead {
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 32px;
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(245, 185, 66, 0.14);
  border: 1px solid rgba(245, 185, 66, 0.45);
  color: var(--gold-300);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}

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

.hero-trust {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}
.hero-trust .stars { color: var(--gold-400); font-size: 0.95rem; letter-spacing: 2px; }
.hero-trust .trust-item { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; color: rgba(255,255,255,0.85); }
.hero-trust .trust-item i { color: var(--gold-400); }
.hero-trust strong { color: var(--white); }

/* Hero page variant (inner pages) */
.page-hero {
  position: relative;
  color: var(--white);
  padding: clamp(64px, 8vw, 104px) 0;
  background: linear-gradient(115deg, rgba(9, 24, 47, 0.94) 0%, rgba(15, 42, 82, 0.85) 60%, rgba(26, 63, 120, 0.7) 100%), url("../images/gallery_6.webp") center 40% / cover no-repeat;
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255, 255, 255, 0.85); max-width: 640px; font-size: 1.08rem; margin-bottom: 0; }
.breadcrumbs { font-size: 0.85rem; margin-bottom: 18px; color: rgba(255,255,255,0.66); }
.breadcrumbs a { color: rgba(255,255,255,0.85); }
.breadcrumbs a:hover { color: var(--gold-300); }
.breadcrumbs i { font-size: 0.65rem; margin: 0 8px; }

/* ---------- Stats Strip ---------- */
.stats-strip {
  background: var(--white);
  position: relative;
  z-index: 5;
  margin-top: -46px;
  padding: 0;
}
.stats-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}
.stat {
  padding: 30px 22px;
  text-align: center;
  border-right: 1px solid var(--gray-100);
}
.stat:last-child { border-right: none; }
.stat .num {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  color: var(--navy-800);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}
.stat .num .suffix { color: var(--gold-500); font-size: 0.7em; }
.stat .label { font-size: 0.88rem; color: var(--gray-600); margin-top: 4px; }

/* ---------- Service Cards ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 34px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-400), var(--gold-600));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gray-200); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 62px; height: 62px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-400), var(--navy-700));
  margin-bottom: 22px;
  box-shadow: 0 6px 18px rgba(46, 111, 216, 0.3);
}
.service-card h3 { margin-bottom: 12px; }
.service-card p { color: var(--gray-600); font-size: 0.97rem; flex-grow: 1; }
.card-link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.94rem;
  color: var(--navy-800);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.card-link i { transition: transform var(--transition); color: var(--gold-500); }
.card-link:hover { color: var(--gold-600); }
.card-link:hover i { transform: translateX(5px); }

/* ---------- Why Us / Features ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
}
.split-media { position: relative; }
.split-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3.2;
}
.floating-card {
  position: absolute;
  bottom: -26px;
  right: -14px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 270px;
}
.floating-card .fc-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--navy-900);
  font-size: 1.2rem;
}
.floating-card strong { font-family: var(--font-heading); color: var(--navy-900); display: block; font-size: 1rem; line-height: 1.3; }
.floating-card span { font-size: 0.82rem; color: var(--gray-600); }

.feature-list { display: grid; gap: 20px; margin-top: 28px; }
.feature-item { display: flex; gap: 16px; align-items: flex-start; }
.feature-item i {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(232, 169, 29, 0.13);
  color: var(--gold-600);
  font-size: 1.15rem;
}
.feature-item h3 { font-size: 1.08rem; margin-bottom: 4px; }
.feature-item p { color: var(--gray-600); font-size: 0.95rem; margin: 0; }

/* ---------- Badges Row ---------- */
.badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy-800);
  box-shadow: var(--shadow-sm);
}
.badge-pill i { color: var(--gold-600); }
.bg-navy .badge-pill { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.18); color: rgba(255,255,255,0.92); }
.bg-navy .badge-pill i { color: var(--gold-400); }

/* ---------- Reviews ---------- */
.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.rating-summary .big-score {
  font-family: var(--font-heading);
  font-size: 3.4rem;
  font-weight: 800;
  color: var(--navy-900);
  line-height: 1;
}
.rating-summary .stars { color: var(--gold-500); font-size: 1.25rem; letter-spacing: 3px; }
.rating-summary .meta { color: var(--gray-600); font-size: 0.95rem; }
.rating-summary .google-mark { display: flex; align-items: center; gap: 8px; font-weight: 700; color: var(--navy-800); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.review-card .stars { color: var(--gold-500); font-size: 0.92rem; letter-spacing: 2px; margin-bottom: 14px; }
.review-card blockquote {
  font-size: 0.98rem;
  color: var(--gray-800);
  flex-grow: 1;
  margin-bottom: 20px;
  position: relative;
}
.review-card blockquote::before {
  content: "\201C";
  font-family: Georgia, serif;
  font-size: 3rem;
  color: var(--gold-300);
  line-height: 0;
  display: block;
  margin: 18px 0 4px;
}
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-400), var(--navy-700));
  font-size: 1rem;
  flex-shrink: 0;
}
.reviewer .name { font-family: var(--font-heading); font-weight: 700; color: var(--navy-900); font-size: 0.95rem; line-height: 1.3; }
.reviewer .source { font-size: 0.8rem; color: var(--gray-400); }
.reviewer .source i { color: #4285f4; margin-right: 4px; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-sm);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 40px 18px 14px;
  background: linear-gradient(to top, rgba(11, 30, 58, 0.85), transparent);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition);
}
.gallery-item:hover .cap { opacity: 1; transform: translateY(0); }

/* ---------- CTA Banner ---------- */
.cta-banner {
  position: relative;
  background: linear-gradient(120deg, var(--navy-900) 0%, var(--navy-700) 70%, var(--navy-600) 100%);
  border-radius: var(--radius);
  padding: clamp(44px, 6vw, 72px) clamp(28px, 5vw, 64px);
  color: var(--white);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/pipes-pattern.svg") repeat;
  opacity: 0.7;
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: 10px; }
.cta-banner p { color: rgba(255,255,255,0.82); margin: 0; max-width: 520px; }
.cta-banner .actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Emergency band */
.emergency-band {
  background: linear-gradient(90deg, var(--gold-500), var(--gold-400));
  padding: 18px 0;
}
.emergency-band .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  text-align: center;
}
.emergency-band i { font-size: 1.3rem; color: var(--navy-900); }
.emergency-band p { margin: 0; font-family: var(--font-heading); font-weight: 700; color: var(--navy-900); font-size: 1.05rem; }
.emergency-band a { color: var(--navy-900); text-decoration: underline; text-underline-offset: 3px; }
.emergency-band a:hover { color: var(--navy-600); }

/* ---------- Process Steps ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  counter-reset: step;
}
.step-card { text-align: center; padding: 10px; }
.step-card .step-num {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--navy-900);
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  box-shadow: 0 6px 18px rgba(232, 169, 29, 0.35);
}
.step-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step-card p { color: var(--gray-600); font-size: 0.93rem; margin: 0; }
.bg-navy .step-card p { color: rgba(255,255,255,0.75); }
.bg-navy .step-card h3 { color: var(--white); }

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 30px 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.team-avatar {
  width: 84px; height: 84px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-400), var(--navy-700));
}
.team-card h3 { font-size: 1.12rem; margin-bottom: 4px; }
.team-card .role { color: var(--gold-600); font-weight: 600; font-size: 0.85rem; margin-bottom: 10px; }
.team-card p { color: var(--gray-600); font-size: 0.88rem; margin: 0; }

/* ---------- Values ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.value-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: background var(--transition), transform var(--transition);
}
.value-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.value-card i { font-size: 1.7rem; color: var(--gold-400); margin-bottom: 16px; display: block; }
.value-card h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 10px; }
.value-card p { color: rgba(255,255,255,0.78); font-size: 0.95rem; margin: 0; }

/* ---------- Service Detail Sections ---------- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  padding: clamp(40px, 5vw, 64px) 0;
  border-bottom: 1px solid var(--gray-100);
}
.service-detail:last-of-type { border-bottom: none; }
.service-detail.reverse .sd-media { order: 2; }
.sd-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.sd-media.icon-panel {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.sd-media.icon-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/pipes-pattern.svg") repeat;
}
.sd-media.icon-panel i {
  font-size: 5rem;
  color: var(--gold-400);
  position: relative;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.3));
}
.sd-body .service-icon { margin-bottom: 18px; }
.sd-body h2 { margin-bottom: 14px; font-size: clamp(1.5rem, 2.6vw, 2rem); }
.sd-body p { color: var(--gray-600); }
.check-list { display: grid; gap: 10px; margin: 18px 0 24px; }
.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--gray-800);
  font-size: 0.97rem;
}
.check-list li i { color: var(--success); margin-top: 4px; flex-shrink: 0; }

/* ---------- Contact ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(32px, 5vw, 60px);
  align-items: start;
}
.contact-info-card {
  background: linear-gradient(160deg, var(--navy-900), var(--navy-700));
  border-radius: var(--radius);
  padding: clamp(30px, 4vw, 44px);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.contact-info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/pipes-pattern.svg") repeat;
}
.contact-info-card > * { position: relative; }
.contact-info-card h2 { color: var(--white); font-size: 1.6rem; margin-bottom: 8px; }
.contact-info-card > p { color: rgba(255,255,255,0.8); margin-bottom: 28px; }
.info-item { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
.info-item i {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(245, 185, 66, 0.16);
  color: var(--gold-400);
  font-size: 1.1rem;
}
.info-item .label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.6); display: block; }
.info-item .value { font-family: var(--font-heading); font-weight: 700; font-size: 1.05rem; color: var(--white); }
.info-item a.value:hover { color: var(--gold-300); }
.info-item .sub { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.7); }

/* Form */
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: clamp(30px, 4vw, 44px);
}
.contact-form-card h2 { font-size: 1.6rem; margin-bottom: 6px; }
.contact-form-card > p { color: var(--gray-600); margin-bottom: 26px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-family: var(--font-heading); font-weight: 600; font-size: 0.9rem; color: var(--navy-900); }
.form-group label .req { color: #d64545; }
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--gray-800);
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--off-white);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue-400);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(46, 111, 216, 0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.83rem; color: var(--gray-400); margin-top: 14px; }
.form-note i { color: var(--success); margin-right: 5px; }

/* Map */
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  line-height: 0;
  margin-top: clamp(40px, 6vw, 64px);
}
.map-wrap iframe { width: 100%; height: 420px; border: 0; }

/* Hours table */
.hours-table { width: 100%; border-collapse: collapse; margin-top: 6px; }
.hours-table td { padding: 9px 0; font-size: 0.95rem; border-bottom: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.85); }
.hours-table td:last-child { text-align: right; font-weight: 600; color: var(--white); }
.hours-table tr:last-child td { border-bottom: none; }
.hours-table .highlight td { color: var(--gold-300); font-weight: 700; }

/* ---------- Promo strip ---------- */
.promo-strip {
  margin-top: 26px;
  background: rgba(245, 185, 66, 0.12);
  border: 1px dashed rgba(245, 185, 66, 0.5);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  display: flex;
  gap: 14px;
  align-items: center;
}
.promo-strip i { color: var(--gold-400); font-size: 1.4rem; }
.promo-strip p { margin: 0; font-size: 0.92rem; color: rgba(255,255,255,0.9); }
.promo-strip strong { color: var(--gold-300); }

/* Light variant */
.promo-strip.light { background: rgba(232, 169, 29, 0.08); border-color: rgba(232, 169, 29, 0.4); }
.promo-strip.light p { color: var(--gray-800); }
.promo-strip.light strong { color: var(--gold-600); }
.promo-strip.light i { color: var(--gold-600); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin-inline: auto; display: grid; gap: 14px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--navy-900);
  padding: 20px 24px;
}
.faq-q i { color: var(--gold-600); transition: transform var(--transition); flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a-inner { padding: 0 24px 20px; color: var(--gray-600); font-size: 0.97rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.75);
  padding-top: clamp(52px, 7vw, 80px);
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: clamp(28px, 4vw, 48px);
  padding-bottom: 44px;
}
.footer-brand img { height: 46px; margin-bottom: 18px; }
.footer-brand p { font-size: 0.93rem; color: rgba(255,255,255,0.65); max-width: 300px; }
.footer-brand .stars { color: var(--gold-400); letter-spacing: 2px; font-size: 0.9rem; }
.footer-brand .rating-line { font-size: 0.88rem; margin-top: 6px; color: rgba(255,255,255,0.8); }

.site-footer h4 {
  color: var(--white);
  font-size: 1.02rem;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}
.site-footer h4::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 30px; height: 3px;
  border-radius: 2px;
  background: var(--gold-500);
}
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.72); font-size: 0.94rem; display: inline-flex; align-items: center; gap: 8px; }
.footer-links a i { font-size: 0.6rem; color: var(--gold-500); }
.footer-links a:hover { color: var(--gold-300); }

.footer-contact li { display: flex; gap: 12px; margin-bottom: 14px; font-size: 0.93rem; align-items: flex-start; }
.footer-contact i { color: var(--gold-400); margin-top: 4px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,0.85); }
.footer-contact a:hover { color: var(--gold-300); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.55);
}
.footer-bottom .badges { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-bottom .badges span { display: inline-flex; align-items: center; gap: 7px; }
.footer-bottom .badges i { color: var(--gold-500); }

/* ---------- Floating call button (mobile) ---------- */
.float-call {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 999;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: none;
  place-items: center;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900);
  font-size: 1.35rem;
  box-shadow: 0 10px 26px rgba(232, 169, 29, 0.5);
  animation: pulse-ring 2.4s infinite;
}
@keyframes pulse-ring {
  0% { box-shadow: 0 10px 26px rgba(232,169,29,0.5), 0 0 0 0 rgba(232,169,29,0.45); }
  70% { box-shadow: 0 10px 26px rgba(232,169,29,0.5), 0 0 0 16px rgba(232,169,29,0); }
  100% { box-shadow: 0 10px 26px rgba(232,169,29,0.5), 0 0 0 0 rgba(232,169,29,0); }
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; }
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  top: -60px;
  left: 12px;
  z-index: 2000;
  background: var(--navy-900);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 0 0 8px 8px;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 0; color: var(--white); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .services-grid, .reviews-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .header-phone .label { display: none; }
}

@media (max-width: 860px) {
  .split, .service-detail, .contact-layout { grid-template-columns: 1fr; }
  .service-detail.reverse .sd-media { order: 0; }
  .floating-card { right: 10px; bottom: -20px; }
  .stats-card { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--gray-100); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  /* Mobile nav */
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(320px, 84vw);
    background: var(--white);
    box-shadow: -12px 0 40px rgba(11,30,58,0.18);
    padding: 96px 28px 28px;
    transform: translateX(105%);
    transition: transform 0.35s cubic-bezier(0.25, 0.6, 0.35, 1);
    z-index: 1001;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; gap: 4px; }
  .main-nav a { font-size: 1.1rem; padding: 14px 12px; border-bottom: 1px solid var(--gray-100); border-radius: 0; }
  .main-nav a::after { display: none; }
  .main-nav a.active { color: var(--gold-600); }
  .nav-toggle { position: relative; z-index: 1002; }
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(11, 30, 58, 0.5);
    backdrop-filter: blur(3px);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .nav-overlay.show { opacity: 1; pointer-events: auto; }
  .header-cta .btn { display: none; }
  .float-call { display: grid; }
  .topbar-items span.hide-mobile { display: none; }
}

@media (max-width: 560px) {
  .contact-info-card, .contact-form-card { overflow-wrap: anywhere; }
  .services-grid, .reviews-grid, .values-grid, .team-grid, .steps-grid, .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .cta-banner { text-align: center; justify-content: center; }
  .cta-banner .actions { justify-content: center; width: 100%; }
  .cta-banner .actions .btn { width: 100%; }
  .header-phone .number { font-size: 0.95rem; }
  .brand img { height: 42px; }
  .topbar { font-size: 0.78rem; }
  .stats-card { grid-template-columns: 1fr 1fr; }
  .rating-summary { flex-direction: column; gap: 8px; }
}
