/**
 * Home Concept v9 - Experimental Homepage Styles
 * NFD Repairs - Orbital device hero with rotating headlines
 */

/* ===== Variables ===== */
:root {
  --hc-green: #009B4D;
  --hc-green-deep: #007A3D;
  --hc-green-light: #00B95B;
  --hc-green-soft: rgba(0, 155, 77, 0.10);
  --hc-yellow: #FFCC00;
  --hc-yellow-soft: rgba(255, 204, 0, 0.12);
  --hc-ivory: #FAF5E9;
  --hc-ivory-soft: rgba(250, 245, 233, 0.6);
  --hc-text: #333333;
  --hc-text-muted: #6c757d;
  --hc-text-medium: #495057;
  --hc-card-bg: #ffffff;
  --hc-radius: 22px;
  --hc-ease: cubic-bezier(0.4, 0.0, 0.2, 1);

  /* Orbit parameters */
  --hc-orbit-x: 200px;
  --hc-orbit-y: 80px;
  --hc-device-phone: 180px;
  --hc-device-tablet: 200px;
  --hc-device-laptop: 260px;
}

/* ===== Hero Section ===== */
.hc-hero {
  position: relative;
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
  padding: 0 0 30px;
  background:
    linear-gradient(135deg, var(--hc-ivory) 0%, #ffffff 55%, var(--hc-ivory) 100%);
}

/* ===== Lighting Layers ===== */
.hc-light {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
}

.hc-light--green {
  top: 10%;
  left: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 155, 77, 0.12) 0%, transparent 70%);
  animation: hc-glow-breath 12s ease-in-out infinite;
}

.hc-light--orange {
  top: 20%;
  right: 10%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(255, 150, 80, 0.14) 0%, transparent 70%);
  animation: hc-glow-breath 15s ease-in-out infinite 2s;
}

.hc-light--spotlight {
  top: 50%;
  left: 70%;
  width: 300px;
  height: 300px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, transparent 65%);
  animation: hc-glow-breath 10s ease-in-out infinite 1s;
}

@keyframes hc-glow-breath {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

.hc-light--spotlight {
  animation-name: hc-spotlight-breath;
}

@keyframes hc-spotlight-breath {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.9; transform: translate(-50%, -50%) scale(1.12); }
}

.hc-hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0px;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

/* ===== Text Column ===== */
.hc-text-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 2;
  justify-content: center;
}

/* ===== Constant Headline + Rotating Subtitle ===== */
.hc-headline-wrap {
  position: relative;
  min-height: 100px;
}

.hc-headline-main {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--hc-text);
  margin: 0 0 12px 0;
  letter-spacing: -0.03em;
}

.hc-headline-main span {
  color: var(--hc-green);
  display: inline-block;
  font-weight: 700;
}

.hc-headline-sub {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-weight: 600;
  color: var(--hc-green-deep);
  margin: 0;
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity 0.5s var(--hc-ease), transform 0.5s var(--hc-ease);
  min-height: 1.5em;
  letter-spacing: -0.01em;
}

.hc-headline-sub.active {
  opacity: 1;
  transform: translateX(0);
}

.hc-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
  justify-content: flex-start;
}

.hc-cta-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  color: var(--hc-text-muted);
  margin-top: 12px;
  text-align: left;
  width: 100%;
  max-width: 480px;
}

.hc-final-cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.hc-final-cta-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  color: var(--hc-text-muted);
  margin-top: 12px;
  text-align: center;
  width: 100%;
}

.hc-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 38px;
  background: var(--hc-green);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 24px rgba(0, 155, 77, 0.30);
}

.hc-btn-primary i { display: none; }

.hc-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(0, 155, 77, 0.40);
}

/* Mobile reviews badge - removed from HTML, keep rule for safety */
.hc-mobile-reviews { display: none !important; }

/* ===== Device Column with Perspective ===== */
.hc-device-col {
  position: relative;
  height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  perspective: 1000px;
  perspective-origin: 50% 50%;
}

/* ===== Layered Light Trail ===== */
.hc-trail {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  pointer-events: none;
}

.hc-trail--back {
  width: 420px;
  height: 300px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center,
    rgba(255, 220, 180, 0.06) 0%,
    rgba(255, 200, 150, 0.04) 40%,
    transparent 75%);
  filter: blur(20px);
  animation: hc-trail-rotate 50s linear infinite;
}

.hc-trail--mid {
  width: 340px;
  height: 240px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center,
    rgba(255, 230, 200, 0.08) 0%,
    rgba(255, 210, 170, 0.05) 50%,
    transparent 80%);
  filter: blur(12px);
  animation: hc-trail-rotate 50s linear infinite reverse;
  animation-duration: 45s;
}

.hc-trail--front {
  width: 260px;
  height: 180px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center,
    rgba(255, 245, 230, 0.12) 0%,
    rgba(255, 235, 210, 0.06) 50%,
    transparent 80%);
  filter: blur(6px);
  animation: hc-trail-pulse 8s ease-in-out infinite;
}

@keyframes hc-trail-rotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes hc-trail-pulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.06); }
}

/* ===== Orbital Device Scene ===== */
.hc-devices {
  position: relative;
  width: 100%;
  height: 100%;
}

.hc-device {
  position: absolute;
  top: 50%;
  left: 50%;
  will-change: transform, opacity, filter;
  pointer-events: none;
  transition: filter 0.4s ease;
}

