/* ==========================================================================
   5Star Plumbing Advanced — Main Stylesheet
   Oregon, IL | 313 W Washington St, Oregon, IL 61061
   ========================================================================== */

:root {
  --navy-900: #071322;
  --navy-800: #0b1f33;
  --navy-700: #10304f;
  --navy-600: #163f66;
  --gold-300: #f0dd9e;
  --gold-400: #e6c869;
  --gold-500: #d4af37;
  --gold-600: #b8912a;
  --gold-700: #96741f;
  --cream-50: #fbf9f4;
  --cream-100: #f6f2e8;
  --white: #ffffff;
  --ink: #16232f;
  --ink-soft: #43566a;
  --ink-faint: #7688996b;
  --gray-200: #e7ebef;
  --gray-300: #d3dbe2;
  --success: #1e8e5a;
  --danger: #c23b3b;

  --shadow-sm: 0 2px 8px rgba(7, 19, 34, 0.08);
  --shadow-md: 0 10px 30px rgba(7, 19, 34, 0.12);
  --shadow-lg: 0 24px 60px rgba(7, 19, 34, 0.22);
  --shadow-gold: 0 12px 28px rgba(212, 175, 55, 0.35);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;

  --container: 1200px;
  --header-h: 88px;

  --font-head: 'Poppins', 'Segoe UI', Arial, sans-serif;
  --font-body: 'Inter', 'Segoe UI', Arial, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream-50);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--navy-800);
  line-height: 1.2;
  margin: 0 0 16px;
  font-weight: 700;
}
p { margin: 0 0 16px; color: var(--ink-soft); }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; }
::selection { background: var(--gold-400); color: var(--navy-900); }

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

.section { padding: 96px 0; position: relative; }
.section--tight { padding: 64px 0; }
.section--navy { background: var(--navy-800); color: var(--cream-100); }
.section--navy h2, .section--navy h3 { color: var(--white); }
.section--navy p { color: #c7d2dd; }
.section--cream { background: var(--cream-100); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold-500);
  display: inline-block;
}
.section--navy .eyebrow { color: var(--gold-400); }

.section-head { max-width: 720px; margin: 0 0 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4vw, 42px); }
.gradient-text {
  background: linear-gradient(100deg, var(--gold-600), var(--gold-400) 45%, var(--gold-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  border: 2px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(120deg, var(--gold-400), var(--gold-600));
  color: var(--navy-900);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 18px 34px rgba(212,175,55,0.45); }
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.55);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); transform: translateY(-3px); }
.btn-navy {
  background: var(--navy-800);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-700); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 16px; }

/* ---------- Header ---------- */
.top-bar {
  background: var(--navy-900);
  color: #cfd9e2;
  font-size: 13px;
}
.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 9px;
  padding-bottom: 9px;
  gap: 16px;
  flex-wrap: wrap;
}
.top-bar a { color: #cfd9e2; transition: color .2s; }
.top-bar a:hover { color: var(--gold-400); }
.top-bar__left { display: flex; gap: 22px; flex-wrap: wrap; align-items: center; }
.top-bar__left span, .top-bar__left a { display: inline-flex; align-items: center; gap: 7px; }
.top-bar__right { display: flex; gap: 16px; align-items: center; }
.top-bar__badge {
  background: rgba(212,175,55,0.16);
  color: var(--gold-400);
  padding: 4px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .4px;
}

header.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(11,31,51,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: padding .25s ease, background .25s ease;
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark { width: 52px; height: 52px; flex-shrink: 0; }
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name { font-family: var(--font-head); font-weight: 700; font-size: 19px; color: var(--white); letter-spacing: .2px; }
.brand__name b { color: var(--gold-400); }
.brand__tag { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-400); font-weight: 600; margin-top: 2px; }

nav.main-nav { display: flex; }
.nav-list { display: flex; align-items: center; gap: 6px; }
.nav-list > li { position: relative; }
.nav-list > li > a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  color: #e7ecf1;
  font-weight: 500;
  font-size: 15px;
  border-radius: 8px;
  transition: color .2s, background .2s;
}
.nav-list > li > a:hover,
.nav-list > li.active > a { color: var(--gold-400); background: rgba(255,255,255,0.06); }
.nav-list .caret { font-size: 10px; transition: transform .2s; }
.nav-list li:hover .caret { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 300px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.nav-list li:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  color: var(--navy-800);
  font-size: 14.5px;
  font-weight: 500;
  transition: background .2s, color .2s, padding-left .2s;
}
.dropdown a i { color: var(--gold-600); width: 18px; text-align: center; }
.dropdown a:hover { background: var(--cream-100); color: var(--gold-700); padding-left: 18px; }
.dropdown-divider { height: 1px; background: var(--gray-200); margin: 6px 4px; }

