/* ============================================
   ABSOLUTE DRAINING & PLUMBING
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  /* Brand Colors - Blue primary (matches logo), Orange accent (CTAs) */
  --blue: #0073CF;
  --blue-dark: #005BA3;
  --blue-darker: #003D6B;
  --blue-light: #4DA3E8;
  --blue-50: #EBF5FF;
  --blue-100: #CCE5FF;

  --orange: #FF4F00;
  --orange-dark: #D94400;
  --orange-light: #FF7A3D;
  --orange-50: #FFF3ED;

  --white: #FFFFFF;
  --gray-50: #F7F8FA;
  --gray-100: #EEF0F3;
  --gray-200: #DDE1E6;
  --gray-300: #C1C7CF;
  --gray-400: #8D96A0;
  --gray-500: #5F6B76;
  --gray-600: #434F5B;
  --gray-700: #2E3A46;
  --gray-800: #1C2630;
  --gray-900: #0D1720;

  --success: #16A34A;
  --warning: #EAB308;
  --error: #DC2626;

  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Outfit', sans-serif;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 12px 28px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 40px rgba(0,0,0,0.15);

  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  --max-w: 1240px;
}

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-900);
}
h1 { font-size: 2.75rem; letter-spacing: -0.02em; }
h2 { font-size: 2.1rem; letter-spacing: -0.015em; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }
p { color: var(--gray-600); line-height: 1.7; }

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

/* ========== TOP BAR ========== */
.topbar {
  background: var(--blue-darker);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.topbar__left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.topbar__item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar__item svg {
  width: 14px;
  height: 14px;
  opacity: 0.7;
}

.topbar__item a {
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}

.topbar__item a:hover {
  color: var(--blue-light);
}

.topbar__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topbar__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.topbar__social a:hover { opacity: 1; }

.topbar__social svg {
  width: 14px;
  height: 14px;
  color: white;
}

/* ========== NAVIGATION ========== */
.nav {
  background: var(--white);
  border-bottom: 2px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.nav__logo { flex-shrink: 0; }
.nav__logo img { height: 52px; width: auto; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav__link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  color: var(--gray-700);
  padding: 8px 8px;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}

.nav__link:hover { color: var(--blue); background: var(--blue-50); }
.nav__link--active { color: var(--blue); }

/* Dropdown */
.nav__dropdown { position: relative; }

.nav__dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__dropdown-trigger svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s;
}

.nav__dropdown:hover .nav__dropdown-trigger svg { transform: rotate(180deg); }

.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s;
  pointer-events: none;
  z-index: 100;
}

.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav__dropdown-item {
  display: block;
  padding: 8px 12px;
  font-size: 13px;
  color: var(--gray-600);
  border-radius: 6px;
  transition: all 0.15s;
}

.nav__dropdown-item:hover {
  color: var(--blue);
  background: var(--blue-50);
}

/* Nav right side */
.nav__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--blue);
}

.nav__phone svg { width: 18px; height: 18px; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 44px;
  height: 44px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  border-radius: 6px;
  background: var(--gray-50);
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: all 0.25s;
}

.nav__hamburger--active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger--active span:nth-child(2) { opacity: 0; }
.nav__hamburger--active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.nav__mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 999;
  padding: 90px 24px 32px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav__mobile--open { transform: translateX(0); }

.nav__mobile-link {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  color: var(--gray-800);
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
}

.nav__mobile-link:hover { color: var(--blue); }

.nav__mobile-sub {
  padding-left: 20px;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.nav__mobile-sub a {
  display: block;
  font-size: 15px;
  font-weight: 400;
  color: var(--gray-500);
  padding: 8px 0;
}

.nav__mobile-sub a:hover { color: var(--blue); }

.nav__mobile-cta { margin-top: 24px; text-align: center; }

.nav__mobile-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--blue);
  margin-top: 20px;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: 6px;
  transition: all 0.2s;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(255,79,0,0.25);
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(255,79,0,0.3);
}

.btn-secondary {
  background: var(--blue);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}

.btn-outline {
  border: 2px solid var(--blue);
  color: var(--blue);
  background: transparent;
}

.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--gray-900);
}

.btn-white:hover {
  background: var(--gray-50);
  transform: translateY(-1px);
}

.btn-lg { padding: 14px 32px; font-size: 16px; }
.btn-sm { padding: 8px 20px; font-size: 13px; }