/* Front device: smooth warm drop shadow via transition */
.hc-device--front img {
  filter: drop-shadow(0 25px 60px rgba(255, 180, 100, 0.3)) drop-shadow(0 10px 30px rgba(0, 0, 0, 0.18)) !important;
  transition: filter 0.6s ease !important;
}

.hc-device img {
  transition: filter 0.6s ease;
}

/* Back device: desaturated ghost */
.hc-device--back .hc-device-float {
  filter: saturate(0.3) contrast(0.7) brightness(0.8);
}

.hc-device--back img {
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.08)) !important;
  transition: filter 0.6s ease !important;
}

.hc-device-float {
  will-change: transform;
}

.hc-device img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.15));
}

/* Subtle float animations - slower, more premium */
.hc-device--phone .hc-device-float {
  animation: hc-float-phone 8s ease-in-out infinite;
}
.hc-device--tablet .hc-device-float {
  animation: hc-float-tablet 10s ease-in-out infinite;
}
.hc-device--laptop .hc-device-float {
  animation: hc-float-laptop 9s ease-in-out infinite;
}

@keyframes hc-float-phone {
  0%, 100% { transform: translateY(0) rotate(-1.5deg); }
  50% { transform: translateY(-8px) rotate(2deg); }
}
@keyframes hc-float-tablet {
  0%, 100% { transform: translateY(0) rotate(1deg); }
  50% { transform: translateY(-6px) rotate(-2deg); }
}
@keyframes hc-float-laptop {
  0%, 100% { transform: translateY(0) rotate(-0.5deg); }
  50% { transform: translateY(-5px) rotate(1.5deg); }
}

/* ===== Hero Device Tags (bottom of hero) ===== */
.hc-hero-tags {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 1300px;
  margin: 16px auto 0;
  padding: 0 24px;
}

.hc-hero-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--hc-text);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  letter-spacing: -0.01em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hc-hero-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* ===== Trust Bar (desktop) - premium card ===== */
.hc-trust-bar {
  position: relative;
  max-width: 1150px;
  margin: -20px auto 0;
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 50%, #f5f5f5 100%);
  border-radius: 24px;
  box-shadow:
    0 50px 120px -20px rgba(0, 0, 0, 0.15),
    0 16px 40px -8px rgba(0, 0, 0, 0.10),
    0 6px 16px -2px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 36px 48px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 12px;
  z-index: 10;
  flex-wrap: nowrap;
  overflow: visible;
}

.hc-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-align: center;
  flex: 1;
  min-width: 0;
  cursor: pointer;
  padding: 6px 8px;
  border-radius: 12px;
  transition: background 0.3s ease, transform 0.3s ease;
  position: relative;
}

.hc-trust-item:hover {
  background: var(--hc-green-soft);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 155, 77, 0.08);
}

.hc-trust-item:not(:last-child) {
  border-right: 1px solid rgba(0, 155, 77, 0.07);
}

.hc-trust-value {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--hc-text);
  line-height: 1.2;
  white-space: nowrap;
}

.hc-trust-label {
  font-size: 0.75rem;
  color: var(--hc-text-muted);
  font-weight: 500;
  white-space: nowrap;
}

.hc-trust-item--reviews { flex: 1.6; }
.hc-trust-item--reviews .hc-trust-value { color: var(--hc-green); font-size: 1.7rem; }
.hc-trust-item--reviews .hc-trust-label { font-weight: 700; color: var(--hc-text); }

.hc-trust-rating {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--hc-green-deep);
}

.hc-trust-stars { display: flex; gap: 2px; margin-top: 2px; }
.hc-trust-stars i { font-size: 0.68rem; color: #fabb05; }

/* Trust popup - works on hover AND click */
.hc-trust-popup {
  position: absolute;
  bottom: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: linear-gradient(180deg, #ffffff 0%, var(--hc-ivory) 100%);
  border-radius: 16px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.12),
    0 6px 16px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  border: 1px solid rgba(0, 155, 77, 0.08);
  padding: 18px 22px;
  min-width: 240px;
  max-width: 300px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 30;
  text-align: left;
  pointer-events: none;
}

.hc-trust-item:hover .hc-trust-popup,
.hc-trust-item.is-active .hc-trust-popup {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.hc-trust-popup::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top-color: var(--hc-card-bg);
}

.hc-trust-popup-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--hc-text);
  margin-bottom: 4px;
}

.hc-trust-popup-text {
  font-size: 0.78rem;
  color: var(--hc-text-muted);
  line-height: 1.5;
}

/* ===== Mobile Trust Grid - 3D floating cards ===== */
.hc-mobile-trust-grid {
  display: none;
  padding: 20px 16px 30px;
  max-width: 600px;
  margin: 0 auto;
}

