/* =========================================================
   5Star Plumbing Remodel — Main Stylesheet
   ========================================================= */

:root {
  --navy: #0b2545;
  --navy-dark: #061627;
  --blue: #1565c0;
  --blue-light: #2e86de;
  --gold: #f5a623;
  --gold-dark: #d98c0f;
  --gray-50: #f7f9fb;
  --gray-100: #eef2f6;
  --gray-200: #dde4ea;
  --gray-500: #647186;
  --gray-700: #38424f;
  --gray-900: #171e26;
  --white: #ffffff;
  --success: #1c8a4b;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(11, 37, 69, 0.08);
  --shadow-md: 0 8px 24px rgba(11, 37, 69, 0.12);
  --shadow-lg: 0 20px 50px rgba(11, 37, 69, 0.18);
  --container: 1200px;
  --font-head: "Poppins", "Segoe UI", Arial, sans-serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

html { overflow-x: hidden; }
body {
  font-family: var(--font-body);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  width: 100%;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.3rem; }

.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.bg-gray { background: var(--gray-50); }
.bg-navy { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%); color: #cfe0f5; }
.bg-navy h2, .bg-navy h3 { color: var(--white); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(245, 166, 35, 0.12);
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 16px;
}
.bg-navy .eyebrow { color: var(--gold); background: rgba(245, 166, 35, 0.16); }

.section-head { max-width: 720px; margin: 0 auto 50px; text-align: center; }
.section-head p { color: var(--gray-500); font-size: 1.05rem; margin-top: 14px; }
.bg-navy .section-head p { color: #b9cbe3; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy-dark);
  box-shadow: 0 10px 24px rgba(245, 166, 35, 0.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 30px rgba(245, 166, 35, 0.45); }
.btn-outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { background: var(--blue); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-block { width: 100%; }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy-dark);
  color: #a9bcd6;
  font-size: 0.84rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar a { color: #dce8f7; transition: color .15s; }
.topbar a:hover { color: var(--gold); }
.topbar .topbar-left { display: flex; gap: 22px; flex-wrap: wrap; align-items: center; }
.topbar .topbar-left span, .topbar .topbar-left a { display: inline-flex; align-items: center; gap: 6px; }
.topbar .topbar-right { display: flex; gap: 14px; align-items: center; }
.topbar .badge-emergency {
  background: var(--gold);
  color: var(--navy-dark);
  padding: 3px 12px;
  border-radius: 20px;
  font-weight: 800;
  letter-spacing: .4px;
}
.icon-inline { width: 14px; height: 14px; flex-shrink: 0; fill: currentColor; }

/* ---------- Header / Nav ---------- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow-sm);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo svg { width: 52px; height: 52px; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text .lt-main {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--navy);
  letter-spacing: .3px;
}
.logo-text .lt-main span { color: var(--gold-dark); }
.logo-text .lt-sub {
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-500);
  font-weight: 600;
  margin-top: 2px;
}

nav.main-nav ul {
  display: flex;
  gap: 6px;
  align-items: center;
}
nav.main-nav a.nav-link {
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gray-700);
  transition: background .15s, color .15s;
  position: relative;
}
nav.main-nav a.nav-link:hover,
nav.main-nav a.nav-link.active {
  color: var(--blue);
  background: var(--gray-100);
}

.header-cta { display: flex; align-items: center; gap: 14px; }
.header-cta .phone-cta {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; color: var(--navy);
}
.header-cta .phone-cta .phone-ico {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-dark); flex-shrink: 0;
}
.header-cta .phone-cta .phone-ico svg { width: 20px; height: 20px; fill: currentColor; }
.header-cta .phone-cta small { display:block; font-weight:600; color: var(--gray-500); font-size: .72rem; text-transform: uppercase; letter-spacing: .5px; }
.header-cta .phone-cta strong { font-size: 1.05rem; }

.nav-overlay {
  position: fixed; inset: 0; background: rgba(6,22,39,0.55); z-index: 480;
  opacity: 0; pointer-events: none; transition: opacity .25s;
}
.nav-overlay.show { opacity: 1; pointer-events: auto; }
@media (min-width: 861px) { .nav-overlay { display: none; } }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.nav-toggle span { width: 26px; height: 3px; background: var(--navy); border-radius: 2px; transition: all .25s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-dark) 65%);
  color: var(--white);
  overflow: hidden;
  padding: 90px 0 110px;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 85% 20%, rgba(245,166,35,0.18), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(46,134,222,0.25), transparent 45%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 span { color: var(--gold); }
.hero p.lead { font-size: 1.15rem; color: #c4d4ea; max-width: 560px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: flex; gap: 26px; flex-wrap: wrap; }
.hero-trust .ht-item { display: flex; align-items: center; gap: 10px; font-size: .9rem; font-weight: 600; color: #d7e4f4; }
.hero-trust .ht-item svg { width: 22px; height: 22px; fill: var(--gold); flex-shrink: 0; }
.hero-media { position: relative; }
.hero-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border: 6px solid rgba(255,255,255,0.08);
}
.hero-media .float-card {
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: var(--white);
  color: var(--navy);
  padding: 18px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 260px;
}
.hero-media .float-card .fc-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; }
.hero-media .float-card small { display: block; color: var(--gray-500); font-size: .78rem; margin-top: 2px; }

/* Page (interior) hero — smaller banner for subpages */
.page-hero {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-dark) 70%);
  color: var(--white);
  padding: 60px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 90% 10%, rgba(245,166,35,0.18), transparent 45%);
}
.page-hero .container { position: relative; }
.breadcrumbs { font-size: .85rem; color: #b9cbe3; margin-bottom: 14px; display: flex; gap: 8px; flex-wrap: wrap; }
.breadcrumbs a { color: #dce8f7; font-weight: 600; }
.breadcrumbs a:hover { color: var(--gold); }
.page-hero h1 { color: var(--white); margin-bottom: 10px; }
.page-hero p { color: #c4d4ea; max-width: 640px; font-size: 1.05rem; }

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}
.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 24px;
}
.trust-strip .ts-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1 1 200px;
}
.trust-strip .ts-item svg { width: 30px; height: 30px; fill: var(--blue); flex-shrink: 0; }
.trust-strip .ts-item strong { display: block; color: var(--navy); font-size: .95rem; }
.trust-strip .ts-item span { color: var(--gray-500); font-size: .82rem; }