/* ========== SECTIONS ========== */
.section { padding: 80px 0; }
.section--gray { background: var(--gray-50); }
.section--blue { background: var(--blue-darker); color: var(--white); }
.section--blue h2, .section--blue h3 { color: var(--white); }
.section--blue p { color: rgba(255,255,255,0.7); }

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  margin-bottom: 12px;
}

.section--blue .section-label { color: rgba(255,255,255,0.7); }

.section-header { margin-bottom: 48px; }
.section-header--center { text-align: center; }
.section-header p {
  max-width: 620px;
  font-size: 17px;
  margin-top: 12px;
}
.section-header--center p { margin-left: auto; margin-right: auto; }

/* ========== HERO ========== */
.hero {
  position: relative;
  padding: 80px 0 60px;
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--blue-darker) 100%);
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero__content { position: relative; z-index: 2; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: #22C55E;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero__title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero__title span { color: var(--blue-light); }

.hero__text {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
  max-width: 520px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero__stats {
  display: flex;
  gap: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.hero__stat-value {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
}

.hero__stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}

.hero__image {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero__image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.hero__image-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--white);
  padding: 12px 16px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero__image-badge strong {
  font-family: var(--font-heading);
  font-size: 15px;
  color: var(--gray-900);
  display: block;
}

.hero__image-badge small {
  font-size: 12px;
  color: var(--gray-500);
}

.hero__image-badge-icon {
  width: 40px;
  height: 40px;
  background: var(--blue-50);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__image-badge-icon svg {
  width: 20px;
  height: 20px;
  color: var(--blue);
}

/* ========== TRUST BAR ========== */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: 20px 0;
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  color: var(--gray-700);
}

.trust-bar__icon {
  width: 36px;
  height: 36px;
  background: var(--blue-50);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-bar__icon svg { width: 18px; height: 18px; color: var(--blue); }
/* trust bar icons all use blue */

/* ========== SERVICE CARDS ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  transition: box-shadow 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.service-card__img {
  overflow: hidden;
  aspect-ratio: 16/10;
}

.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.service-card:hover .service-card__img img { transform: scale(1.04); }

.service-card__body {
  padding: 20px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card__title {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.service-card__text {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.65;
  flex: 1;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: var(--blue);
  margin-top: 14px;
  transition: gap 0.2s, color 0.15s;
}

/* Make the link cover the entire card so the whole box is clickable */
.service-card__link::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}

.service-card:hover .service-card__link { gap: 10px; color: var(--blue-dark); }
.service-card__link svg { width: 16px; height: 16px; }

/* ========== BENEFITS (Dark) ========== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.benefit-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  gap: 16px;
  transition: background 0.2s;
}

.benefit-card:hover { background: rgba(255,255,255,0.1); }

.benefit-card__icon {
  width: 48px;
  height: 48px;
  background: var(--blue);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-card__icon svg { width: 24px; height: 24px; color: var(--white); }

.benefit-card h3 { font-size: 1.05rem; color: var(--white); margin-bottom: 6px; }
.benefit-card p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.65; }

/* Light variant for inner pages */
.benefit-card--light {
  background: var(--white);
  border-color: var(--gray-100);
}
.benefit-card--light:hover {
  background: var(--gray-50);
  border-color: var(--gray-200);
}
.benefit-card--light h3 { color: var(--gray-900); }
.benefit-card--light p { color: var(--gray-500); }
.benefit-card--light .benefit-card__icon { background: var(--blue); }

/* ========== PROCESS STEPS ========== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.process-step { text-align: center; }

.process-step__number {
  width: 48px;
  height: 48px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  margin: 0 auto 16px;
}

.process-step__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 16px;
  aspect-ratio: 4/3;
}

.process-step__image img { width: 100%; height: 100%; object-fit: cover; }
.process-step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.process-step p { font-size: 14px; color: var(--gray-500); line-height: 1.65; }

/* ========== FAQ ========== */
.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 12px;
  border: 1px solid var(--gray-100);
  overflow: hidden;
}

.faq-item--open {
  border-color: var(--blue-100);
  box-shadow: var(--shadow-sm);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 24px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  color: var(--gray-800);
  text-align: left;
  cursor: pointer;
  transition: color 0.15s;
}

.faq-item__question:hover { color: var(--blue); }

.faq-item__icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s;
}

.faq-item--open .faq-item__icon { transform: rotate(180deg); }
.faq-item__icon svg { width: 16px; height: 16px; color: var(--gray-400); }
.faq-item--open .faq-item__icon svg { color: var(--blue); }

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item--open .faq-item__answer { max-height: 600px; }

