/* ===================================================
   NEIGHBOURHOOD PLUMBING — Premium Agency Stylesheet
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@400;600;700;800&display=swap');

/* === VARIABLES === */
:root {
  --navy: #0d1f3c;
  --navy-dark: #080f1e;
  --navy-mid: #132748;
  --blue: #1a7fe8;
  --blue-light: #4fa3f7;
  --blue-glow: rgba(26,127,232,0.25);
  --orange: #f97316;
  --orange-dark: #ea6507;
  --white: #ffffff;
  --off-white: #f0f4f8;
  --grey-light: #e2e8f0;
  --grey: #94a3b8;
  --text-dark: #1e293b;
  --text-mid: #475569;
  --success: #10b981;
  --font-main: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
  --shadow-blue: 0 8px 32px rgba(26,127,232,0.3);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* === TYPOGRAPHY === */
h1,h2,h3,h4,h5 { font-family: var(--font-heading); line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }
p { line-height: 1.75; color: var(--text-mid); }

/* === LAYOUT === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.text-center { text-align: center; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-1 { gap: 1rem; }
.gap-2 { gap: 2rem; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: var(--font-main);
  letter-spacing: 0.01em;
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(249,115,22,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249,115,22,0.5);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-lg { padding: 1.1rem 2.5rem; font-size: 1.05rem; }

/* === TOP BAR === */
.topbar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  padding: 0.6rem 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.topbar a { color: rgba(255,255,255,0.8); transition: color 0.2s; }
.topbar a:hover { color: var(--orange); }
.topbar-items { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.topbar-item { display: flex; align-items: center; gap: 0.4rem; }
.topbar-item svg { width: 14px; height: 14px; opacity: 0.7; }
.topbar-badge {
  background: var(--success);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* === NAVIGATION === */
.nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--blue), #1557b0);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo-icon svg { width: 26px; height: 26px; fill: white; }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: white;
  line-height: 1;
}
.nav-logo-sub {
  font-size: 0.7rem;
  color: var(--blue-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link {
  color: rgba(255,255,255,0.8);
  padding: 0.5rem 0.875rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}
.nav-link:hover, .nav-link.active {
  color: white;
  background: rgba(255,255,255,0.08);
}
.nav-cta { display: flex; align-items: center; gap: 1rem; }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--orange);
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
}
.nav-phone:hover { color: white; }
.nav-phone svg { width: 16px; height: 16px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none;
  background: var(--navy-dark);
  padding: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  color: rgba(255,255,255,0.8);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--orange); }
.mobile-menu .btn { margin-top: 1rem; width: 100%; justify-content: center; }

/* === HERO === */
.hero {
  min-height: 85vh;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-mid) 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