.header-cta { display: flex; align-items: center; gap: 14px; }
.header-cta .btn { padding: 13px 24px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  padding: 8px;
}
.hamburger span { width: 26px; height: 2px; background: var(--white); border-radius: 2px; transition: transform .25s, opacity .25s; }
.hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background: var(--navy-900);
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  filter: saturate(1.05);
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(7,19,34,0.94) 10%, rgba(7,19,34,0.72) 48%, rgba(7,19,34,0.4) 100%),
    linear-gradient(0deg, rgba(7,19,34,0.9), rgba(7,19,34,0.2));
}
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  pointer-events: none;
}
.hero__blob--1 { width: 420px; height: 420px; background: var(--gold-500); top: -120px; right: -100px; }
.hero__blob--2 { width: 320px; height: 320px; background: var(--navy-600); bottom: -140px; right: 20%; }
.hero__content { position: relative; z-index: 2; max-width: 760px; padding: 120px 0 90px; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 7px 14px; border-radius: 999px;
  font-size: 12.5px; font-weight: 600; letter-spacing: .3px;
  backdrop-filter: blur(4px);
}
.hero-badge i { color: var(--gold-400); }
.hero h1 { font-size: clamp(34px, 5.2vw, 58px); color: var(--white); margin-bottom: 20px; }
.hero h1 span { color: var(--gold-400); }
.hero p.lead { font-size: 18px; color: #d7e0e9; max-width: 600px; margin-bottom: 34px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 34px; margin-top: 52px; }
.hero-stat b { display: block; font-family: var(--font-head); font-size: 28px; color: var(--gold-400); }
.hero-stat span { font-size: 13px; color: #b9c5d1; text-transform: uppercase; letter-spacing: 1px; }

.page-hero {
  position: relative;
  min-height: 46vh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  background: var(--navy-900);
  overflow: hidden;
}
.page-hero__content { position: relative; z-index: 2; padding: 70px 0 44px; }
.breadcrumbs { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: #c7d2dd; margin-bottom: 14px; flex-wrap: wrap; }
.breadcrumbs a:hover { color: var(--gold-400); }
.breadcrumbs .sep { opacity: .5; }
.page-hero h1 { color: var(--white); font-size: clamp(30px, 4.4vw, 46px); margin-bottom: 8px; }
.page-hero p { color: #cfd9e2; max-width: 640px; margin: 0; }

/* ---------- Marquee / trust strip ---------- */
.trust-strip { background: var(--white); border-bottom: 1px solid var(--gray-200); padding: 22px 0; }
.trust-strip .container { display: flex; flex-wrap: wrap; gap: 28px; align-items: center; justify-content: space-between; }
.trust-item { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--navy-800); font-size: 14.5px; }
.trust-item i { color: var(--gold-600); font-size: 20px; }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 30px; }
.grid-5 { grid-template-columns: repeat(5, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 34px 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.service-card::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold-400), var(--gold-600));
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::after { transform: scaleX(1); }
.service-card__icon {
  width: 62px; height: 62px; border-radius: 16px;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-400); font-size: 26px; margin-bottom: 20px;
  transition: transform .3s ease;
}
.service-card:hover .service-card__icon { transform: rotate(-8deg) scale(1.05); }
.service-card h3 { font-size: 19px; margin-bottom: 10px; }
.service-card p { font-size: 14.5px; margin-bottom: 18px; }
.service-card__link { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 13.5px; color: var(--gold-700); text-transform: uppercase; letter-spacing: .5px; }
.service-card__link i { transition: transform .2s; }
.service-card:hover .service-card__link i { transform: translateX(5px); }
.service-card__num { position: absolute; top: 18px; right: 22px; font-family: var(--font-head); font-size: 34px; font-weight: 700; color: var(--gray-200); }

.feature-card { text-align: center; padding: 30px 20px; }
.feature-card .service-card__icon { margin: 0 auto 18px; }

.icon-badge {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(212,175,55,0.14); color: var(--gold-600);
  display: flex; align-items: center; justify-content: center; font-size: 19px; flex-shrink: 0;
}

/* ---------- About / split sections ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; height: 460px; object-fit: cover; }
.split-media .float-card {
  position: absolute; bottom: -28px; left: -28px;
  background: var(--white); border-radius: var(--radius-md);
  padding: 20px 26px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 14px;
}
.split-media .float-card b { display: block; font-family: var(--font-head); font-size: 26px; color: var(--navy-800); }
.split-media .float-card span { font-size: 12.5px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .5px; }
.split-media .ring-deco {
  position: absolute; top: -30px; right: -30px; width: 130px; height: 130px;
  border: 10px solid var(--gold-400); border-radius: 50%; opacity: .5; z-index: -1;
}

.check-list li { display: flex; gap: 12px; margin-bottom: 14px; font-size: 15.5px; color: var(--ink); align-items: flex-start; }
.check-list i { color: var(--gold-600); margin-top: 4px; }

/* ---------- Process steps ---------- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; position: relative; }
.process-step { text-align: center; position: relative; }
.process-step__num {
  width: 68px; height: 68px; border-radius: 50%; margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--navy-900); font-family: var(--font-head); font-weight: 700; font-size: 24px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-gold);
}
.process-step h3 { font-size: 17px; color: var(--white); }
.process-step p { color: #c7d2dd; font-size: 14px; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.gallery-item {
  position: relative; overflow: hidden; border-radius: var(--radius-md);
  cursor: pointer; box-shadow: var(--shadow-sm);
}
.gallery-item img { width: 100%; height: 320px; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(7,19,34,0.88), rgba(7,19,34,0.05) 60%);
  display: flex; align-items: flex-end; padding: 22px;
  opacity: 0; transition: opacity .3s ease;
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__overlay span { color: var(--white); font-weight: 600; font-size: 14.5px; }
.gallery-item__zoom {
  position: absolute; top: 16px; right: 16px; width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.9); color: var(--navy-800);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(-8px); transition: all .3s ease;
}
.gallery-item:hover .gallery-item__zoom { opacity: 1; transform: translateY(0); }

.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(7,19,34,0.94);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s;
  padding: 40px;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90vw; max-height: 82vh; border-radius: 12px; box-shadow: var(--shadow-lg); }
.lightbox__caption { color: #d7e0e9; text-align: center; margin-top: 16px; font-size: 14.5px; }
.lightbox__close, .lightbox__nav {
  position: absolute; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.25);
  color: var(--white); width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
  transition: background .2s;
}
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255,255,255,0.22); }
.lightbox__close { top: 26px; right: 26px; }
.lightbox__nav--prev { left: 26px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 26px; top: 50%; transform: translateY(-50%); }

/* ---------- Service detail page ---------- */
.service-hero {
  position: relative; min-height: 50vh; display: flex; align-items: flex-end; color: var(--white); overflow: hidden;
}
.service-detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 56px; align-items: start; }
.detail-block { margin-bottom: 40px; }
.detail-block h2 { font-size: 26px; }
.detail-block h3 { font-size: 19px; margin-top: 26px; }
.included-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 22px 0; }
.included-item {
  display: flex; gap: 12px; align-items: flex-start; background: var(--white);
  border: 1px solid var(--gray-200); border-radius: 12px; padding: 16px;
}
.included-item i { color: var(--gold-600); margin-top: 3px; }
.included-item strong { display: block; color: var(--navy-800); font-size: 14.5px; margin-bottom: 2px; }
.included-item span { font-size: 13.5px; color: var(--ink-soft); }