/* ---------- Services grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--gray-200);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card .sc-media { position: relative; height: 210px; overflow: hidden; }
.service-card .sc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.service-card:hover .sc-media img { transform: scale(1.08); }
.service-card .sc-tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--gold); color: var(--navy-dark);
  font-size: .72rem; font-weight: 800; letter-spacing: .5px;
  padding: 5px 12px; border-radius: 20px; text-transform: uppercase;
}
.service-card .sc-body { padding: 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.service-card .sc-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(21,101,192,0.1); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
}
.service-card .sc-icon svg { width: 24px; height: 24px; fill: currentColor; }
.service-card p { color: var(--gray-500); font-size: .93rem; flex: 1; }
.service-card .sc-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; color: var(--blue); font-size: .9rem;
  margin-top: 6px;
}
.service-card .sc-link svg { width: 16px; height: 16px; fill: currentColor; transition: transform .2s; }
.service-card .sc-link:hover svg { transform: translateX(4px); }

/* ---------- Icon list / features ---------- */
.feature-list { display: grid; gap: 16px; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--white); padding: 16px 18px; border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
}
.feature-list li .fl-ico {
  width: 34px; height: 34px; border-radius: 8px; flex-shrink: 0;
  background: rgba(28,138,75,0.1); color: var(--success);
  display: flex; align-items: center; justify-content: center;
}
.feature-list li .fl-ico svg { width: 18px; height: 18px; fill: currentColor; }
.feature-list li strong { color: var(--navy); display: block; margin-bottom: 2px; }
.feature-list li span { color: var(--gray-500); font-size: .9rem; }

