/* ============================================================
   UPRIGHT GARAGE DOORS — PREMIUM HOMEPAGE REDESIGN CSS
   Modern white-background, orange accent, premium local service
   ============================================================ */

/* --- Design Tokens --- */
:root {
  --white: #ffffff;
  --off-white: #f8f9fa;
  --light-gray: #f1f3f5;
  --medium-gray: #e9ecef;
  --border-gray: #dee2e6;
  --text-muted: #6c757d;
  --text-body: #343a40;
  --text-dark: #212529;
  --text-heading: #111827;
  --charcoal: #1f2937;
  --ink: #111827;
  --black: #000000;
  --orange: #f36b21;
  --orange-hover: #e05a10;
  --orange-light: #fff4ed;
  --orange-glow: rgba(243, 107, 33, 0.15);
  --green: #22c55e;
  --gold: #f59e0b;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --shadow-card: 0 2px 8px rgba(0,0,0,0.06), 0 8px 24px rgba(0,0,0,0.04);
  --shadow-card-hover: 0 8px 30px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container: 1200px;
  --container-wide: 1340px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange-hover); }

.skip-link {
  position: absolute; left: -9999px; top: auto;
  background: var(--orange); color: var(--white); padding: 8px 16px;
  z-index: 10000; border-radius: var(--radius-sm);
}
.skip-link:focus { left: 16px; top: 16px; }

/* --- Layout --- */
.hp-container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.hp-container-wide { max-width: var(--container-wide); margin: 0 auto; padding: 0 24px; }

.hp-section {
  padding: 100px 0;
  position: relative;
}

.hp-section-sm { padding: 60px 0; }

/* --- Typography --- */
.hp-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hp-eyebrow::before {
  content: '';
  width: 32px; height: 2px;
  background: var(--orange);
  display: inline-block;
}

.hp-heading-lg {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-heading);
  letter-spacing: -0.02em;
}

.hp-heading-xl {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-heading);
  letter-spacing: -0.03em;
}

.hp-heading-md {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-heading);
}

.hp-subtext {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.7;
}

.hp-section-header { text-align: center; margin-bottom: 60px; }
.hp-section-header .hp-subtext { margin: 16px auto 0; }

/* --- Buttons --- */
.hp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1.2;
  white-space: nowrap;
}

.hp-btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 4px 14px rgba(243, 107, 33, 0.35);
}
.hp-btn-primary:hover {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(243, 107, 33, 0.45);
  transform: translateY(-2px);
}

.hp-btn-outline {
  background: transparent;
  color: var(--text-heading);
  border-color: var(--border-gray);
}
.hp-btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-light);
  transform: translateY(-2px);
}

.hp-btn-white {
  background: var(--white);
  color: var(--text-heading);
  border-color: var(--white);
  box-shadow: var(--shadow-md);
}
.hp-btn-white:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  color: var(--orange);
}

.hp-btn-dark {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.hp-btn-dark:hover {
  background: var(--charcoal);
  transform: translateY(-2px);
  color: var(--white);
}

.hp-btn-lg { padding: 18px 40px; font-size: 1.1rem; }
.hp-btn-sm { padding: 10px 20px; font-size: 0.875rem; }

.hp-btn-group { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* --- Badge --- */
.hp-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange-light);
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  letter-spacing: 0.03em;
}
.hp-badge-dark {
  background: var(--ink);
  color: var(--white);
}

/* --- Cards --- */
.hp-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--medium-gray);
  overflow: hidden;
  transition: all var(--transition);
}
.hp-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
  border-color: var(--orange);
}

.hp-card-body { padding: 28px; }

.hp-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* --- Glass Card --- */
.hp-glass {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--radius-lg);
}

/* ============================================================
   SECTION 1: PREMIUM HERO
   ============================================================ */
.hp-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 40%, #111827 100%);
  overflow: hidden;
  padding: 120px 0 80px;
}