.faq-item__answer-inner {
  padding: 0 24px 18px;
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.75;
}

/* ========== CTA BANNER ========== */
.cta-banner {
  background: var(--blue);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%);
}

.cta-banner h2 { color: var(--white); margin-bottom: 12px; }
.cta-banner p {
  color: rgba(255,255,255,0.8);
  font-size: 17px;
  max-width: 520px;
  margin: 0 auto 24px;
}

.cta-banner .btn-primary {
  background: var(--orange);
  font-size: 16px;
  padding: 14px 32px;
}

.cta-banner__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--white);
}

.cta-banner__phone svg { width: 22px; height: 22px; }

/* Orange variant */
.cta-banner--orange { background: var(--orange); }
.cta-banner--orange .btn-primary { background: var(--white); color: var(--gray-900); box-shadow: none; }
.cta-banner--orange .btn-primary:hover { background: var(--gray-50); }

/* ========== BLOG CARDS ========== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  transition: box-shadow 0.25s, transform 0.25s;
}

.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.blog-card__img {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.blog-card:hover .blog-card__img img { transform: scale(1.04); }

.blog-card__body { padding: 20px; }

.blog-card__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--blue);
  background: var(--blue-50);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.blog-card__title {
  font-size: 1rem;
  line-height: 1.35;
  margin-bottom: 8px;
  transition: color 0.15s;
}

.blog-card:hover .blog-card__title { color: var(--blue); }

.blog-card__excerpt {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  color: var(--blue);
  margin-top: 12px;
  transition: gap 0.2s;
}

.blog-card__link:hover { gap: 10px; }

/* ========== SERVICE AREAS ========== */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.area-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  transition: all 0.15s;
}

.area-tag:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-50);
}

.area-tag svg { width: 14px; height: 14px; color: var(--gray-400); }
.area-tag:hover svg { color: var(--blue); }

/* ========== PAGE HERO (inner pages) ========== */
.page-hero {
  padding: 48px 0 40px;
  background: var(--blue-darker);
  position: relative;
}

.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

.page-hero__breadcrumb a {
  color: rgba(255,255,255,0.55);
  transition: color 0.15s;
}

.page-hero__breadcrumb a:hover { color: var(--blue-light); }

.page-hero__title {
  font-size: 2.25rem;
  color: var(--white);
  margin-bottom: 10px;
}

.page-hero__text {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* ========== SERVICE DETAIL LAYOUT ========== */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
}

.service-content h2 {
  margin-top: 40px;
  margin-bottom: 12px;
  font-size: 1.6rem;
}

.service-content h3 {
  margin-top: 28px;
  margin-bottom: 10px;
}

.service-content p {
  margin-bottom: 14px;
  line-height: 1.75;
}

.service-content img {
  border-radius: var(--radius-lg);
  margin: 20px 0;
  box-shadow: var(--shadow-sm);
}

.service-content ul {
  margin: 12px 0 16px;
  padding-left: 0;
}

.service-content ul li {
  position: relative;
  padding: 6px 0 6px 24px;
  color: var(--gray-600);
}

.service-content ul li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 14px;
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 50%;
}

/* Sidebar */
.service-sidebar { position: sticky; top: 90px; align-self: start; }

.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--gray-100);
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.sidebar-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--gray-100);
}

.sidebar-card__links a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 14px;
  color: var(--gray-600);
  transition: all 0.15s;
  margin-bottom: 2px;
}

.sidebar-card__links a:hover { color: var(--blue); background: var(--blue-50); }
.sidebar-card__links a.active { color: var(--blue); background: var(--blue-50); font-weight: 600; }
.sidebar-card__links a svg { width: 16px; height: 16px; flex-shrink: 0; }

.sidebar-cta {
  background: var(--blue);
  border: none;
  color: var(--white);
}

.sidebar-cta .sidebar-card__title { color: var(--white); border-bottom-color: rgba(255,255,255,0.2); }
.sidebar-cta p { color: rgba(255,255,255,0.8); font-size: 14px; margin-bottom: 16px; }
.sidebar-cta .btn { width: 100%; margin-bottom: 8px; }

