/* =============================================
   Leadbeater & Sons - Main Stylesheet
   ============================================= */

/* === CSS Variables === */
:root {
  --navy: #0d2a4e;
  --navy-dark: #081c35;
  --navy-light: #1a3d6e;
  --orange: #b0b8c4;
  --orange-hover: #8f99a8;
  --white: #ffffff;
  --gray-light: #f4f6f9;
  --gray-mid: #e2e6ed;
  --gray-text: #5a6475;
  --dark-text: #1a2332;
  --font-main: 'Inter', 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.16);
  --radius: 8px;
  --radius-lg: 14px;
  --transition: 0.25s ease;
}

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

/* === Typography === */
h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.25; color: var(--navy); }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-align: center;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--dark-text);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(232,92,26,0.4);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-secondary:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-1px);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  transform: translateY(-1px);
}
.btn-lg { padding: 1rem 2.2rem; font-size: 1.1rem; }

/* === Layout === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-dark { background: var(--navy); color: var(--white); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-gray { background: var(--gray-light); }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-header p { font-size: 1.1rem; color: var(--gray-text); max-width: 640px; margin: 0.75rem auto 0; }
.section-label {
  display: inline-block;
  background: rgba(232,92,26,0.12);
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 30px;
  margin-bottom: 0.75rem;
}

/* === Header === */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.header-top {
  background: var(--navy-dark);
  padding: 0.45rem 0;
  font-size: 0.88rem;
}
.header-top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.header-top a { color: var(--gray-mid); transition: color var(--transition); }
.header-top a:hover { color: var(--white); }
.header-top-right { display: flex; gap: 1.5rem; align-items: center; }
.header-phone-top {
  color: var(--orange) !important;
  font-weight: 700;
  font-size: 1rem !important;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.header-main { padding: 0.9rem 0; }
.header-main-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
/* Legacy fallback (emoji icon + text) - kept for backward compat */
.logo-icon {
  width: 48px;
  height: 48px;
  background: var(--orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}
.logo-text { color: var(--white); }
.logo-text strong { display: block; font-size: 1.2rem; line-height: 1.2; }
.logo-text span { font-size: 0.78rem; color: var(--gray-mid); font-weight: 400; }

/* Navigation */
#site-nav ul { display: flex; align-items: center; gap: 0.25rem; }
#site-nav a {
  color: var(--gray-mid);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  transition: all var(--transition);
  display: block;
}
#site-nav a:hover,
#site-nav a.active { color: var(--white); background: rgba(255,255,255,0.1); }
.nav-cta a {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.1rem !important;
  border-radius: 6px;
}
.nav-cta a:hover { background: var(--orange-hover) !important; }

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* === Hero === */
#hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #1e4880 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://sspark.genspark.ai/cfimages?u1=jqtwDGldoUswzrkl8W8kyrJzmOsc3M1aaCzcLsFOBSISi49BUXSQAAf%2B0YG1AxADQe%2BiWO%2Bf6jva0H1RlTysZ9GQQIsDdK2SvaqQUpBLZGOQ3fAucCwcDkr4IKTA&u2=PiIWPsMX7ZJWHR72&width=2560');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,28,53,0.92) 0%, rgba(13,42,78,0.75) 55%, rgba(13,42,78,0.3) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.35rem 0.8rem;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}
.hero-badge .badge-dot {
  width: 7px; height: 7px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}
#hero h1 { color: var(--white); margin-bottom: 1.25rem; }
#hero h1 span { color: var(--orange); }
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  max-width: 580px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
  align-items: center;
}
.hero-phone {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 500;
}
.hero-phone .phone-number {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--orange);
}

/* === Emergency Bar === */
#emergency-bar {
  background: var(--navy-dark);
  border-top: 3px solid var(--orange);
  padding: 0.85rem 0;
}
.emergency-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: center;
}
.emergency-label {
  color: var(--orange);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.emergency-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.emergency-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gray-mid);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  transition: all var(--transition);
  white-space: nowrap;
}
.emergency-link:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