.hc-mobile-trust-grid .hc-trust-card {
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 50%, #f5f5f5 100%);
  border-radius: 16px;
  padding: 18px 12px;
  text-align: center;
  box-shadow:
    0 20px 50px -10px rgba(0, 0, 0, 0.10),
    0 6px 16px -4px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transform: perspective(800px) rotateX(2deg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hc-mobile-trust-grid .hc-trust-card:active {
  transform: perspective(800px) rotateX(0deg) translateY(2px);
  box-shadow:
    0 8px 20px -4px rgba(0, 0, 0, 0.08),
    0 2px 8px -2px rgba(0, 0, 0, 0.04);
}

.hc-mobile-trust-grid .hc-trust-card .hc-trust-value { font-size: 1.1rem; }
.hc-mobile-trust-grid .hc-trust-card .hc-trust-label { font-size: 0.68rem; }

/* ===== Tablet ===== */
@media (max-width: 1024px) {
  :root {
    --hc-orbit-x: 150px;
    --hc-orbit-y: 65px;
    --hc-device-phone: 150px;
    --hc-device-tablet: 170px;
    --hc-device-laptop: 220px;
  }

  .hc-hero-container { grid-template-columns: 1fr 1fr; gap: 0px; }
  .hc-device-col { height: 460px; overflow: visible; }
  .hc-trail--back { width: 340px; height: 240px; }
  .hc-trail--mid { width: 280px; height: 200px; }
  .hc-trail--front { width: 220px; height: 160px; }
  .hc-trust-bar { padding: 24px 28px; gap: 8px; margin-top: -30px; }
  .hc-trust-value { font-size: 1.1rem; }
  .hc-trust-item--reviews .hc-trust-value { font-size: 1.3rem; }
  .hc-trust-label { font-size: 0.68rem; }
  .hc-trust-popup { display: none; }
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
  :root {
    --hc-orbit-x: 130px;
    --hc-orbit-y: 55px;
    --hc-device-phone: 140px;
    --hc-device-tablet: 155px;
    --hc-device-laptop: 195px;
  }

  .hc-hero { padding: 0 0 10px; }

  html, body { overflow-x: hidden !important; }

  .hc-hero-container {
    grid-template-columns: 1fr;
    gap: 0;
    text-align: center;
  }

  .hc-text-col {
    align-items: center;
    gap: 14px;
    padding: 0 20px;
    width: 100%;
  }

  .hc-headline-wrap {
    min-height: 80px;
    width: 100%;
    text-align: center;
  }

  .hc-headline-main { text-align: center; font-size: clamp(2rem, 7vw, 2.8rem) !important; }
  .hc-headline-sub { text-align: center; font-size: clamp(1.3rem, 4.5vw, 1.7rem) !important; }

  .hc-text-col {
    display: contents;
  }

  .hc-headline-wrap {
    order: 1;
  }

  /* CTA below image on mobile */
  .hc-cta-row {
    order: 3;
    justify-content: center;
    margin-top: 10px;
    padding: 0 16px;
    width: 100%;
    box-sizing: border-box;
  }

  /* Device column between text and CTA - one device focus */
  .hc-device-col {
    order: 2;
    height: 360px;
    margin-top: 0;
    overflow: visible;
  }

  /* Smaller light trails on mobile */
  .hc-trail--back { width: 240px; height: 180px; }
  .hc-trail--mid { width: 200px; height: 150px; }
  .hc-trail--front { width: 160px; height: 120px; }

  /* Lighting layers smaller on mobile */
  .hc-light--green { width: 250px; height: 250px; }
  .hc-light--orange { width: 280px; height: 280px; }
  .hc-light--spotlight { width: 200px; height: 200px; }

  .hc-btn-primary {
    padding: 18px 24px;
    font-size: 1rem;
    border-radius: 14px;
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
  }

  .hc-btn-primary i { display: none !important; }

  /* CTA row matches trust grid width */
  .hc-cta-row {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Show device tags on mobile, smaller */
  .hc-hero-tags {
    gap: 6px;
    margin: 12px auto 0;
  }
  .hc-hero-tag {
    padding: 6px 14px;
    font-size: 0.8rem;
  }

  /* Hide desktop trust bar, show mobile grid */
  .hc-trust-bar { display: none; }
  .hc-mobile-trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
  }

  /* ===== Mobile Header Redesign (home-concept page only) ===== */
  .site-header {
    height: 80px !important;
    min-height: 80px !important;
    max-height: 80px !important;
    padding: 0 16px !important;
    margin: 8px 12px 0 !important;
    width: calc(100% - 24px) !important;
    border-radius: 22px !important;
    background: rgba(255, 255, 255, 0.82) !important;
    backdrop-filter: blur(16px) saturate(1.2) !important;
    -webkit-backdrop-filter: blur(16px) saturate(1.2) !important;
    box-shadow:
      0 12px 40px -8px rgba(0, 0, 0, 0.10),
      0 4px 12px -2px rgba(0, 0, 0, 0.05),
      inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                min-height 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                border-radius 0.3s ease, margin 0.3s ease,
                box-shadow 0.3s ease !important;
  }

  /* Compact header on scroll */
  .site-header.hc-header-compact {
    height: 56px !important;
    min-height: 56px !important;
    max-height: 56px !important;
    border-radius: 16px !important;
    margin: 4px 12px 0 !important;
    box-shadow:
      0 8px 24px -6px rgba(0, 0, 0, 0.08),
      0 2px 8px -2px rgba(0, 0, 0, 0.04) !important;
  }

  .site-header .container {
    height: 80px !important;
    min-height: 80px !important;
    padding: 0 4px !important;
    align-items: center !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  }

  .site-header.hc-header-compact .container {
    height: 56px !important;
    min-height: 56px !important;
  }

  .site-header .logo {
    padding: 0 !important;
    height: 80px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    order: 1 !important;
    flex: 1 !important;
    width: auto !important;
    transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  }

  .site-header.hc-header-compact .logo {
    height: 56px !important;
  }

  .site-header .logo img {
    height: 64px !important;
    width: auto !important;
    transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  }

  .site-header.hc-header-compact .logo img {
    height: 44px !important;
  }

  /* Main nav sits to the right, doesn't take full width */
  .site-header .main-nav {
    order: 2 !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    flex-shrink: 0 !important;
    width: auto !important;
  }

  /* Classic hamburger with refined styling */
  .site-header .menu-toggle {
    margin: 0 !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 12px !important;
    background: transparent !important;
    border: none !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    padding: 0 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    top: 0 !important;
    order: 2 !important;
  }

  .site-header .menu-toggle:active {
    transform: scale(0.92) !important;
  }

  /* Thinner hamburger lines with rounded caps */
  .site-header .menu-toggle .menu-toggle__bar {
    display: block !important;
    width: 22px !important;
    height: 2px !important;
    border-radius: 2px !important;
    background: #333 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    transform-origin: center !important;
  }

  /* Animate to X when active */
  .site-header .menu-toggle.active .menu-toggle__bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg) !important;
    width: 22px !important;
  }
  .site-header .menu-toggle.active .menu-toggle__bar:nth-child(2) {
    opacity: 0 !important;
    transform: scaleX(0) !important;
  }
  .site-header .menu-toggle.active .menu-toggle__bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg) !important;
    width: 22px !important;
  }

  /* Hide old menu icon image if present */
  .site-header .menu-toggle img.menu-icon { display: none !important; }

  .site-header .main-nav .menu {
    top: 88px !important;
    border-radius: 20px;
    margin: 0 12px !important;
    width: calc(100% - 24px) !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15) !important;
    border: 1px solid rgba(0, 0, 0, 0.04) !important;
  }

  body { 
    padding-top: 88px !important; 
    background: linear-gradient(135deg, var(--hc-ivory) 0%, #ffffff 55%, var(--hc-ivory) 100%) !important;
  }
}