/* ========== ABOUT PAGE ========== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img { width: 100%; height: auto; }

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.about-stat {
  text-align: center;
  padding: 28px 16px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
}

.about-stat__value {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 4px;
}

.about-stat__label { font-size: 13px; color: var(--gray-500); }

/* ========== CONTACT PAGE ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-info-card {
  display: flex;
  gap: 14px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  transition: border-color 0.2s;
}

.contact-info-card:hover { border-color: var(--blue-100); }

.contact-info-card__icon {
  width: 42px;
  height: 42px;
  background: var(--blue-50);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-card__icon svg { width: 20px; height: 20px; color: var(--blue); }
.contact-info-card h4 { font-size: 14px; margin-bottom: 4px; }
.contact-info-card p { font-size: 13px; color: var(--gray-500); }
.contact-info-card a { color: var(--blue); }
.contact-info-card a:hover { color: var(--blue-dark); }

.contact-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: 6px;
  background: var(--white);
  color: var(--gray-800);
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-50);
}

.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Map */
.map-container {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  aspect-ratio: 16/7;
}

.map-container iframe { width: 100%; height: 100%; border: none; }

/* ========== FOOTER ========== */
.footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.65);
  padding: 64px 0 24px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer__logo-wrap {
  background: var(--white);
  display: inline-block;
  padding: 10px 16px;
  border-radius: var(--radius);
  margin-bottom: 16px;
}

.footer__logo-wrap img { height: 36px; width: auto; }

.footer__desc {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
  max-width: 300px;
}

.footer__social {
  display: flex;
  gap: 10px;
}

.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.footer__social a:hover { background: var(--blue); border-color: var(--blue); }
.footer__social svg { width: 16px; height: 16px; color: rgba(255,255,255,0.7); }

.footer__col-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 16px;
}

.footer__links a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  padding: 5px 0;
  transition: color 0.15s;
}

.footer__links a:hover { color: var(--blue-light); }

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
}

.footer__contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--blue-light);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer__contact-item a {
  color: rgba(255,255,255,0.5);
  transition: color 0.15s;
}

.footer__contact-item a:hover { color: var(--blue-light); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__copyright { font-size: 13px; color: rgba(255,255,255,0.3); }

.footer__legal { display: flex; gap: 20px; }
.footer__legal a { font-size: 13px; color: rgba(255,255,255,0.3); transition: color 0.15s; }
.footer__legal a:hover { color: rgba(255,255,255,0.7); }

/* ========== EMERGENCY STRIP ========== */
.emergency-strip {
  background: var(--orange);
  padding: 16px 0;
  text-align: center;
}

.emergency-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--white);
  font-family: var(--font-heading);
}

.emergency-strip__label { font-weight: 600; font-size: 15px; }

.emergency-strip__phone {
  font-weight: 800;
  font-size: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
}

.emergency-strip__phone svg { width: 20px; height: 20px; }

.emergency-strip__note { font-size: 13px; opacity: 0.85; }

/* ========== REBATE TAGS ========== */
.rebate-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.rebate-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.rebate-card:hover {
  border-color: var(--blue-100);
  box-shadow: var(--shadow-sm);
}

