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

:root {
  --navy: #0a2540;
  --navy-dark: #061a2e;
  --blue: #1e7fd6;
  --blue-light: #4fa3ec;
  --gold: #f4b400;
  --gold-dark: #d99a00;
  --white: #ffffff;
  --gray-50: #f7f9fc;
  --gray-100: #eef2f7;
  --gray-200: #dfe6ee;
  --gray-400: #9aa8b8;
  --gray-600: #5c6b7a;
  --gray-800: #2a3644;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 2px 8px rgba(10, 37, 64, 0.08);
  --shadow-md: 0 8px 24px rgba(10, 37, 64, 0.12);
  --shadow-lg: 0 20px 50px rgba(10, 37, 64, 0.18);
  --container: 1180px;
  --font-head: 'Poppins', 'Segoe UI', Arial, sans-serif;
  --font-body: 'Inter', 'Segoe UI', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 16px;
  font-weight: 700;
}
h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 16px; color: var(--gray-600); }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
section { padding: 88px 0; }
.section-tight { padding: 56px 0; }
.bg-gray { background: var(--gray-50); }
.bg-navy { background: var(--navy); color: var(--white); }
.bg-navy h2, .bg-navy h3 { color: var(--white); }
.bg-navy p { color: var(--gray-200); }

/* --- Eyebrow / kicker --- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.82rem;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}
.section-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-head p { font-size: 1.08rem; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-family: var(--font-head);
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--navy); box-shadow: 0 10px 24px rgba(244,180,0,.35); }
.btn-gold:hover { box-shadow: 0 14px 30px rgba(244,180,0,.45); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,.55); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,.12); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-dark); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 20px; font-size: 0.88rem; }

/* ==========================================================================
   Top utility bar
   ========================================================================== */
.topbar {
  background: var(--navy-dark);
  color: var(--gray-200);
  font-size: 0.85rem;
}
.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: var(--gray-200); }
.topbar a:hover { color: var(--gold); }
.topbar-left { display: flex; gap: 22px; flex-wrap: wrap; align-items: center; }
.topbar-left span, .topbar-left a { display: inline-flex; align-items: center; gap: 6px; }
.topbar-stars { color: var(--gold); letter-spacing: 1px; }

/* ==========================================================================
   Header / Nav
   ========================================================================== */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 14px rgba(10,37,64,.08);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { width: 52px; height: 52px; flex-shrink: 0; }
.brand-text { line-height: 1.1; }
.brand-text .brand-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.28rem;
  color: var(--navy);
  display: block;
}
.brand-text .brand-name span { color: var(--gold-dark); }
.brand-text .brand-tag {
  font-size: 0.68rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--gray-600);
  font-weight: 600;
}

nav.main-nav { display: flex; align-items: center; gap: 6px; }
nav.main-nav > ul { display: flex; align-items: center; gap: 2px; }
nav.main-nav > ul > li { position: relative; }
nav.main-nav a.nav-link {
  display: block;
  padding: 12px 16px;
  font-weight: 600;
  color: var(--navy);
  border-radius: var(--radius-sm);
  font-size: 0.96rem;
  transition: background .15s ease, color .15s ease;
}
nav.main-nav a.nav-link:hover,
nav.main-nav li.active > a.nav-link { color: var(--blue); background: var(--gray-100); }