#hero-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
}
.hero-bg-pattern {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(26,127,232,0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(26,127,232,0.08) 0%, transparent 40%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 6rem 0 5rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 4rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(26,127,232,0.15);
  border: 1px solid rgba(26,127,232,0.3);
  color: var(--blue-light);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-badge span { width: 6px; height: 6px; background: var(--blue-light); border-radius: 50%; animation: pulse 2s infinite; }
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 em { font-style: normal; color: var(--blue-light); }
.hero-desc {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero-stat {}
.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hero-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
}
.hero-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.hero-card-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--blue), #1557b0);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card-icon svg { width: 28px; height: 28px; fill: white; }
.hero-card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}
.hero-card-sub { font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.hero-features { display: flex; flex-direction: column; gap: 0.875rem; }
.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.hero-feature-icon {
  width: 36px;
  height: 36px;
  background: rgba(26,127,232,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-feature-icon svg { width: 18px; height: 18px; fill: var(--blue-light); }
.hero-feature-text {}
.hero-feature-title { font-size: 0.9rem; font-weight: 600; color: var(--white); }
.hero-feature-desc { font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.hero-card-cta {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-card-cta .btn { width: 100%; justify-content: center; }

/* WATER DROP ANIMATION */
.water-drops {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.drop {
  position: absolute;
  width: 6px;
  height: 10px;
  background: linear-gradient(to bottom, rgba(79,163,247,0), rgba(79,163,247,0.6));
  border-radius: 50% 50% 50% 50% / 20% 20% 80% 80%;
  animation: drip linear infinite;
  opacity: 0;
}
@keyframes drip {
  0% { opacity: 0; transform: translateY(0) scaleY(1); }
  10% { opacity: 0.8; }
  80% { opacity: 0.6; transform: translateY(var(--drop-height, 200px)) scaleY(1.3); }
  100% { opacity: 0; transform: translateY(var(--drop-height, 250px)) scaleY(0.5); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

/* === TRUST BAR === */
.trust-bar {
  background: var(--navy-dark);
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.trust-bar-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  font-weight: 500;
}
.trust-item svg { width: 22px; height: 22px; fill: var(--blue-light); flex-shrink: 0; }
.trust-item strong { color: white; }

/* === SECTION LABELS === */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}
.section-title { margin-bottom: 1rem; color: var(--navy); }
.section-desc { font-size: 1.05rem; color: var(--text-mid); max-width: 600px; }
.section-header { margin-bottom: 3.5rem; }
.section-header.center { text-align: center; }
.section-header.center .section-label { justify-content: center; }
.section-header.center .section-label::before { display: none; }
.section-header.center .section-label::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}
.section-header.center .section-desc { margin: 0 auto; }

/* === SERVICES CARDS === */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--grey-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(26,127,232,0.1), rgba(26,127,232,0.05));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--blue), #1557b0);
}
.service-icon svg { width: 28px; height: 28px; fill: var(--blue); transition: fill 0.3s; }
.service-card:hover .service-icon svg { fill: white; }
.service-card h3 { margin-bottom: 0.75rem; color: var(--navy); }
.service-card p { font-size: 0.9rem; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--blue);
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 1rem;
  transition: gap 0.2s;
}
.service-link:hover { gap: 0.7rem; }

/* === PROMO STRIP === */
.promo-strip {
  background: linear-gradient(135deg, var(--orange), #dc5500);
  padding: 2rem 0;
}
.promo-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.promo-items { display: flex; gap: 3rem; flex-wrap: wrap; }
.promo-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: white;
}
.promo-item svg { width: 28px; height: 28px; fill: rgba(255,255,255,0.8); }
.promo-item-title { font-family: var(--font-heading); font-weight: 700; font-size: 1rem; }
.promo-item-sub { font-size: 0.8rem; opacity: 0.8; }
.promo-strip .btn {
  background: white;
  color: var(--orange);
  box-shadow: none;
  white-space: nowrap;
}
.promo-strip .btn:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.2); }

/* === WHY US === */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.why-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  padding: 3rem 2.5rem;
}
.why-visual-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(circle at 30% 70%, rgba(26,127,232,0.2) 0%, transparent 50%);
}
.why-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  position: relative;
}
.why-stat-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}
.why-stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}
.why-stat-num span { font-size: 1.2rem; color: var(--blue-light); }
.why-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 0.5rem; }
.why-features { display: flex; flex-direction: column; gap: 1.25rem; }
.why-feature {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.why-feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(26,127,232,0.1), rgba(26,127,232,0.05));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-feature-icon svg { width: 24px; height: 24px; fill: var(--blue); }
.why-feature-content h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.25rem; color: var(--navy); }
.why-feature-content p { font-size: 0.875rem; }