/* === Service Cards === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(232,92,26,0.2);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  background: rgba(13,42,78,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  transition: all var(--transition);
}
.service-card:hover .service-icon {
  background: var(--orange);
}
.service-card h3 { margin-bottom: 0.75rem; font-size: 1.15rem; }
.service-card p { color: var(--gray-text); font-size: 0.95rem; margin-bottom: 1.25rem; }
.service-link {
  color: var(--orange);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap var(--transition);
}
.service-link:hover { gap: 0.6rem; }

/* === Why Choose Us === */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.trust-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.trust-icon {
  width: 48px; height: 48px;
  background: rgba(232,92,26,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  color: var(--orange);
}
.trust-item h4 { margin-bottom: 0.35rem; font-size: 1rem; }
.trust-item p { color: var(--gray-text); font-size: 0.92rem; }

/* === Reviews === */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-mid);
  transition: box-shadow var(--transition);
}
.review-card:hover { box-shadow: var(--shadow-md); }
.review-stars { color: #f5a623; font-size: 1.05rem; margin-bottom: 0.75rem; }
.review-text { color: var(--gray-text); font-size: 0.95rem; margin-bottom: 1.25rem; font-style: italic; line-height: 1.7; }
.reviewer { display: flex; align-items: center; gap: 0.75rem; }
.reviewer-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.reviewer-info strong { display: block; font-size: 0.92rem; color: var(--navy); }
.reviewer-info span { font-size: 0.82rem; color: var(--gray-text); }

/* === Gallery === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--gray-mid);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item:nth-child(1) { grid-column: span 8; height: 280px; }
.gallery-item:nth-child(2) { grid-column: span 4; height: 280px; }
.gallery-item:nth-child(3),
.gallery-item:nth-child(4),
.gallery-item:nth-child(5) { grid-column: span 4; height: 220px; }
.gallery-item:nth-child(6) { grid-column: span 6; height: 220px; }
.gallery-item:nth-child(7) { grid-column: span 6; height: 220px; }
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(8,28,53,0.85) 0%, transparent 100%);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 1.5rem 1rem 0.75rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-caption { opacity: 1; }

/* === Service Area === */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.area-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all var(--transition);
}
.area-card:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.area-card .area-icon { font-size: 1.2rem; }
.area-card span { font-weight: 600; font-size: 0.95rem; }

/* === Featured Services (Profitable) === */
.featured-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}
.featured-service {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-mid);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.featured-service:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.featured-service-img {
  height: 200px;
  overflow: hidden;
  background: var(--gray-mid);
}
.featured-service-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.featured-service:hover .featured-service-img img { transform: scale(1.05); }
.featured-service-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.featured-service-body h3 { margin-bottom: 0.6rem; }
.featured-service-body p { color: var(--gray-text); font-size: 0.95rem; flex: 1; margin-bottom: 1.25rem; }

/* === CTA Banner === */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(232,92,26,0.15) 0%, transparent 70%);
}
.cta-banner .container { position: relative; }
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 600px; margin: 0 auto 2rem; }
.cta-buttons { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.cta-phone-big {
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  display: block;
  margin-bottom: 0.5rem;
  text-decoration: none;
  transition: color var(--transition);
}
.cta-phone-big:hover { color: #ff7a42; }

/* === FAQ === */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  text-align: left;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--gray-light); }
.faq-question.open { background: var(--navy); color: var(--white); }
.faq-chevron {
  font-size: 0.8rem;
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-question.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 1.2rem 1.5rem;
  background: var(--gray-light);
  color: var(--gray-text);
  font-size: 0.95rem;
  line-height: 1.7;
  border-top: 1px solid var(--gray-mid);
}
.faq-answer.open { display: block; }

/* === Contact Form === */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-mid);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid var(--gray-mid);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: var(--font-main);
  color: var(--dark-text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--navy); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-consent {
  font-size: 0.8rem;
  color: var(--gray-text);
  margin-top: 0.75rem;
  line-height: 1.5;
}
.trust-badges-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-mid);
}
.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-text);
}
.trust-badge-item .badge-icon { font-size: 1rem; color: var(--orange); }

/* === Contact Info Cards === */
.contact-info-grid {
  display: grid;
  gap: 1.25rem;
}
.contact-info-card {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-info-icon {
  width: 46px; height: 46px;
  background: var(--navy);
  color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-info-card h4 { font-size: 0.9rem; color: var(--gray-text); font-weight: 600; margin-bottom: 0.3rem; }
.contact-info-card p, .contact-info-card a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  transition: color var(--transition);
}
.contact-info-card a:hover { color: var(--orange); }

/* === Stats / Numbers === */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  text-align: center;
}
.stat-item { padding: 1rem; }
.stat-number {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--orange);
  display: block;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label { font-size: 0.9rem; color: rgba(255,255,255,0.75); font-weight: 500; }