.sidebar-card {
  background: var(--navy-800); color: var(--white); border-radius: var(--radius-lg);
  padding: 34px; margin-bottom: 24px; position: sticky; top: 120px;
}
.sidebar-card h3 { color: var(--white); font-size: 19px; }
.sidebar-card p { color: #c7d2dd; font-size: 14.5px; }
.sidebar-card .btn { width: 100%; margin-top: 14px; }
.sidebar-list { margin-top: 26px; border-top: 1px solid rgba(255,255,255,0.14); padding-top: 20px; }
.sidebar-list li a {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 10px 0; font-size: 14px; color: #d7e0e9; border-bottom: 1px dashed rgba(255,255,255,0.12);
  transition: color .2s, padding-left .2s;
}
.sidebar-list li:last-child a { border-bottom: none; }
.sidebar-list li a:hover { color: var(--gold-400); padding-left: 6px; }

.cta-banner {
  background:
    linear-gradient(100deg, rgba(7,19,34,0.95), rgba(11,31,51,0.86)),
    radial-gradient(circle at 80% 20%, rgba(212,175,55,0.35), transparent 55%);
  border-radius: var(--radius-lg);
  padding: 60px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
  color: var(--white);
}
.cta-banner h2 { color: var(--white); margin-bottom: 8px; }
.cta-banner p { color: #c7d2dd; margin: 0; }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: var(--white); border: 1px solid var(--gray-200); border-radius: 14px; overflow: hidden; }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; background: transparent; border: none; text-align: left;
  font-family: var(--font-head); font-weight: 600; font-size: 16px; color: var(--navy-800);
}
.faq-question i { color: var(--gold-600); transition: transform .25s ease; flex-shrink: 0; }
.faq-item.is-open .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-answer__inner { padding: 0 24px 22px; color: var(--ink-soft); font-size: 14.5px; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 13.5px; font-weight: 600; color: var(--navy-800); }
.form-group input, .form-group select, .form-group textarea {
  padding: 14px 16px; border-radius: 10px; border: 1.5px solid var(--gray-300);
  font-size: 14.5px; background: var(--white); color: var(--ink); transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--gold-500); box-shadow: 0 0 0 4px rgba(212,175,55,0.15);
}
.form-error { color: var(--danger); font-size: 12.5px; min-height: 16px; }
.form-card { background: var(--white); border-radius: var(--radius-lg); padding: 44px; box-shadow: var(--shadow-md); border: 1px solid var(--gray-200); }
.form-success {
  display: none; align-items: center; gap: 14px; background: rgba(30,142,90,0.1);
  border: 1px solid rgba(30,142,90,0.35); color: var(--success); padding: 18px 20px; border-radius: 12px; margin-top: 18px; font-weight: 600; font-size: 14.5px;
}
.form-success.is-visible { display: flex; }