.rebate-card__icon {
  width: 40px;
  height: 40px;
  background: var(--blue-50);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rebate-card__icon svg { width: 18px; height: 18px; color: var(--blue); }
.rebate-card h4 { font-size: 14px; margin-bottom: 4px; }
.rebate-card p { font-size: 13px; color: var(--gray-500); }

/* ========== HOMEPAGE INTRO ========== */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-loader__logo {
  height: 72px;
  width: auto;
  opacity: 0;
  animation: intro-logo 0.7s 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes intro-logo {
  0% { opacity: 0; transform: scale(0.85) translateY(12px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

.page-loader__line {
  width: 0;
  height: 2px;
  background: var(--blue);
  margin-top: 24px;
  border-radius: 2px;
  animation: intro-line 0.6s 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes intro-line {
  from { width: 0; }
  to { width: 100px; }
}

.page-loader__tagline {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-top: 16px;
  opacity: 0;
  animation: intro-tagline 0.5s 1.1s ease forwards;
}

@keyframes intro-tagline {
  0% { opacity: 0; transform: translateY(6px); letter-spacing: 0.35em; }
  100% { opacity: 1; transform: translateY(0); letter-spacing: 0.2em; }
}

/* Exit */
.page-loader--exit {
  animation: intro-fade-out 0.8s 0.2s ease forwards;
  pointer-events: none;
}

.page-loader--exit .page-loader__inner {
  animation: intro-content-out 0.5s ease forwards;
}

@keyframes intro-content-out {
  to { opacity: 0; transform: translateY(-15px); }
}

@keyframes intro-fade-out {
  to { opacity: 0; }

/* Page entrance after loader */
.page-enter .topbar { animation: page-slide-down 0.5s 0.1s ease both; }
.page-enter .nav { animation: page-slide-down 0.4s 0.15s ease both; }
.page-enter .hero,
.page-enter .page-hero { animation: page-fade-up 0.6s 0.2s ease both; }
.page-enter .hero__content { animation: page-fade-up 0.6s 0.3s ease both; }
.page-enter .hero__image { animation: page-fade-up 0.7s 0.45s ease both; }
.page-enter .trust-bar { animation: page-fade-up 0.5s 0.5s ease both; }

@keyframes page-slide-down {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes page-fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========== SCROLL ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal--visible { opacity: 1; transform: translateY(0); }
.reveal--delay-1 { transition-delay: 80ms; }
.reveal--delay-2 { transition-delay: 160ms; }
.reveal--delay-3 { transition-delay: 240ms; }
.reveal--delay-4 { transition-delay: 320ms; }
.reveal--delay-5 { transition-delay: 400ms; }
.reveal--delay-6 { transition-delay: 480ms; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1280px) {
  .nav__link { font-size: 12px; padding: 8px 6px; }
  .nav__dropdown-trigger svg { width: 12px; height: 12px; }
}

@media (max-width: 1024px) {
  .nav__links, .nav__right { display: none; }
  .nav__hamburger { display: flex; }
  .nav__mobile { display: block; }

  .hero__grid { grid-template-columns: 1fr; }
  .hero__image { display: none; }
  .hero__title { font-size: 2.25rem; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .rebate-grid { grid-template-columns: 1fr; }

  .trust-bar__inner { gap: 20px; }
  .trust-bar__item { font-size: 12px; }
  .trust-bar__icon { width: 32px; height: 32px; }
  .trust-bar__icon svg { width: 16px; height: 16px; }

  .emergency-strip__inner { flex-direction: column; gap: 8px; }
}

@media (max-width: 768px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.2rem; }
  .section { padding: 48px 0; }
  .section-header { margin-bottom: 32px; }

  .hero { padding: 40px 0 36px; }
  .hero__title { font-size: 1.75rem; }
  .hero__text { font-size: 15px; }
  .hero__stats { gap: 16px; flex-wrap: wrap; }
  .hero__stat-value { font-size: 1.25rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; text-align: center; }

  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 28px; }
  .blog-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .about-stat { padding: 20px 8px; }
  .about-stat__value { font-size: 1.75rem; }
  .contact-info-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .cta-banner { padding: 36px 20px; border-radius: var(--radius-lg); }
  .cta-banner h2 { font-size: 1.4rem; }
  .cta-banner p { font-size: 15px; }
  .cta-banner__phone { font-size: 1.2rem; }

  .page-hero { padding: 32px 0 28px; }
  .page-hero__title { font-size: 1.5rem; }
  .page-hero__text { font-size: 14px; }

  .benefit-card { padding: 20px; flex-direction: column; }
  .benefit-card__icon { width: 40px; height: 40px; }
  .benefit-card__icon svg { width: 20px; height: 20px; }

  .faq-item__question { padding: 14px 16px; font-size: 15px; }
  .faq-item__answer-inner { padding: 0 16px 14px; font-size: 14px; }

  .service-content h2 { font-size: 1.35rem; margin-top: 28px; }
  .sidebar-card { padding: 20px; }

  .topbar { display: none; }

  .nav__inner { height: 64px; }
  .nav__logo img { height: 40px; }

  .trust-bar { padding: 16px 0; }
  .trust-bar__inner { gap: 12px; justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; -webkit-overflow-scrolling: touch; }
  .trust-bar__item { flex-shrink: 0; }

  .page-loader__logo { height: 48px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .about-stats { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .hero__stats { flex-direction: column; gap: 12px; border-top: none; padding-top: 0; }
  .nav__inner { height: 56px; padding: 0 16px; }
  .nav__logo img { height: 36px; }
  .section { padding: 40px 0; }
  .footer { padding: 48px 0 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .page-loader { display: none; }
  .page-enter .topbar,
  .page-enter .nav,
  .page-enter .hero,
  .page-enter .page-hero,
  .page-enter .hero__content,
  .page-enter .hero__image,
  .page-enter .trust-bar { animation: none; opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