/* === REVIEWS === */
.reviews-section { background: var(--off-white); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.review-card {
  background: white;
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid var(--grey-light);
  transition: var(--transition);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review-stars { display: flex; gap: 3px; margin-bottom: 0.75rem; }
.review-stars svg { width: 16px; height: 16px; fill: #f59e0b; }
.review-text {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1rem;
  font-style: italic;
}
.reviewer { display: flex; align-items: center; gap: 0.75rem; }
.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #1557b0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: white;
  flex-shrink: 0;
}
.reviewer-name { font-size: 0.9rem; font-weight: 600; color: var(--navy); }
.reviewer-date { font-size: 0.75rem; color: var(--grey); }
.google-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.google-badge svg { width: 14px; height: 14px; }
.google-badge span { font-size: 0.75rem; color: var(--grey); }

.rating-summary {
  display: flex;
  align-items: center;
  gap: 3rem;
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem 3rem;
  margin-bottom: 3rem;
  border: 1px solid var(--grey-light);
  flex-wrap: wrap;
}
.rating-main { text-align: center; }
.rating-number {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.rating-stars { display: flex; gap: 4px; justify-content: center; margin: 0.5rem 0; }
.rating-stars svg { width: 20px; height: 20px; fill: #f59e0b; }
.rating-count { font-size: 0.85rem; color: var(--grey); }
.rating-divider { width: 1px; height: 80px; background: var(--grey-light); flex-shrink: 0; }
.rating-breakdown { flex: 1; }
.rating-bar-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.5rem; }
.rating-bar-label { font-size: 0.8rem; color: var(--grey); width: 30px; text-align: right; flex-shrink: 0; }
.rating-bar-track { flex: 1; height: 8px; background: var(--grey-light); border-radius: 4px; overflow: hidden; }
.rating-bar-fill { height: 100%; background: #f59e0b; border-radius: 4px; }
.rating-bar-pct { font-size: 0.8rem; color: var(--grey); width: 35px; flex-shrink: 0; }

/* === EMERGENCY CTA === */
.emergency-section {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.emergency-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(circle at 50% 50%, rgba(249,115,22,0.1) 0%, transparent 60%);
}
.emergency-section .container { position: relative; }
.emergency-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(249,115,22,0.15);
  border: 1px solid rgba(249,115,22,0.3);
  color: var(--orange);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.emergency-section h2 { color: white; margin-bottom: 0.75rem; }
.emergency-section p { color: rgba(255,255,255,0.6); margin-bottom: 2rem; }
.emergency-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* === AREAS === */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.75rem;
}
.area-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--off-white);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: var(--transition);
  border: 1px solid transparent;
}
.area-pill svg { width: 14px; height: 14px; fill: var(--blue); flex-shrink: 0; }
.area-pill:hover { background: white; border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }

/* === FOOTER === */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand {}
.footer-logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.footer-logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--blue), #1557b0);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-logo-icon svg { width: 22px; height: 22px; fill: white; }
.footer-logo-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: white;
}
.footer-desc { font-size: 0.875rem; line-height: 1.7; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.footer-social-link:hover { background: var(--blue); }
.footer-social-link svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.7); }
.footer-social-link:hover svg { fill: white; }
.footer-col h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-links a:hover { color: white; }
.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
  font-size: 0.875rem;
}
.footer-contact-item svg { width: 16px; height: 16px; fill: var(--blue-light); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,0.7); }
.footer-contact-item a:hover { color: white; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom a { color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-bottom a:hover { color: white; }

/* === PAGE HEADER === */
.page-header {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(circle at 80% 50%, rgba(26,127,232,0.12) 0%, transparent 50%);
}
.page-header .container { position: relative; }
.page-header h1 { color: white; margin-bottom: 0.75rem; }
.page-header p { color: rgba(255,255,255,0.6); font-size: 1.05rem; max-width: 600px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--blue-light); }
.breadcrumb svg { width: 12px; height: 12px; fill: rgba(255,255,255,0.3); }

/* === SERVICE DETAIL === */
.service-detail { padding: 4rem 0; }
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
}
.service-list-full { display: flex; flex-direction: column; gap: 2.5rem; }
.service-full-item {
  padding: 2rem;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--grey-light);
  transition: var(--transition);
}
.service-full-item:hover { box-shadow: var(--shadow-md); border-color: var(--blue); }
.service-full-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1rem;
}
.service-full-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--blue), #1557b0);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-full-icon svg { width: 26px; height: 26px; fill: white; }
.service-full-item h3 { color: var(--navy); }
.service-full-item p { font-size: 0.9rem; margin-bottom: 1rem; }
.service-checklist { display: flex; flex-direction: column; gap: 0.5rem; }
.service-check {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--text-mid);
}
.service-check svg { width: 16px; height: 16px; fill: var(--success); flex-shrink: 0; }
.sidebar-card {
  background: white;
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid var(--grey-light);
  margin-bottom: 1.5rem;
}
.sidebar-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--grey-light);
}
.sidebar-cta {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  color: white;
}
.sidebar-cta h4 { color: white; border-bottom-color: rgba(255,255,255,0.1); margin-bottom: 1rem; }
.sidebar-cta p { color: rgba(255,255,255,0.6); font-size: 0.875rem; margin-bottom: 1.5rem; }
.sidebar-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}
.sidebar-phone svg { width: 20px; height: 20px; fill: var(--orange); }