.hp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero-premium.jpg') center/cover no-repeat;
  opacity: 0.25;
}

.hp-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--white), transparent);
  z-index: 1;
}

.hp-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}

.hp-hero-content { color: var(--white); }

.hp-hero-content .hp-eyebrow { color: var(--orange); }
.hp-hero-content .hp-eyebrow::before { background: var(--orange); }

.hp-hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hp-hero-headline span { color: var(--orange); }

.hp-hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 32px;
}

.hp-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}

.hp-hero-badge svg { width: 16px; height: 16px; fill: var(--orange); }

/* Hero Quote Card */
.hp-hero-quote-card {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-xl);
  color: var(--text-heading);
}

.hp-hero-quote-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-heading);
}
.hp-hero-quote-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.hp-form-group { margin-bottom: 14px; }
.hp-form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-body);
  margin-bottom: 4px;
}
.hp-form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: var(--font-sans);
  background: var(--off-white);
  transition: border-color var(--transition);
  color: var(--text-heading);
}
.hp-form-input:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-glow);
}
.hp-form-select { appearance: auto; }

/* Stars */
.hp-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; }

/* ============================================================
   SECTION 2: TRUST BAR / STATS
   ============================================================ */
.hp-trust-bar {
  position: relative;
  z-index: 3;
  margin-top: -50px;
  padding-bottom: 40px;
}

.hp-trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid var(--medium-gray);
}

.hp-trust-item {
  text-align: center;
  padding: 32px 20px;
  border-right: 1px solid var(--medium-gray);
  transition: background var(--transition);
}
.hp-trust-item:last-child { border-right: none; }
.hp-trust-item:hover { background: var(--orange-light); }

.hp-trust-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  background: var(--orange-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hp-trust-icon svg { width: 24px; height: 24px; stroke: var(--orange); fill: none; stroke-width: 2; }

.hp-trust-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1;
  margin-bottom: 4px;
}

.hp-trust-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

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

.hp-service-card {
  background: var(--white);
  border: 1px solid var(--medium-gray);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
}
.hp-service-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-6px);
  border-color: var(--orange);
}

.hp-service-card-img {
  height: 200px;
  overflow: hidden;
}
.hp-service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.hp-service-card:hover .hp-service-card-img img { transform: scale(1.08); }

.hp-service-icon {
  width: 52px;
  height: 52px;
  background: var(--orange);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -26px;
  margin-left: 24px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(243, 107, 33, 0.3);
}
.hp-service-icon svg { width: 24px; height: 24px; stroke: var(--white); fill: none; stroke-width: 2; }

.hp-service-card-body {
  padding: 16px 24px 28px;
}
.hp-service-card-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 8px;
}
.hp-service-card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.hp-link-arrow {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.hp-link-arrow:hover { gap: 10px; color: var(--orange-hover); }

/* ============================================================
   SECTION 4: WHY CHOOSE US
   ============================================================ */
.hp-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hp-why-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hp-why-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.hp-why-list { list-style: none; }
.hp-why-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--medium-gray);
  transition: all var(--transition);
}
.hp-why-item:last-child { border-bottom: none; }
.hp-why-item:hover { padding-left: 8px; }

.hp-why-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--orange-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.hp-why-item:hover .hp-why-icon { background: var(--orange); }
.hp-why-icon svg { width: 20px; height: 20px; stroke: var(--orange); fill: none; stroke-width: 2; transition: stroke var(--transition); }
.hp-why-item:hover .hp-why-icon svg { stroke: var(--white); }

.hp-why-text h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 4px;
}
.hp-why-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================================
   SECTION 5: PROCESS / HOW IT WORKS
   ============================================================ */
.hp-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.hp-process-grid::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(to right, var(--orange), var(--orange-light), var(--orange));
  z-index: 0;
}

.hp-process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.hp-process-number {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: var(--white);
  border: 3px solid var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--orange);
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
}
.hp-process-step:hover .hp-process-number {
  background: var(--orange);
  color: var(--white);
  transform: scale(1.1);
}