/* ---------- About split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; object-fit: cover; }
.split-media .badge-years {
  position: absolute; bottom: -20px; right: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy-dark);
  width: 120px; height: 120px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  text-align: center;
  font-family: var(--font-head);
}
.split-media .badge-years strong { font-size: 1.6rem; font-weight: 800; line-height: 1; }
.split-media .badge-years span { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; margin-top: 4px; }

/* ---------- Stats ---------- */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stats-row .stat strong { display: block; font-family: var(--font-head); font-size: 2.1rem; color: var(--gold); font-weight: 800; }
.stats-row .stat span { color: #c4d4ea; font-size: .88rem; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; background: var(--white); border-radius: var(--radius-md); padding: 30px 24px; border: 1px solid var(--gray-200); }
.step .step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-family: var(--font-head); margin-bottom: 18px;
}
.step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step p { color: var(--gray-500); font-size: .9rem; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-item { position: relative; border-radius: var(--radius-md); overflow: hidden; cursor: pointer; box-shadow: var(--shadow-sm); }
.gallery-item img { width: 100%; height: 280px; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item .gi-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(6,22,39,0.85) 0%, rgba(6,22,39,0.1) 55%, transparent 100%);
  display: flex; align-items: flex-end; padding: 20px;
  opacity: 0; transition: opacity .25s;
}
.gallery-item:hover .gi-overlay { opacity: 1; }
.gi-overlay div strong { color: var(--white); display: block; font-size: 1rem; }
.gi-overlay div span { color: var(--gold); font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; background: rgba(6,10,18,0.92);
  display: none; align-items: center; justify-content: center;
  z-index: 2000; padding: 30px;
}
.lightbox.open { display: flex; }
.lightbox figure { max-width: 900px; width: 100%; text-align: center; }
.lightbox img { max-height: 78vh; margin: 0 auto; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); }
.lightbox figcaption { color: #dce8f7; margin-top: 16px; font-weight: 600; }
.lightbox-close, .lightbox-nav {
  position: absolute; background: rgba(255,255,255,0.12); color: var(--white);
  border: none; border-radius: 50%; width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
  transition: background .15s;
}
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(255,255,255,0.28); }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-nav.prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-nav.next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ---------- Testimonial / review CTA ---------- */
.review-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
  background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}
.review-cta .rc-stars { color: var(--gold); font-size: 1.6rem; letter-spacing: 4px; margin-bottom: 8px; }
.review-cta h3 { margin-bottom: 6px; }
.review-cta p { color: var(--gray-500); }