/* === ABOUT === */
.about-lead { font-size: 1.15rem; line-height: 1.8; margin-bottom: 1.5rem; }
.value-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.value-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--grey-light);
  text-align: center;
  transition: var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(26,127,232,0.1), rgba(26,127,232,0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.value-icon svg { width: 28px; height: 28px; fill: var(--blue); }
.value-card h3 { font-size: 1rem; margin-bottom: 0.5rem; color: var(--navy); }
.value-card p { font-size: 0.875rem; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.team-card { text-align: center; }
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #1557b0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin: 0 auto 1rem;
}
.team-card h3 { font-size: 1rem; color: var(--navy); margin-bottom: 0.25rem; }
.team-card p { font-size: 0.8rem; }
.accred-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1rem; }
.accred-card {
  background: white;
  border: 2px solid var(--grey-light);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition);
}
.accred-card:hover { border-color: var(--blue); transform: translateY(-2px); }
.accred-card svg { width: 36px; height: 36px; fill: var(--blue); margin: 0 auto 0.75rem; }
.accred-card span { font-size: 0.8rem; font-weight: 600; color: var(--navy); display: block; }

/* === CONTACT === */
.contact-grid { display: grid; grid-template-columns: 1fr 400px; gap: 4rem; }
.contact-form-wrap {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--grey-light);
  box-shadow: var(--shadow-sm);
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--grey-light);
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: var(--transition);
  outline: none;
  background: var(--off-white);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue);
  background: white;
  box-shadow: 0 0 0 3px rgba(26,127,232,0.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit .btn { width: 100%; justify-content: center; }
.contact-info {}
.contact-info-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--grey-light);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(26,127,232,0.1), rgba(26,127,232,0.05));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 20px; height: 20px; fill: var(--blue); }
.contact-info-title { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--grey); margin-bottom: 0.25rem; }
.contact-info-value { font-weight: 600; color: var(--navy); }
.contact-info-value a { color: var(--navy); }
.contact-info-value a:hover { color: var(--blue); }
.map-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--off-white), #e2eaef);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
  border: 1px solid var(--grey-light);
  overflow: hidden;
  position: relative;
}
.map-placeholder svg { width: 48px; height: 48px; fill: var(--grey); }
.map-placeholder span {
  position: absolute;
  bottom: 1rem;
  font-size: 0.8rem;
  color: var(--grey);
}

/* === ANIMATIONS === */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* === PASSWORD GATE === */
.pw-gate {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy-dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.pw-card {
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 3rem;
  width: 100%;
  max-width: 420px;
  text-align: center;
}
.pw-logo {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--blue), #1557b0);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.pw-logo svg { width: 36px; height: 36px; fill: white; }
.pw-card h2 { color: white; font-size: 1.5rem; margin-bottom: 0.5rem; }
.pw-card p { color: rgba(255,255,255,0.5); font-size: 0.875rem; margin-bottom: 2rem; }
.pw-input {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: white;
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-align: center;
  outline: none;
  transition: var(--transition);
  font-family: var(--font-main);
  margin-bottom: 1rem;
}
.pw-input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,127,232,0.15); }
.pw-error { color: #f87171; font-size: 0.85rem; margin-bottom: 1rem; display: none; }
.pw-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(26,127,232,0.1);
  border: 1px solid rgba(26,127,232,0.2);
  color: var(--blue-light);
  padding: 0.4rem 0.875rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 1.5rem;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .value-cards { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.25rem; }
  .trust-bar-items { gap: 1.25rem; }
  .promo-items { gap: 1.25rem; }
  .promo-strip .container { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .rating-summary { flex-direction: column; gap: 1.5rem; }
  .rating-divider { display: none; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  h1 { font-size: 2rem; }
  .section { padding: 3.5rem 0; }
}