/* ===== Mobile Floating Bottom Taskbar ===== */
.hc-mobile-taskbar {
  display: none;
}

@media (max-width: 768px) {
  .hc-mobile-taskbar {
    display: flex;
    position: fixed;
    bottom: 10px;
    left: 12px;
    right: 12px;
    height: 64px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(16px) saturate(1.2);
    -webkit-backdrop-filter: blur(16px) saturate(1.2);
    box-shadow:
      0 12px 40px -8px rgba(0, 0, 0, 0.12),
      0 4px 12px -2px rgba(0, 0, 0, 0.06),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 1000;
    justify-content: space-around;
    align-items: center;
    padding: 0 8px;
    transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                border-radius 0.3s ease, bottom 0.3s ease,
                box-shadow 0.3s ease;
  }

  /* Compact taskbar on scroll */
  .hc-mobile-taskbar.hc-taskbar-compact {
    height: 48px;
    border-radius: 16px;
    bottom: 6px;
    box-shadow:
      0 8px 24px -6px rgba(0, 0, 0, 0.08),
      0 2px 8px -2px rgba(0, 0, 0, 0.04);
  }

  .hc-taskbar-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex: 1;
    height: 100%;
    text-decoration: none;
    color: var(--hc-text-muted);
    font-size: 0.68rem;
    font-weight: 600;
    border-radius: 14px;
    transition: all 0.25s ease;
  }

  .hc-taskbar-btn i {
    font-size: 1.2rem;
    color: var(--hc-green);
    transition: transform 0.25s ease, font-size 0.3s ease;
  }

  .hc-taskbar-compact .hc-taskbar-btn {
    gap: 2px;
    font-size: 0.6rem;
  }

  .hc-taskbar-compact .hc-taskbar-btn i {
    font-size: 1rem;
  }

  .hc-taskbar-btn:active {
    background: rgba(0, 155, 77, 0.08);
    transform: scale(0.95);
  }

  .hc-taskbar-btn:active i {
    transform: scale(1.15);
  }

  /* Add bottom padding so content isn't hidden behind taskbar */
  #footer-placeholder { padding-bottom: 70px; }

  /* Hide old quick-actions bar (replaced by hc-mobile-taskbar) */
  .quick-actions { display: none !important; }

  /* Hide AI Steve trigger on mobile (floating button conflicts with taskbar) */
  .ai-steve-trigger { display: none !important; }

  /* Hide back-to-top on mobile (taskbar serves this purpose) */
  .back-to-top { display: none !important; }

  /* Simplify footer on mobile - only brand column, hide the rest */
  .site-footer .footer-columns {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    margin-bottom: 1.5rem !important;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Hide site map, repair services, and contact info columns on mobile */
  .site-footer .footer-column:nth-child(2),
  .site-footer .footer-column:nth-child(3),
  .site-footer .footer-column:nth-child(4) {
    display: none !important;
  }

  .site-footer {
    padding: 2rem 1rem 1.5rem !important;
    text-align: center;
  }

  .site-footer .footer-column h3 {
    font-size: 1.1rem !important;
    margin-bottom: 0.8rem !important;
    text-align: center;
  }

  .site-footer .footer-column p {
    font-size: 0.85rem !important;
    text-align: center;
  }

  .site-footer .social-links {
    justify-content: center !important;
  }

  .site-footer .footer-bottom p {
    font-size: 0.7rem !important;
  }

  /* Remove body padding-bottom from old quick-actions */
  body { padding-bottom: 0 !important; }
}

/* ===== Pay on Collection / Payday Section ===== */
.hc-payday-section {
  max-width: 1150px;
  margin: 40px auto 50px;
  padding: 0 24px;
  position: relative;
  z-index: 5;
}