.hp-process-step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 8px;
}
.hp-process-step p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 240px;
  margin: 0 auto;
}

/* ============================================================
   SECTION 6: BEFORE & AFTER
   ============================================================ */
.hp-ba-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hp-ba-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hp-ba-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* ============================================================
   SECTION 7: BRANDS CAROUSEL
   ============================================================ */
.hp-brands-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  padding: 20px 0;
}

.hp-brand-logo {
  height: 44px;
  opacity: 0.45;
  filter: grayscale(100%);
  transition: all var(--transition);
}
.hp-brand-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.1);
}

.hp-brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--white);
  border: 1px solid var(--medium-gray);
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-heading);
  transition: all var(--transition);
}
.hp-brand-pill:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  color: var(--orange);
}

/* ============================================================
   SECTION 8: SERVICE AREA MAP
   ============================================================ */
.hp-map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.hp-map-embed {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--medium-gray);
}
.hp-map-embed iframe {
  width: 100%;
  height: 420px;
  display: block;
}

.hp-area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hp-area-tag {
  padding: 10px 20px;
  background: var(--white);
  border: 1px solid var(--medium-gray);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-heading);
  transition: all var(--transition);
}
.hp-area-tag:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  transform: translateY(-2px);
}

/* ============================================================
   SECTION 9: TESTIMONIALS
   ============================================================ */
.hp-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.hp-testimonial-card {
  background: var(--white);
  border: 1px solid var(--medium-gray);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
  position: relative;
}
.hp-testimonial-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}
.hp-testimonial-card::before {
  content: '"';
  font-size: 4rem;
  font-weight: 800;
  color: var(--orange-light);
  position: absolute;
  top: 16px;
  right: 24px;
  line-height: 1;
  font-family: Georgia, serif;
}

.hp-testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.hp-testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.hp-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hp-testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--orange);
  font-size: 1rem;
}

.hp-testimonial-name { font-weight: 600; font-size: 0.9rem; color: var(--text-heading); }
.hp-testimonial-location { font-size: 0.8rem; color: var(--text-muted); }
.hp-verified { color: var(--green); font-size: 0.75rem; font-weight: 600; }

/* ============================================================
   SECTION 10: FAQ
   ============================================================ */
.hp-faq-list { max-width: 800px; margin: 0 auto; }

.hp-faq-item {
  border: 1px solid var(--medium-gray);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--transition);
}
.hp-faq-item:hover { border-color: var(--orange); }

.hp-faq-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 24px;
  background: var(--white);
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-heading);
  text-align: left;
  line-height: 1.4;
  transition: background var(--transition);
}
.hp-faq-trigger:hover { background: var(--off-white); }

.hp-faq-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--orange-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--orange);
  transition: transform var(--transition);
  font-weight: 400;
}

.hp-faq-item.active .hp-faq-icon { transform: rotate(45deg); }
.hp-faq-item.active .hp-faq-trigger { background: var(--orange-light); }

.hp-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.hp-faq-item.active .hp-faq-answer {
  max-height: 500px;
}

.hp-faq-answer-inner {
  padding: 0 24px 24px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-body);
}

/* ============================================================
   SECTION 11: FINAL CTA
   ============================================================ */
.hp-final-cta {
  background: linear-gradient(135deg, #111827 0%, #1e293b 50%, #0f172a 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 100px 0;
}
.hp-final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero-technician.jpg') center/cover no-repeat;
  opacity: 0.15;
}

.hp-final-cta-inner {
  position: relative;
  z-index: 1;
}

.hp-final-cta .hp-heading-xl { color: var(--white); margin-bottom: 16px; }
.hp-final-cta .hp-subtext { color: rgba(255,255,255,0.7); margin: 0 auto 32px; }

/* ============================================================
   SECTION 12: FOOTER
   ============================================================ */