.has-dropdown > a.nav-link::after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: 6px;
  font-size: .75rem;
}
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 300px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .2s ease;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.92rem;
}
.dropdown li a i { color: var(--blue); width: 18px; text-align: center; }
.dropdown li a:hover { background: var(--gray-100); color: var(--blue); }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy);
}
.nav-phone .icon-circle {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.nav-phone small { display: block; font-size: 0.68rem; font-weight: 600; color: var(--gray-600); text-transform: uppercase; letter-spacing: .5px;}
.nav-phone strong { font-size: 1.05rem; }

.hamburger {
  display: none;
  width: 44px; height: 44px;
  border-radius: 10px;
  border: none;
  background: var(--gray-100);
  color: var(--navy);
  font-size: 1.25rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

/* Mobile nav */
@media (max-width: 980px) {
  .nav-phone strong { display: none; }
  nav.main-nav { position: fixed; top: 0; right: -100%; height: 100vh; width: min(88vw, 380px);
    background: var(--white); flex-direction: column; align-items: stretch; padding: 90px 22px 30px;
    box-shadow: -14px 0 40px rgba(0,0,0,.18); transition: right .3s ease; overflow-y: auto; }
  nav.main-nav.open { right: 0; }
  nav.main-nav > ul { flex-direction: column; align-items: stretch; width: 100%; gap: 2px; }
  nav.main-nav a.nav-link { padding: 14px 12px; border-bottom: 1px solid var(--gray-100); border-radius: 0; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
    display: none; padding-left: 14px; background: var(--gray-50); margin-top: 4px; border-radius: var(--radius-sm); }
  .has-dropdown.open .dropdown { display: block; }
  .has-dropdown > a.nav-link::after { float: right; }
  .hamburger { display: inline-flex; }
  .nav-scrim { position: fixed; inset: 0; background: rgba(6,26,46,.5); opacity: 0; visibility: hidden; transition: all .3s ease; z-index: 400; }
  .nav-scrim.open { opacity: 1; visibility: visible; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  color: var(--white);
  min-height: 640px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(6,26,46,.94) 20%, rgba(10,37,64,.82) 55%, rgba(30,127,214,.55) 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 22px; }
.hero-badge {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.28);
  padding: 7px 15px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.hero-badge i { color: var(--gold); }
.hero h1 { color: var(--white); max-width: 780px; }
.hero h1 span { color: var(--gold); }
.hero .lead { font-size: 1.18rem; color: rgba(255,255,255,.88); max-width: 640px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 30px; }
.hero-stats { display: flex; gap: 34px; margin-top: 48px; flex-wrap: wrap; }
.hero-stats div strong { display: block; font-family: var(--font-head); font-size: 1.8rem; color: var(--gold); }
.hero-stats div span { font-size: 0.84rem; color: rgba(255,255,255,.78); }

.page-hero { min-height: 340px; }
.page-hero .lead { max-width: 720px; }
.breadcrumbs { font-size: 0.88rem; color: rgba(255,255,255,.75); margin-bottom: 18px; }
.breadcrumbs a { color: rgba(255,255,255,.9); font-weight: 600; }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs .sep { margin: 0 8px; opacity: .6; }

/* ==========================================================================
   Trust strip
   ========================================================================== */
.trust-strip { background: var(--white); border-bottom: 1px solid var(--gray-100); padding: 26px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.trust-item i { font-size: 1.5rem; color: var(--blue); }
.trust-item span { font-weight: 700; font-size: 0.92rem; color: var(--navy); }
@media (max-width: 760px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }

/* ==========================================================================
   Service cards
   ========================================================================== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex; flex-direction: column;
  border: 1px solid var(--gray-100);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card .thumb { height: 190px; overflow: hidden; position: relative; }
.service-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover .thumb img { transform: scale(1.08); }
.service-card .thumb .num {
  position: absolute; top: 14px; left: 14px;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--gold); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-family: var(--font-head); font-size: .95rem;
  box-shadow: var(--shadow-sm);
}
.service-card .body { padding: 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.service-card .icon-badge {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; margin-top: -50px; box-shadow: var(--shadow-md);
  border: 3px solid var(--white);
}
.service-card h3 { margin-bottom: 4px; }
.service-card .more-link { margin-top: auto; font-weight: 700; color: var(--blue); display: inline-flex; align-items: center; gap: 8px; }
.service-card .more-link i { transition: transform .2s ease; }
.service-card:hover .more-link i { transform: translateX(4px); }
@media (max-width: 980px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .services-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Why choose us
   ========================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.split-media .float-card {
  position: absolute; bottom: -26px; right: -26px;
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 20px 24px;
  display: flex; align-items: center; gap: 14px;
}
.split-media .float-card i { font-size: 1.8rem; color: var(--gold); }
.split-media .float-card strong { display: block; font-family: var(--font-head); font-size: 1.3rem; color: var(--navy); }
.split-media .float-card span { font-size: .8rem; color: var(--gray-600); }
.feature-list { display: flex; flex-direction: column; gap: 20px; margin: 26px 0; }
.feature-list li { display: flex; gap: 16px; align-items: flex-start; }
.feature-list .ico {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: var(--gray-100); color: var(--blue);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.feature-list h4 { margin: 0 0 4px; font-size: 1.05rem; }
.feature-list p { margin: 0; font-size: 0.94rem; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 40px; } .split-media .float-card { position: static; margin-top: -40px; margin-left: 20px; width: fit-content; } }

/* ==========================================================================
   Process steps
   ========================================================================== */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step-card { text-align: center; position: relative; padding: 0 10px; }
.step-card .step-num {
  width: 62px; height: 62px; border-radius: 50%; margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy); font-family: var(--font-head); font-weight: 800; font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md);
}
.step-card h4 { font-size: 1.08rem; }
.step-card p { font-size: 0.92rem; }
.steps-grid .step-card:not(:last-child)::after {
  content: ""; position: absolute; top: 30px; left: calc(50% + 45px); width: calc(100% - 60px);
  height: 2px; background: repeating-linear-gradient(90deg, var(--gray-200) 0 8px, transparent 8px 16px);
}
@media (max-width: 980px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } .steps-grid .step-card::after { display: none; } }
@media (max-width: 560px) { .steps-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; box-shadow: var(--shadow-sm); aspect-ratio: 4/3;}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item .overlay {
  position: absolute; inset: 0; background: linear-gradient(0deg, rgba(6,26,46,.85), transparent 60%);
  display: flex; align-items: flex-end; padding: 18px; opacity: 0; transition: opacity .25s ease;
}
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay span { color: var(--white); font-weight: 700; font-size: 0.95rem; }
.gallery-item .zoom-ico {
  position: absolute; top: 14px; right: 14px; width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.9); color: var(--navy); display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .25s ease;
}
.gallery-item:hover .zoom-ico { opacity: 1; }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; } }