.hc-payday-card {
  background: linear-gradient(135deg, var(--hc-ivory) 0%, #ffffff 40%, var(--hc-ivory) 100%);
  border-radius: 28px;
  padding: 48px 52px;
  box-shadow:
    0 40px 100px -20px rgba(0, 155, 77, 0.12),
    0 16px 40px -8px rgba(0, 0, 0, 0.06),
    0 6px 16px -2px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 155, 77, 0.08);
  position: relative;
  overflow: hidden;
}

.hc-payday-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(0, 155, 77, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hc-payday-card::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 150, 80, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hc-payday-header {
  text-align: center;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

.hc-payday-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--hc-text);
  margin: 0 0 10px 0;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.hc-payday-title span {
  color: var(--hc-green);
  display: inline-block;
}

.hc-payday-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 400;
  color: var(--hc-text-muted);
  margin: 0;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.hc-payday-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

.hc-payday-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 24px 16px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hc-payday-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 155, 77, 0.10);
}

.hc-payday-feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--hc-green) 0%, var(--hc-green-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(0, 155, 77, 0.25);
}

.hc-payday-feature-icon i {
  font-size: 1.3rem;
  color: #fff;
}

.hc-payday-feature-text h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--hc-text);
  margin: 0 0 6px 0;
  letter-spacing: -0.01em;
}

.hc-payday-feature-text p {
  font-size: 0.85rem;
  color: var(--hc-text-muted);
  line-height: 1.45;
  margin: 0;
}

.hc-payday-cta {
  text-align: center;
  position: relative;
  z-index: 1;
}

.hc-payday-cta .hc-btn-primary {
  padding: 18px 44px;
  font-size: 1.15rem;
}

.hc-payday-cta .hc-btn-primary i {
  display: inline-block;
}

.hc-payday-note {
  font-size: 0.85rem;
  color: var(--hc-text-muted);
  margin: 14px 0 0 0;
  font-style: italic;
}

/* ===== Payday Section - Tablet ===== */
@media (max-width: 1024px) {
  .hc-payday-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .hc-payday-card {
    padding: 36px 32px;
  }
}

/* ===== Payday Section - Mobile ===== */
@media (max-width: 768px) {
  .hc-payday-section {
    margin: 24px auto 30px;
    padding: 0 16px;
  }

  .hc-payday-card {
    padding: 28px 20px;
    border-radius: 22px;
  }

  .hc-payday-header {
    margin-bottom: 24px;
  }

  .hc-payday-features {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 28px;
  }

  .hc-payday-feature {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    padding: 18px 16px;
    gap: 14px;
  }

  .hc-payday-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .hc-payday-feature-icon i {
    font-size: 1.1rem;
  }

  .hc-payday-feature-text h3 {
    font-size: 0.95rem;
  }

  .hc-payday-feature-text p {
    font-size: 0.8rem;
  }

  .hc-payday-cta .hc-btn-primary {
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
    padding: 16px 24px;
    font-size: 1.05rem;
  }

  .hc-payday-cta .hc-btn-primary i {
    display: none;
  }

  .hc-payday-note {
    font-size: 0.8rem;
    padding: 0 8px;
  }
}

/* ===== Reduced Motion ===== */
@media (prefers-reduced-motion: reduce) {
  .hc-device-float, .hc-halo-glow { animation: none; }
  .hc-headline { transition: none; }
}


/* ===== Section Foundation ===== */
.hc-section {
  max-width: 1150px;
  margin: 0 auto;
  padding: 80px 24px;
}

.hc-container {
  max-width: 1100px;
  margin: 0 auto;
}

.hc-container-narrow {
  max-width: 760px;
  margin: 0 auto;
}

/* ===== Typography (matching hero) ===== */
.hc-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--hc-text);
  text-align: center;
  margin: 0 0 10px;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.hc-title span {
  color: var(--hc-green);
}

.hc-lead {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: var(--hc-green-deep);
  text-align: center;
  margin: 0 0 48px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* ===== Buttons (matching hero — 14px radius, layered shadows) ===== */
.hc-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: var(--hc-green);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s var(--hc-ease), box-shadow 0.3s var(--hc-ease);
  box-shadow: 0 6px 24px rgba(0, 155, 77, 0.30);
}

.hc-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(0, 155, 77, 0.40);
}

.hc-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 32px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 155, 77, 0.15);
  border-radius: 14px;
  color: var(--hc-green);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  transition: transform 0.3s var(--hc-ease), box-shadow 0.3s var(--hc-ease);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  margin-top: 36px;
}

.hc-btn-outline:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(0, 155, 77, 0.15);
  background: rgba(255, 255, 255, 0.9);
}

.hc-btn-outline-sm {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 155, 77, 0.15);
  border-radius: 12px;
  color: var(--hc-green);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: transform 0.3s var(--hc-ease), box-shadow 0.3s var(--hc-ease);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.hc-btn-outline-sm:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 155, 77, 0.12);
}

.hc-btn-green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--hc-green);
  border-radius: 14px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  transition: transform 0.3s var(--hc-ease), box-shadow 0.3s var(--hc-ease);
  box-shadow: 0 6px 24px rgba(0, 155, 77, 0.30);
}

.hc-btn-green:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(0, 155, 77, 0.40);
}

.hc-btn-sm {
  padding: 10px 22px;
  font-size: 0.85rem;
}

.hc-btn-yellow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: #F2C849;
  border-radius: 14px;
  color: #343A40;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  text-decoration: none;
  transition: transform 0.3s var(--hc-ease), box-shadow 0.3s var(--hc-ease);
  box-shadow: 0 6px 24px rgba(242, 200, 73, 0.30);
}