/* ---------- Info / contact cards ---------- */
.info-card {
  display: flex; gap: 16px; align-items: flex-start; background: var(--white);
  border: 1px solid var(--gray-200); border-radius: 14px; padding: 22px; margin-bottom: 16px;
}
.info-card h4 { margin: 0 0 4px; font-size: 15.5px; }
.info-card p { margin: 0; font-size: 14px; }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--gray-200); }
.map-embed iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ---------- Service area ---------- */
.area-tags { display: flex; flex-wrap: wrap; gap: 12px; }
.area-tags span {
  background: rgba(212,175,55,0.12); color: var(--gold-700); border: 1px solid rgba(212,175,55,0.35);
  padding: 9px 18px; border-radius: 999px; font-size: 13.5px; font-weight: 600;
}
.section--navy .area-tags span { background: rgba(255,255,255,0.08); color: var(--gold-400); border-color: rgba(255,255,255,0.16); }

/* ---------- Footer ---------- */
footer.site-footer { background: var(--navy-900); color: #b9c5d1; padding-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 46px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand .brand__name { color: var(--white); }
.footer-brand p { color: #93a3b3; font-size: 14px; margin: 18px 0 22px; max-width: 320px; }
.social-row { display: flex; gap: 10px; }
.social-row a {
  width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center; transition: background .2s, transform .2s;
  border: 1px solid rgba(255,255,255,0.1);
}
.social-row a:hover { background: var(--gold-500); color: var(--navy-900); transform: translateY(-3px); }
.footer-col h4 { color: var(--white); font-size: 15px; margin-bottom: 20px; letter-spacing: .3px; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { font-size: 14px; color: #b9c5d1; transition: color .2s, padding-left .2s; display: inline-block; }
.footer-col ul li a:hover { color: var(--gold-400); padding-left: 4px; }
.footer-contact li { display: flex; gap: 10px; font-size: 14px; margin-bottom: 16px; align-items: flex-start; }
.footer-contact i { color: var(--gold-400); margin-top: 3px; width: 16px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 26px 0; font-size: 13px; color: #7f8fa0; flex-wrap: wrap; gap: 12px; }
.footer-bottom a { color: #a7b4c1; }
.footer-bottom a:hover { color: var(--gold-400); }

/* ---------- Floating buttons ---------- */
.fab-stack { position: fixed; right: 24px; bottom: 24px; z-index: 400; display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.fab {
  width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--navy-900); font-size: 22px; box-shadow: var(--shadow-lg); border: none;
  transition: transform .25s ease;
}
.fab-call { background: linear-gradient(135deg, var(--gold-400), var(--gold-600)); animation: pulse-ring 2.4s infinite; }
.fab-top { width: 44px; height: 44px; background: var(--navy-800); color: var(--white); font-size: 16px; opacity: 0; pointer-events: none; transform: translateY(10px); }
.fab-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.fab:hover { transform: scale(1.08); }
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(212,175,55,0.55), var(--shadow-lg); }
  70% { box-shadow: 0 0 0 16px rgba(212,175,55,0), var(--shadow-lg); }
  100% { box-shadow: 0 0 0 0 rgba(212,175,55,0), var(--shadow-lg); }
}

.mobile-call-bar { display: none; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ---------- Badges / misc ---------- */
.tag-pill {
  display: inline-block; background: rgba(212,175,55,0.14); color: var(--gold-700);
  padding: 6px 14px; border-radius: 999px; font-size: 12.5px; font-weight: 700; letter-spacing: .4px; margin-bottom: 14px;
}
.divider-deco { width: 70px; height: 4px; border-radius: 4px; background: linear-gradient(90deg, var(--gold-400), var(--gold-600)); margin: 0 0 20px; }
.center .divider-deco { margin-left: auto; margin-right: auto; }

/* ---------- 404 ---------- */
.error-page { text-align: center; padding: 140px 0; }
.error-page .code { font-family: var(--font-head); font-size: 120px; font-weight: 700; color: var(--gold-400); line-height: 1; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); row-gap: 46px; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; row-gap: 40px; }
}

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split-media img { height: 340px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: 1fr; }
}

@media (max-width: 840px) {
  .top-bar__left span:nth-child(3) { display: none; }
  nav.main-nav { position: fixed; top: 0; right: 0; bottom: 0; width: min(340px, 84vw);
    background: var(--navy-900); padding: 100px 28px 40px; transform: translateX(100%);
    transition: transform .3s ease; box-shadow: -20px 0 50px rgba(0,0,0,0.35); overflow-y: auto; }
  nav.main-nav.is-open { transform: translateX(0); }
  .nav-list { flex-direction: column; align-items: stretch; gap: 4px; }
  .nav-list > li > a { padding: 14px 10px; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
    background: rgba(255,255,255,0.04); display: none; margin-top: 4px; }
  .nav-list li.is-open .dropdown { display: block; }
  .nav-list .caret { margin-left: auto; }
  .header-cta .btn-outline { display: none; }
  .hamburger { display: flex; }
  .nav-scrim { position: fixed; inset: 0; background: rgba(7,19,34,0.6); z-index: 490; opacity: 0; visibility: hidden; transition: opacity .3s; }
  .nav-scrim.is-open { opacity: 1; visibility: visible; }
  .mobile-call-bar {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 401;
    background: var(--navy-900); border-top: 1px solid rgba(255,255,255,0.1);
  }
  .mobile-call-bar a { flex: 1; text-align: center; padding: 14px 8px; font-weight: 700; font-size: 13.5px; display: flex; align-items: center; justify-content: center; gap: 8px; }
  .mobile-call-bar a.call { background: linear-gradient(120deg, var(--gold-400), var(--gold-600)); color: var(--navy-900); }
  .mobile-call-bar a.quote { color: var(--white); }
  body { padding-bottom: 62px; }
  .fab-stack { bottom: 78px; }
}

@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .grid-5, .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 36px 26px; flex-direction: column; text-align: center; }
  .hero__content { padding: 100px 0 70px; }
  .hero-stats { gap: 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