.hp-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}

.hp-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.hp-footer-brand .brand-copy { display: block; margin-bottom: 16px; }
.hp-footer-brand .brand-copy b { color: var(--white); font-size: 1.5rem; display: block; }
.hp-footer-brand .brand-copy small { color: var(--orange); font-size: 0.75rem; letter-spacing: 0.1em; }
.hp-footer-brand > p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 16px; }

.hp-footer h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.hp-footer ul { list-style: none; }
.hp-footer ul li { margin-bottom: 10px; }
.hp-footer ul a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.hp-footer ul a:hover { color: var(--orange); }

.hp-footer-phone {
  display: block;
  color: var(--orange);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.hp-footer-hours {
  font-size: 0.85rem;
  line-height: 1.8;
}

.hp-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.hp-footer-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 16px;
}
.hp-footer-map iframe { width: 100%; height: 160px; display: block; }

/* ============================================================
   SECTION: BACKGROUND VARIATIONS
   ============================================================ */
.hp-bg-light { background: var(--off-white); }
.hp-bg-orange-soft { background: var(--orange-light); }
.hp-bg-gradient {
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}

/* ============================================================
   MOBILE STICKY CTA
   ============================================================ */
.hp-mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--medium-gray);
  padding: 12px 16px;
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}

.hp-mobile-sticky-inner {
  display: flex;
  gap: 10px;
}
.hp-mobile-sticky-inner .hp-btn { flex: 1; text-align: center; font-size: 0.9rem; padding: 12px 16px; }

/* Floating Quote Button */
.hp-float-quote {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(243, 107, 33, 0.4);
  z-index: 998;
  transition: all var(--transition);
  color: var(--white);
  cursor: pointer;
  text-decoration: none;
  border: none;
}
.hp-float-quote:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(243, 107, 33, 0.5);
  color: var(--white);
}
.hp-float-quote svg { width: 24px; height: 24px; stroke: var(--white); fill: none; stroke-width: 2; }

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

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hp-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hp-hero-quote-card { max-width: 480px; }
  .hp-services-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-why-grid { grid-template-columns: 1fr; gap: 40px; }
  .hp-why-img img { height: 360px; }
  .hp-process-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .hp-process-grid::before { display: none; }
  .hp-ba-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .hp-map-grid { grid-template-columns: 1fr; }
  .hp-testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-trust-grid { grid-template-columns: repeat(3, 1fr); }
  .hp-trust-item:nth-child(3) { border-right: none; }
  .hp-footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hp-section { padding: 64px 0; }
  .hp-hero { min-height: auto; padding: 100px 0 60px; }
  .hp-hero-headline { font-size: 2rem; }
  .hp-hero-sub { font-size: 1rem; }
  .hp-services-grid { grid-template-columns: 1fr; }
  .hp-process-grid { grid-template-columns: 1fr; gap: 24px; }
  .hp-trust-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-trust-item { padding: 20px 16px; }
  .hp-testimonials-grid { grid-template-columns: 1fr; }
  .hp-footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hp-footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hp-mobile-sticky { display: block; }
  .hp-float-quote { bottom: 80px; }
  .hp-container { padding: 0 16px; }
}

@media (max-width: 480px) {
  .hp-trust-grid { grid-template-columns: 1fr; }
  .hp-hero-badges { gap: 6px; }
  .hp-hero-badge { font-size: 0.75rem; padding: 6px 10px; }
  .hp-btn-group { flex-direction: column; width: 100%; }
  .hp-btn-group .hp-btn { width: 100%; text-align: center; }
}

/* Subpage Hero Header Dark Mode Fix (Site-Wide) */
[class*="-hero"] .hp-heading-xl,
[class*="-hero"] h1,
header[class*="-hero"] h1,
section[class*="-hero"] h1,
.subpage-hero .hp-heading-xl,
.subpage-hero h1 {
  color: #ffffff !important;
}