.hc-btn-yellow:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(242, 200, 73, 0.50);
}

.hc-btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 38px;
  background: #fff;
  border-radius: 14px;
  color: var(--hc-green);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  text-decoration: none;
  transition: transform 0.3s var(--hc-ease), box-shadow 0.3s var(--hc-ease);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}

.hc-btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
}

.hc-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 38px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  text-decoration: none;
  transition: transform 0.3s var(--hc-ease), box-shadow 0.3s var(--hc-ease);
}

.hc-btn-ghost:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
}

/* ===== What We Fix — card grid with repair details ===== */
.hc-services {
  text-align: center;
  background: linear-gradient(180deg, var(--hc-ivory) 0%, #ffffff 50%, var(--hc-ivory) 100%);
  max-width: 100%;
  padding-left: 24px;
  padding-right: 24px;
}

.hc-services .hc-container {
  max-width: 1100px;
}

.hc-fix-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}

.hc-fix-card {
  display: flex;
  flex-direction: column;
  padding: 28px 26px 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 50%, #f5f5f5 100%);
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow:
    0 10px 30px -8px rgba(0, 0, 0, 0.06),
    0 3px 10px -2px rgba(0, 0, 0, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s var(--hc-ease), box-shadow 0.3s var(--hc-ease);
}

.hc-fix-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 20px 50px -10px rgba(0, 0, 0, 0.10),
    0 6px 16px -4px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.hc-fix-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.hc-fix-card-head i {
  font-size: 1.5rem;
  color: var(--hc-green);
  flex-shrink: 0;
}

.hc-fix-card-head h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--hc-text);
  margin: 0;
  letter-spacing: -0.02em;
}

.hc-fix-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  flex: 1;
}

.hc-fix-card ul li {
  font-family: 'Poppins', sans-serif;
  font-size: 0.86rem;
  color: var(--hc-text-muted);
  padding: 5px 0 5px 18px;
  position: relative;
  line-height: 1.5;
}

.hc-fix-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--hc-green-soft);
  border: 1.5px solid var(--hc-green);
}

.hc-fix-brands {
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  color: var(--hc-text-muted);
  font-weight: 500;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  display: block;
}

.hc-fix-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 580px;
  margin: 32px auto 0;
  padding: 18px 24px;
  background: var(--hc-green-soft);
  border-radius: 14px;
  border: 1px solid rgba(0, 155, 77, 0.08);
}

.hc-fix-note i {
  font-size: 1.2rem;
  color: var(--hc-green);
  flex-shrink: 0;
}

.hc-fix-note p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  color: var(--hc-text);
  margin: 0;
  line-height: 1.5;
}

.hc-fix-note strong {
  color: var(--hc-green-deep);
}

/* ===== How It Works ===== */
.hc-how {
  background: linear-gradient(135deg, var(--hc-ivory) 0%, #ffffff 55%, var(--hc-ivory) 100%);
  max-width: 100%;
  padding-left: 24px;
  padding-right: 24px;
}

.hc-how .hc-container {
  max-width: 1100px;
}

.hc-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.hc-step {
  text-align: center;
  padding: 40px 28px 36px;
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 50%, #f5f5f5 100%);
  border-radius: 22px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow:
    0 20px 50px -10px rgba(0, 0, 0, 0.08),
    0 6px 16px -4px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  position: relative;
  transition: transform 0.3s var(--hc-ease), box-shadow 0.3s var(--hc-ease);
}

.hc-step:hover {
  transform: translateY(-4px);
  box-shadow:
    0 30px 70px -10px rgba(0, 0, 0, 0.12),
    0 10px 28px -4px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.hc-step-num {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--hc-green), var(--hc-green-deep));
  color: #fff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(0, 155, 77, 0.30);
}

.hc-step h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--hc-text);
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

.hc-step p {
  font-size: 0.92rem;
  color: var(--hc-text-muted);
  line-height: 1.65;
  margin: 0;
}

.hc-step a {
  color: var(--hc-green);
  font-weight: 600;
  text-decoration: none;
}

.hc-step a:hover {
  text-decoration: underline;
}

/* ===== Send-In Service — split panel ===== */
.hc-sendin {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 30px 70px -10px rgba(0, 0, 0, 0.15),
    0 10px 28px -4px rgba(0, 0, 0, 0.08);
  margin-bottom: 80px;
  margin-top: 20px;
}

.hc-sendin-panel--yellow {
  background: linear-gradient(160deg, #F2C849 0%, #E8B830 100%);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.hc-sendin-icon {
  font-size: 2.2rem;
  color: #343A40;
  margin-bottom: 20px;
}

.hc-sendin-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  color: #343A40;
  margin: 0 0 10px;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.hc-sendin-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 0.98rem;
  color: rgba(52, 58, 64, 0.75);
  margin: 0 0 28px;
  font-weight: 500;
  line-height: 1.5;
}

.hc-btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: #343A40;
  border-radius: 14px;
  color: #F2C849;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.3s var(--hc-ease), box-shadow 0.3s var(--hc-ease);
  box-shadow: 0 6px 24px rgba(52, 58, 64, 0.30);
}

.hc-btn-dark:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(52, 58, 64, 0.40);
}