/* ---------- FAQ Accordion ---------- */
.accordion { display: grid; gap: 14px; max-width: 860px; margin: 0 auto; }
.acc-item { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-sm); overflow: hidden; }
.acc-item .acc-q {
  width: 100%; text-align: left; padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: none; border: none; font-weight: 700; color: var(--navy); font-size: 1rem;
}
.acc-item .acc-q .acc-plus {
  width: 26px; height: 26px; flex-shrink: 0; border-radius: 50%;
  background: var(--gray-100); display: flex; align-items: center; justify-content: center;
  transition: transform .25s, background .25s;
  font-size: 1.1rem; color: var(--blue); font-weight: 800;
}
.acc-item.open .acc-q .acc-plus { transform: rotate(135deg); background: var(--gold); color: var(--navy-dark); }
.acc-item .acc-a {
  max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease;
  padding: 0 24px; color: var(--gray-500); font-size: .93rem;
}
.acc-item.open .acc-a { max-height: 300px; padding: 0 24px 22px; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy-dark);
  border-radius: var(--radius-lg);
  padding: 50px 60px;
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
}
.cta-banner h2 { color: var(--navy-dark); margin-bottom: 8px; }
.cta-banner p { color: rgba(11,37,69,0.75); font-weight: 600; }
.cta-banner .btn-navy:hover { background: var(--navy-dark); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: start; }
.contact-card {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  padding: 40px; box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.form-group label { font-weight: 700; font-size: .88rem; color: var(--navy); }
.form-group input, .form-group select, .form-group textarea {
  padding: 13px 16px; border: 1.5px solid var(--gray-200); border-radius: 8px;
  font-family: inherit; font-size: .95rem; color: var(--gray-900); transition: border-color .15s, box-shadow .15s;
  background: var(--gray-50);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(21,101,192,0.12); background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: .82rem; color: var(--gray-500); margin-top: 6px; }
#formStatus { margin-top: 16px; padding: 14px 16px; border-radius: 8px; font-weight: 600; font-size: .9rem; display: none; }
#formStatus.success { display: block; background: rgba(28,138,75,0.1); color: var(--success); border: 1px solid rgba(28,138,75,0.3); }
#formStatus.error { display: block; background: rgba(214,69,69,0.1); color: #d64545; border: 1px solid rgba(214,69,69,0.3); }

.info-card {
  background: var(--navy); color: var(--white); border-radius: var(--radius-lg);
  padding: 36px; margin-bottom: 20px;
}
.info-card h3 { color: var(--white); margin-bottom: 20px; }
.info-row { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; }
.info-row:last-child { margin-bottom: 0; }
.info-row .ir-ico {
  width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0;
  background: rgba(245,166,35,0.16); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.info-row .ir-ico svg { width: 20px; height: 20px; fill: currentColor; }
.info-row strong { display: block; color: var(--white); font-size: .95rem; }
.info-row span, .info-row a { color: #b9cbe3; font-size: .88rem; }
.info-row a:hover { color: var(--gold); }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); }
.map-wrap iframe { width: 100%; height: 260px; border: 0; display: block; }

/* ---------- Areas served chips ---------- */
.area-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.area-chips span {
  background: var(--gray-100); color: var(--navy); font-weight: 600; font-size: .85rem;
  padding: 8px 16px; border-radius: 20px; border: 1px solid var(--gray-200);
}

/* ---------- Footer ---------- */
footer.site-footer { background: var(--navy-dark); color: #9fb2cc; padding-top: 70px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-grid h4 { color: var(--white); font-size: 1rem; margin-bottom: 18px; }
.footer-grid ul li { margin-bottom: 10px; }
.footer-grid ul li a { color: #9fb2cc; font-size: .9rem; transition: color .15s; }
.footer-grid ul li a:hover { color: var(--gold); }
.footer-about .logo-text .lt-main { color: var(--white); }
.footer-about .logo-text .lt-main span { color: var(--gold); }
.footer-about p { font-size: .88rem; margin: 16px 0 20px; color: #9fb2cc; }
.footer-social { display: flex; gap: 10px; }
.footer-social 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 .15s;
}
.footer-social a:hover { background: var(--gold); color: var(--navy-dark); }
.footer-social svg { width: 16px; height: 16px; fill: currentColor; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
  padding: 22px 0; font-size: .82rem;
}
.footer-bottom a { color: #9fb2cc; }
.footer-bottom a:hover { color: var(--gold); }

.back-to-top {
  position: fixed; bottom: 26px; right: 26px; z-index: 400;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gold); color: var(--navy-dark); border: none;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
  box-shadow: var(--shadow-md); opacity: 0; pointer-events: none; transform: translateY(10px);
  transition: opacity .25s, transform .25s;
}
.back-to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }

.sticky-call {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 450;
  background: var(--navy); color: var(--white); display: none;
  align-items: center; justify-content: center; gap: 10px; padding: 12px 16px;
  font-weight: 800; box-shadow: 0 -6px 20px rgba(0,0,0,0.2);
}
.sticky-call svg { width: 18px; height: 18px; fill: var(--gold); }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-30 { margin-top: 30px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.tag-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0; }
.tag-list span {
  background: rgba(21,101,192,0.08); color: var(--blue); font-weight: 700; font-size: .8rem;
  padding: 7px 14px; border-radius: 20px;
}
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .hero-grid, .split, .contact-grid, .grid-2 { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .split-media { order: -1; }
  .topbar .topbar-left { display: none; }
}
@media (max-width: 860px) {
  nav.main-nav { position: fixed; top: 0; right: -100%; width: min(340px, 86%); height: 100vh;
    background: var(--white); flex-direction: column; padding: 90px 28px 28px; box-shadow: var(--shadow-lg);
    transition: right .3s ease; overflow-y: auto; z-index: 490; }
  nav.main-nav.open { right: 0; }
  nav.main-nav ul { flex-direction: column; align-items: stretch; width: 100%; gap: 4px; }
  nav.main-nav a.nav-link { padding: 14px 16px; }
  .nav-toggle { display: flex; z-index: 495; position: relative; }
  .header-cta { gap: 8px; }
  .header-cta .phone-cta strong { font-size: .92rem; }
  .sticky-call { display: flex; }
  body { padding-bottom: 54px; }
}
@media (max-width: 640px) {
  .header-cta .btn-primary { display: none; }
}
@media (max-width: 480px) {
  .logo-text .lt-sub { display: none; }
  .header-cta .phone-cta { display: none; }
  .logo svg { width: 42px; height: 42px; }
  .logo-text .lt-main { font-size: 1.05rem; }
}
@media (max-width: 720px) {
  .services-grid, .steps, .stats-row, .footer-grid, .gallery-grid, .form-row { grid-template-columns: 1fr; }
  .cta-banner { padding: 34px 26px; text-align: center; justify-content: center; }
  .section { padding: 60px 0; }
  .split-media .badge-years { width: 96px; height: 96px; right: -10px; bottom: -10px; }
}