/* === Page Hero (Inner pages) === */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 4rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(232,92,26,0.08);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 600px; margin-bottom: 1.5rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: var(--orange); }

/* === Content Sections for Inner Pages === */
.content-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}
.sidebar-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: sticky;
  top: 100px;
}
.sidebar-card h3 { color: var(--white); margin-bottom: 0.5rem; }
.sidebar-card p { color: rgba(255,255,255,0.8); font-size: 0.95rem; margin-bottom: 1.5rem; }
.sidebar-phone {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--orange);
  color: var(--white);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  transition: background var(--transition);
}
.sidebar-phone:hover { background: var(--orange-hover); }
.sidebar-links { display: flex; flex-direction: column; gap: 0.5rem; }
.sidebar-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.92rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: color var(--transition);
}
.sidebar-link:hover { color: var(--white); }
.sidebar-link:last-child { border-bottom: none; }

/* List styles for content */
.content-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 0.6rem;
  margin: 1.5rem 0;
}
.content-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--dark-text);
  padding: 0.5rem 0;
}
.content-list li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
}

/* === Footer === */
#site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.8);
}
.footer-main {
  padding: 4rem 1.25rem 2.5rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
}
.footer-brand p { font-size: 0.92rem; line-height: 1.7; margin: 1rem 0 1.5rem; color: rgba(255,255,255,0.65); }
.footer-col h4 {
  color: var(--white);
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-col a:hover { color: var(--white); }
.footer-phone {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--orange) !important;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}

/* === Sticky Mobile Call Button === */
#mobile-call-btn {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  background: var(--orange);
  color: var(--white);
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(232,92,26,0.5);
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  white-space: nowrap;
  animation: floatBtn 3s ease-in-out infinite;
}
@keyframes floatBtn {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-4px); }
}

/* === About Section === */
.about-highlight {
  background: var(--gray-light);
  border-left: 4px solid var(--orange);
  padding: 1.5rem 2rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 2rem 0;
}
.about-highlight p { color: var(--dark-text); font-size: 1.05rem; font-style: italic; margin: 0; }

/* === Responsive === */
@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr; }
  .content-with-sidebar { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
  .gallery-item:nth-child(1) { grid-column: span 12; }
  .gallery-item:nth-child(2) { grid-column: span 12; }
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5) { grid-column: span 4; }
}

@media (max-width: 768px) {
  #site-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--navy-dark); padding: 1rem; }
  #site-nav.open { display: block; }
  #site-nav ul { flex-direction: column; gap: 0; }
  #site-nav a { padding: 0.75rem 1rem; border-radius: 6px; }
  .menu-toggle { display: flex; }
  .header-top-inner { justify-content: center; }
  .header-top-inner > span:first-child { display: none; }
  .header-top-right { gap: 1rem; flex-wrap: nowrap; white-space: nowrap; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; padding: 1.5rem 1.25rem; }
  #mobile-call-btn { display: flex; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item { grid-column: span 1 !important; height: 180px !important; }
  .featured-services-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 500px) {
  .services-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { height: 220px !important; }
  .hero-badges { display: none; }
}

/* === Logo Images === */
.header-logo-img {
  height: 64px;
  width: auto;
  display: block;
  /* Logo is white on transparent/black - invert not needed on navy bg */
  filter: brightness(0) invert(1);
  transition: opacity var(--transition);
}
.header-logo-img:hover { opacity: 0.85; }

.footer-logo-img {
  height: 72px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

/* Hero logo watermark - always centered in hero */
.hero-logo-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  max-width: 600px;
  min-width: 280px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.06;
  pointer-events: none;
  user-select: none;
}

@media (max-width: 768px) {
  .header-logo-img { height: 48px; }
  .footer-logo-img { height: 56px; }
  .hero-logo-watermark { display: none; }
}

/* === Utility Classes === */
.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.text-navy { color: var(--navy); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.divider { height: 1px; background: var(--gray-mid); margin: 2rem 0; }
.success-msg {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-weight: 600;
  display: none;
  margin-top: 1rem;
}