.hc-sendin-panel--dark {
  background: linear-gradient(160deg, #343A40 0%, #2D3338 100%);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.hc-sendin-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.hc-sendin-point i {
  font-size: 1.3rem;
  color: #F2C849;
  width: 32px;
  text-align: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.hc-sendin-point strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.hc-sendin-point span {
  font-family: 'Poppins', sans-serif;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}

/* ===== Testimonials ===== */
.hc-reviews {
  text-align: center;
  background: linear-gradient(180deg, var(--hc-ivory) 0%, #ffffff 50%, var(--hc-ivory) 100%);
  max-width: 100%;
  padding-left: 24px;
  padding-right: 24px;
}

.hc-reviews .hc-container {
  max-width: 1100px;
}

.hc-reviews-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
}

.hc-stars {
  font-size: 1.4rem;
  color: #FFCC00;
  letter-spacing: 3px;
}

.hc-rating-text {
  font-family: 'Poppins', sans-serif;
  font-size: 0.98rem;
  color: var(--hc-text-muted);
  font-weight: 500;
}

.hc-review-carousel {
  max-width: 700px;
  margin: 0 auto;
  min-height: 200px;
  position: relative;
}

.hc-review {
  display: none;
  padding: 44px 48px 40px;
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 50%, #f5f5f5 100%);
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow:
    0 30px 70px -10px rgba(0, 0, 0, 0.10),
    0 10px 28px -4px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  position: relative;
}

.hc-review::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 28px;
  font-size: 4.5rem;
  color: rgba(0, 155, 77, 0.10);
  font-family: Georgia, serif;
  line-height: 1;
  z-index: 0;
}

.hc-review--active {
  display: block;
}

.hc-review-quote {
  font-family: 'Poppins', sans-serif;
  font-size: 1.08rem;
  font-style: italic;
  color: var(--hc-text);
  line-height: 1.75;
  margin: 0 0 20px;
  position: relative;
  z-index: 1;
}

.hc-review-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--hc-green);
  font-size: 0.98rem;
  margin: 0;
  position: relative;
  z-index: 1;
}

.hc-review-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.hc-review-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.12);
  cursor: pointer;
  padding: 0;
  transition: all 0.3s var(--hc-ease);
}

.hc-review-dot--active {
  background: var(--hc-green);
  transform: scale(1.25);
  box-shadow: 0 4px 12px rgba(0, 155, 77, 0.30);
}

/* ===== How to Find Us (address + map) ===== */
.hc-findus {
  background: linear-gradient(135deg, var(--hc-ivory) 0%, #ffffff 55%, var(--hc-ivory) 100%);
  max-width: 100%;
  padding-left: 24px;
  padding-right: 24px;
}

.hc-findus .hc-container {
  max-width: 1100px;
}

.hc-findus-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 32px;
  align-items: stretch;
}

.hc-findus-card--address {
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 50%, #f5f5f5 100%);
  border-radius: 22px;
  padding: 40px 36px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow:
    0 20px 50px -10px rgba(0, 0, 0, 0.08),
    0 6px 16px -4px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  transition: transform 0.3s var(--hc-ease), box-shadow 0.3s var(--hc-ease);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hc-findus-card--address:hover {
  transform: translateY(-3px);
  box-shadow:
    0 30px 70px -10px rgba(0, 0, 0, 0.12),
    0 10px 28px -4px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.hc-findus-card-icon {
  width: 52px;
  height: 52px;
  background: var(--hc-green-soft);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.hc-findus-card-icon i {
  font-size: 1.3rem;
  color: var(--hc-green);
}

.hc-findus-card--address h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--hc-text);
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

.hc-findus-card--address p {
  font-size: 0.95rem;
  color: var(--hc-text-muted);
  line-height: 1.65;
  margin: 0 0 6px;
}

.hc-findus-note {
  font-size: 0.84rem !important;
  color: var(--hc-text-muted);
  font-style: italic;
  margin-bottom: 20px !important;
}

.hc-findus-map {
  border-radius: 22px;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow:
    0 20px 50px -10px rgba(0, 0, 0, 0.10),
    0 6px 16px -4px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.hc-findus-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
  display: block;
}

/* ===== Opening Hours Section (standalone) ===== */
.hc-hours-section {
  text-align: center;
  background: linear-gradient(180deg, var(--hc-ivory) 0%, #ffffff 50%, var(--hc-ivory) 100%);
  max-width: 100%;
  padding-left: 24px;
  padding-right: 24px;
}

.hc-hours-card {
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 50%, #f5f5f5 100%);
  border-radius: 22px;
  padding: 36px 40px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow:
    0 20px 50px -10px rgba(0, 0, 0, 0.08),
    0 6px 16px -4px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  text-align: left;
  max-width: 480px;
  margin: 0 auto;
}

.hc-hours {
  margin-top: 0;
}

.hc-hours-loading {
  font-size: 0.9rem;
  color: var(--hc-text-muted);
  padding: 8px 0;
}

.hc-hours-card .hc-hours .current-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 12px;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 0.88rem;
  font-family: 'Poppins', sans-serif;
}

.hc-hours-card .hc-hours .current-status.open {
  background: #dcfce7;
  color: #166534;
}

.hc-hours-card .hc-hours .current-status.closed {
  background: #fee2e2;
  color: #991b1b;
}

.hc-hours-card .hc-hours .hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hc-hours-card .hc-hours .hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 0.9rem;
  color: var(--hc-text);
  font-family: 'Poppins', sans-serif;
}

.hc-hours-card .hc-hours .hours-list li:last-child {
  border-bottom: none;
}

.hc-hours-card .hc-hours .hours-list li span:first-child {
  font-weight: 600;
  color: var(--hc-text);
}

.hc-hours-card .hc-hours .hours-list li span:last-child {
  color: var(--hc-text-muted);
}

.hc-hours-card .hc-hours .today-highlight {
  background: #f0fdf4;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 700;
  border-bottom: 1px solid transparent;
}

.hc-hours-card .hc-hours .today-highlight span:last-child {
  color: var(--hc-green);
  font-weight: 700;
}

.hc-hours-card .hc-hours .special-hours-notice {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #92400e;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.85rem;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 16px;
}

/* ===== Section Divider ===== */
.hc-section-divider {
  max-width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.08) 50%, transparent 100%);
  margin: 0;
}