.lightbox {
  position: fixed; inset: 0; background: rgba(6,10,20,.94); z-index: 2000;
  display: none; align-items: center; justify-content: center; padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 80vh; border-radius: 10px; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lightbox .lb-caption { color: var(--white); text-align: center; margin-top: 16px; font-weight: 600; }
.lightbox .lb-close, .lightbox .lb-nav {
  position: absolute; background: rgba(255,255,255,.12); color: var(--white); border: none;
  width: 48px; height: 48px; border-radius: 50%; font-size: 1.2rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: background .2s ease;
}
.lightbox .lb-close:hover, .lightbox .lb-nav:hover { background: rgba(255,255,255,.28); }
.lightbox .lb-close { top: 26px; right: 26px; }
.lightbox .lb-prev { left: 26px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 26px; top: 50%; transform: translateY(-50%); }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonial-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testimonial-card {
  background: var(--white); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100); position: relative;
}
.testimonial-card .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-card p.quote { color: var(--gray-800); font-style: italic; }
.testimonial-card .who { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.testimonial-card .avatar {
  width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--navy));
  color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 800; font-family: var(--font-head);
}
.testimonial-card .who strong { display: block; font-size: 0.94rem; color: var(--navy); }
.testimonial-card .who span { font-size: 0.8rem; color: var(--gray-600); }
@media (max-width: 980px) { .testimonial-track { grid-template-columns: 1fr; } }

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.faq-list { max-width: 840px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; }
.faq-question {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 20px 24px; display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: 1rem; gap: 20px;
}
.faq-question i { transition: transform .25s ease; color: var(--blue); flex-shrink: 0; }
.faq-item.open .faq-question i { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-answer-inner { padding: 0 24px 22px; color: var(--gray-600); }

/* ==========================================================================
   CTA banner
   ========================================================================== */
.cta-banner {
  background: linear-gradient(120deg, var(--navy), var(--navy-dark) 70%);
  color: var(--white); border-radius: var(--radius); padding: 56px;
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ""; position: absolute; width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(244,180,0,.25), transparent 70%); top: -140px; right: -100px;
}
.cta-banner h2 { color: var(--white); margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,.82); margin: 0; }
.cta-banner .actions { display: flex; gap: 14px; flex-wrap: wrap; position: relative; z-index: 1; }

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 46px; align-items: start; }
.contact-info-card {
  background: var(--navy); color: var(--white); border-radius: var(--radius); padding: 40px;
}
.contact-info-card h3 { color: var(--white); }
.contact-info-card ul { display: flex; flex-direction: column; gap: 22px; margin-top: 24px; }
.contact-info-card li { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-card .ico {
  width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; font-size: 1.05rem;
}
.contact-info-card strong { display: block; margin-bottom: 3px; }
.contact-info-card a, .contact-info-card span.txt { color: rgba(255,255,255,.82); font-size: 0.94rem; }
.contact-info-card a:hover { color: var(--gold); }
.map-embed { border-radius: var(--radius); overflow: hidden; margin-top: 24px; border: 1px solid rgba(255,255,255,.15); }
.map-embed iframe { width: 100%; height: 220px; border: 0; display: block; }

.form-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 700; font-size: 0.86rem; color: var(--navy); margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 0.96rem; background: var(--gray-50); transition: border-color .2s ease, background .2s ease;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--blue); background: var(--white);
}
.form-group .error-msg { color: #d43a3a; font-size: 0.8rem; margin-top: 6px; display: none; }
.form-group.has-error input, .form-group.has-error select, .form-group.has-error textarea { border-color: #d43a3a; }
.form-group.has-error .error-msg { display: block; }
.form-status { margin-top: 16px; padding: 14px 16px; border-radius: var(--radius-sm); font-weight: 600; font-size: 0.92rem; display: none; }
.form-status.show { display: block; }
.form-status.success { background: #e6f7ec; color: #1a7d3f; border: 1px solid #b6ebc9; }
.form-status.error { background: #fdeceb; color: #b93636; border: 1px solid #f7c6c2; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } }

/* ==========================================================================
   Service detail page
   ========================================================================== */
.service-detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 50px; align-items: start; }
.sidebar-card { background: var(--gray-50); border-radius: var(--radius); padding: 28px; border: 1px solid var(--gray-100); margin-bottom: 24px; }
.sidebar-card h4 { font-size: 1.05rem; margin-bottom: 16px; }
.sidebar-services li a {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 12px 14px; border-radius: var(--radius-sm); font-weight: 600; color: var(--navy); font-size: 0.92rem;
  background: var(--white); margin-bottom: 8px; border: 1px solid var(--gray-100);
}
.sidebar-services li a:hover { border-color: var(--blue); color: var(--blue); }
.sidebar-services li a.current { background: var(--navy); color: var(--white); border-color: var(--navy); }
.sidebar-cta { background: linear-gradient(135deg, var(--blue), var(--navy)); color: var(--white); text-align: center; }
.sidebar-cta h4 { color: var(--white); }
.sidebar-cta .phone-big { font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; margin: 10px 0; display: block; color: var(--gold); }
.benefit-list { display: flex; flex-direction: column; gap: 14px; margin: 24px 0; }
.benefit-list li { display: flex; gap: 12px; align-items: flex-start; font-weight: 500; color: var(--gray-800); }
.benefit-list li i { color: #1a9c56; margin-top: 4px; }
.content-figure { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); margin: 30px 0; }
.content-figure figcaption { background: var(--gray-50); padding: 12px 18px; font-size: 0.84rem; color: var(--gray-600); }
@media (max-width: 900px) { .service-detail-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Footer
   ========================================================================== */
footer.site-footer { background: var(--navy-dark); color: rgba(255,255,255,.75); 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,.1); }
.footer-brand .brand-name { color: var(--white); font-size: 1.2rem; }
.footer-brand p { margin: 16px 0; font-size: 0.92rem; }
.footer-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-badges span { background: rgba(255,255,255,.08); padding: 6px 12px; border-radius: 999px; font-size: 0.76rem; font-weight: 600; }
footer h4 { color: var(--white); font-size: 1rem; margin-bottom: 20px; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: 0.92rem; }
.footer-links a:hover { color: var(--gold); }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 16px; font-size: 0.92rem; align-items: flex-start; }
.footer-contact i { color: var(--gold); margin-top: 3px; width: 16px; }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 24px 0; font-size: 0.82rem; flex-wrap: wrap; gap: 10px; }
.footer-bottom a:hover { color: var(--gold); }
@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* --- Sticky mobile call bar --- */
.sticky-call {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 600;
  background: var(--navy); color: var(--white); display: none;
  align-items: center; justify-content: center; gap: 10px; padding: 14px; font-weight: 700;
  box-shadow: 0 -6px 20px rgba(0,0,0,.2);
}
.sticky-call i { color: var(--gold); }
@media (max-width: 760px) { .sticky-call { display: flex; } body { padding-bottom: 58px; } }

/* --- Back to top --- */
.back-to-top {
  position: fixed; bottom: 90px; right: 26px; width: 48px; height: 48px; border-radius: 50%;
  background: var(--gold); color: var(--navy); border: none; box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem; cursor: pointer;
  opacity: 0; visibility: hidden; transform: translateY(10px); transition: all .25s ease; z-index: 550;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
@media (max-width: 760px) { .back-to-top { bottom: 76px; } }

/* --- Reveal animation --- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* --- Misc --- */
.badge-pill {
  display: inline-flex; align-items: center; gap: 6px; background: var(--gray-100); color: var(--navy);
  padding: 6px 14px; border-radius: 999px; font-size: 0.78rem; font-weight: 700; margin-bottom: 14px;
}
.two-col-text { columns: 2; column-gap: 40px; }
@media (max-width: 760px) { .two-col-text { columns: 1; } }
.checklist { display: flex; flex-direction: column; gap: 12px; margin: 20px 0; }
.checklist li { display: flex; gap: 10px; align-items: flex-start; }
.checklist li i { color: var(--blue); margin-top: 4px; }
.area-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.area-tags span { background: var(--white); border: 1.5px solid var(--gray-200); padding: 8px 16px; border-radius: 999px; font-weight: 600; font-size: 0.86rem; color: var(--navy); }