/* ===== FAQ ===== */
.hc-faq {
  background: linear-gradient(180deg, var(--hc-ivory) 0%, #ffffff 50%, var(--hc-ivory) 100%);
  max-width: 100%;
  padding-left: 24px;
  padding-right: 24px;
}

.hc-faq .hc-container-narrow {
  max-width: 760px;
}

.hc-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hc-faq-item {
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 50%, #f5f5f5 100%);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow:
    0 10px 30px -8px rgba(0, 0, 0, 0.06),
    0 3px 10px -2px rgba(0, 0, 0, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  transition: box-shadow 0.3s var(--hc-ease), transform 0.3s var(--hc-ease);
}

.hc-faq-item:hover {
  transform: translateY(-2px);
  box-shadow:
    0 20px 50px -10px rgba(0, 0, 0, 0.10),
    0 6px 16px -4px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.hc-faq-item--open {
  box-shadow:
    0 24px 60px -10px rgba(0, 0, 0, 0.12),
    0 8px 20px -4px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.hc-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px 28px;
  border: none;
  background: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--hc-text);
  text-align: left;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}

.hc-faq-q:hover {
  color: var(--hc-green);
}

.hc-faq-q i {
  font-size: 0.85rem;
  color: var(--hc-green);
  transition: transform 0.35s var(--hc-ease);
  flex-shrink: 0;
  margin-left: 16px;
}

.hc-faq-item--open .hc-faq-q i {
  transform: rotate(180deg);
}

.hc-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--hc-ease);
}

.hc-faq-a p {
  padding: 0 28px;
  font-size: 0.92rem;
  color: var(--hc-text-muted);
  line-height: 1.75;
  margin: 0 0 12px;
}

.hc-faq-a p:first-child {
  padding-top: 4px;
}

.hc-faq-a p:last-child {
  padding-bottom: 24px;
  margin-bottom: 0;
}

.hc-faq-a ul {
  padding: 0 28px 14px 48px;
  margin: 0;
  font-size: 0.92rem;
  color: var(--hc-text-muted);
  line-height: 1.9;
}

.hc-faq-a ul li {
  margin-bottom: 4px;
}

/* ===== Final CTA ===== */
.hc-cta {
  background: linear-gradient(135deg, var(--hc-green) 0%, var(--hc-green-deep) 55%, #006030 100%);
  padding: 88px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hc-cta::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hc-cta::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(242, 200, 73, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hc-cta .hc-container {
  max-width: 640px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  position: relative;
  z-index: 1;
  text-align: center;
}

.hc-cta h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 14px;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.hc-cta > .hc-container > p {
  font-family: 'Poppins', sans-serif;
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 40px;
  line-height: 1.6;
  font-weight: 300;
}

.hc-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hc-cta-sub {
  display: block;
  width: 100%;
  font-size: 0.9rem !important;
  color: rgba(255, 255, 255, 0.7) !important;
  margin: 0 auto !important;
  padding: 0 !important;
  font-weight: 300 !important;
  text-align: center !important;
}

.hc-cta-sub a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.5);
}

.hc-cta-sub a:hover {
  text-decoration-color: #fff;
}

/* ===== Responsive: Tablet ===== */
@media (max-width: 1024px) {
  .hc-fix-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .hc-steps {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 480px;
    margin: 0 auto;
  }

  .hc-findus-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hc-findus-map {
    min-height: 360px;
  }

  .hc-findus-map iframe {
    min-height: 360px;
  }
}

/* ===== Responsive: Mobile ===== */
@media (max-width: 768px) {
  .hc-section {
    padding: 52px 16px;
  }

  .hc-lead {
    margin-bottom: 32px;
  }

  .hc-fix-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hc-fix-card {
    padding: 22px 20px 18px;
  }

  .hc-fix-note {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    padding: 16px 20px;
  }

  .hc-steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hc-step {
    padding: 28px 22px 24px;
  }

  .hc-sendin {
    grid-template-columns: 1fr;
    margin-bottom: 60px;
    border-radius: 20px;
  }

  .hc-sendin-panel--yellow {
    padding: 40px 32px 36px;
  }

  .hc-sendin-panel--dark {
    padding: 40px 32px 44px;
  }

  .hc-review {
    padding: 28px 24px;
  }

  .hc-review::before {
    font-size: 3rem;
    top: 10px;
    left: 14px;
  }

  .hc-findus-card--address {
    padding: 28px 24px 24px;
  }

  .hc-findus-map {
    min-height: 300px;
  }

  .hc-findus-map iframe {
    min-height: 300px;
  }

  .hc-hours-card {
    padding: 28px 24px;
  }

  .hc-cta {
    padding: 60px 16px;
  }

  .hc-cta-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .hc-btn-white,
  .hc-btn-ghost {
    width: 100%;
    justify-content: center;
  }
}
